powershell 获取SharePoint库中所有文件夹的列表,包括子文件夹

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 获取SharePoint库中所有文件夹的列表,包括子文件夹相关的知识,希望对你有一定的参考价值。

if(-not(Get-PSSnapin | where { $_.Name -eq "Microsoft.SharePoint.PowerShell"}))
{
      Add-PSSnapin Microsoft.SharePoint.PowerShell;
}

$site = Get-SPweb "http://portal.opwftg.com/sites/OPWSS/Teams/OCM"

$mList=$site.Lists["PublicFolderExport"]

foreach($f in $mlist.Folders)
 {
 Write-Host $f.Name
 $f.Folder.ItemCount
 }

$site.dispose()

以上是关于powershell 获取SharePoint库中所有文件夹的列表,包括子文件夹的主要内容,如果未能解决你的问题,请参考以下文章

Powershell从SharePoint文档库中删除文件

powershell 删除列表或库中的所有SharePoint列表项

powershell Powershell函数用于在库中的SharePoint中创建文件夹和子文件夹

powershell 这将使用PowerShell从库中删除SharePoint中特定文件夹和子文件夹中的文件

使用PowerShell为库中的SharePoint文件夹授予Active-Directory-Synced组权限

powershell 此SharePoint PowerShell为SharePoint中的每个内容数据库获取内容数据库大小(以GB为单位)。