I need to recursively update properties of folders in SharePoint online document library based on some condition using pnp PowerShell cmdlets. I could see the cmdlets to update column properties of lists, but not for document library.
using the below command I fetched all the folders in the library. How I can update some custom properties?
$folders = Get-PnPFolderItem -FolderSiteRelativeUrl $ParentFolder -ItemType Folder -Recursive
Appreciate your help.