我正在尝试使用C#从SharePoint网站获取文件名和文件大小列表。有人有代码吗?
或者有没有最好的方法来实现这一点。
我的要求是:
答案 0 :(得分:-1)
你可以使用PnP Powershell Cmdlet来完成它。
$folderUrl = "/_catalogs/masterpage/Display Templates/Search/Custom"
$ctx = Get-PnPContext
$folder = Get-PnPFolder -Url $folderUrl
$ctx.Load($folder.Files)
$ctx.ExecuteQuery()
https://veenstra.me.uk/2017/03/20/office-365-officedev-pnp-powershell-get-all-files-in-a-folder/
您应该能够使用| export-csv <location>
将其管道传输到CSV文件。