我正在尝试制作一个PowerShell脚本,它将计算目录中的所有.xml文件。子目录并列出值+路径。
到目前为止,我已经做到了这一点:
Get-ChildItem -Path c:/test -recurse -include *.xml
哪个接近我想要的但没有实际的文件名,只有文件夹路径和计数。
这就是我得到的:
> Directory: C:\test\A_Sub-folder
> Mode LastWriteTime Length Name
> ---- ------------- ------ ----
> -a--- 27/11/2015 11:29 0 AA.xml
>
> Directory: C:\test
> Mode LastWriteTime Length Name
> ---- ------------- ------ ----
> -a--- 27/11/2015 11:29 0 BB.xml
> -a--- 27/11/2015 11:29 0 CC.xml
> -a--- 27/11/2015 11:29 0 DD.xml
我试图得到这个(或类似的):
> Directory: C:\test\A_Sub-folder
> 1
> Directory: C:\test
> 3
计划是在每个根驱动器上运行此脚本(某些驱动器有大约5k .xml文件,因此我不确定这将如何影响性能。)
编辑:
这适用于子文件夹但由于某种原因它不能在根驱动器目录下工作(例如e:/)。 我试图排除\ windows和\ program文件,但它不起作用。有没有办法在搜索中排除根目录?
到目前为止脚本:
$excludedPaths = @("E:\Windows", "E\Program Files", "E:\Program Files (x86)", "E:\MSSQL", "E:\MSSQL11.MSSQLSERVER");
$pathtocount = Read-Host -Prompt 'Input path to count xml files'
Get-ChildItem -Path $pathtocount -recurse -include *.xml | Where-Object { $excludedPaths -notcontains $_.Directory } | Group-Object -Property Directory | Sort-Object count
答案 0 :(得分:8)
Get-ChildItem -Path c:/test -recurse -filter *.xml | Group-Object -Property Directory
为了获得更好的表格,您可以将-NoElement
添加到Group-Object
。
要排除某些目录,请尝试:
$excludedPaths = @("Windows", "Program Files", "Program Files (x86)");
$searchPaths = Get-ChildItem -Path C:\ -Directory | Where-Object { $excludedPaths -notcontains $_.name }
Get-ChildItem -Path $searchPaths -recurse -filter *.xml | Group-Object -Property Directory
<强>更新强>
根据{{3}},当您仅过滤一种模式时,-filter
比-include
更有效。 (如果您过滤了更多模式,-filter
无效,您必须使用-include
)
排除整个子树:
-exclude
不起作用,因为它应用于每个文件,它不会修剪整个树,似乎过滤器只匹配文件名,而不是目录< / LI>
Where-Object
无效,因为$_.Directory
没有返回任何内容(不确定原因,我还没有找到任何文档)$_.FullName
似乎按照您的意图执行),这只会删除目录本身,而不是从目录开始的路径。你需要对filter-set中的每个字符串进行字符串前缀匹配(使用-imatch或-ilike)