-
I am having issues each way I try to do something so hoping someone could recommend the best way to approach this fairly simple task I am processing a file list that i retrieved using
For some items I need to set the modified datetime as I loop through the results I cant seem to find a way to do this using the I have seen solutions using But there are 100k list items and apart finding my one file being inefficient, I cannot find the property names corresponding to the folders etc to find the file When I use Hoping someone can point me in the right direction |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I found what I was looking for. As mentioned in the question I was processing a $fileList obtained using The solutions for changing the file modified date all used a list item. I was already using Anyway this worked for me
|
Beta Was this translation helpful? Give feedback.
I found what I was looking for.
As mentioned in the question I was processing a $fileList obtained using
Get-PnPFolderItem
The solutions for changing the file modified date all used a list item.
I was already using
Get-PnPFile
but hadn't noticed the-AsListItem
optionAnyway this worked for me