PowerShell 技能连载 - 高效统计文件数量(第二部分)

在前一个技能中我们学习了如何有效地统计一个文件夹中项目的数量。以下是更多的例子。

用 PowerShell 统计指定文件夹中文件的数量易如反掌:

1
2
3
4
5
$count = Get-ChildItem -Path "$home\Desktop" -Force |
Measure-Object |
Select-Object -ExpandProperty Count

"Number of files: $Count"

只需要调整 Get-ChildItem 的参数就可以找到更多。例如添加 -Recurse 开关,就可以包括子文件夹中的文件:

1
2
3
4
5
$count = Get-ChildItem -Path "$home\Desktop" -Force -Recurse -ErrorAction SilentlyContinue  |
Measure-Object |
Select-Object -ExpandProperty Count

"Number of files: $Count"

或者,只关注某些文件。这个例子只统计两层目录深度以内的 log 和 txt 文件:

1
2
3
4
5
$count = Get-ChildItem -Path $env:windir -Force -Recurse -Include *.log, *.txt -ErrorAction SilentlyContinue -Depth 2 |
Measure-Object |
Select-Object -ExpandProperty Count

"Number of files: $Count"

(请注意:-Depth 参数是 PowerShell 5 引入的)

PowerShell 技能连载 - 高效统计文件数量(第二部分)

http://blog.vichamp.com/2017/09/25/counting-files-efficiently-part-2/

作者

吴波

发布于

2017-09-25

更新于

2022-07-06

许可协议

评论