使用 Powershell 命令进行文件计数
如何使用 Powershell 命令 Get-ChildItem 统计特定文件夹(以及所有子文件夹)中的所有文件? 使用 (Get-ChildItem
也会对文件夹进行计数,但这不是我想要的。是否有其他方法可以快速计算非常大的文件夹中的文件数量?
有人知道关于 Windows Powerhell 的简短而好的教程吗?
How can I count all files in a specific folder (and all subfolders) with the Powershell command Get-ChildItem?
With (Get-ChildItem <Folder> -recurse).Count
also the folders are counted and this is not that what I want. Are there other possibilities for counting files in very big folders quickly?
Does anybody know a short and good tutorial regarding the Windows Powerhell?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将结果通过管道传输到 Measure-Object cmdlet。如果没有符合您条件的对象,则使用 (...).Count 不会产生任何结果。
在 PowerShell v3 中,我们可以执行以下操作来仅获取文件:
I would pipe the result to the
Measure-Object
cmdlet. Using (...).Count can yield nothing in case there are no objects that match your criteria.In PowerShell v3 we can do the following to get files only:
在计数之前过滤文件:
Filter for files before counting: