gpt4 book ai didi

powershell-2.0 - Powershell : Count items in a folder with PowerShell

转载 作者:行者123 更新时间:2023-12-03 05:11:49 25 4
gpt4 key购买 nike

我正在尝试编写一个非常简单的 PowerShell 脚本来提供给定文件夹 (c:\MyFolder) 中的项目总数(文件和文件夹)。这是我所做的:

Write-Host ( Get-ChildItem c:\MyFolder ).Count;

问题是,如果我有 1 或 0 个项目,该命令将不起作用 — 它不会返回任何内容。

有什么想法吗?

最佳答案

您应该使用Measure-Object来计数。在这种情况下,它看起来像:

Write-Host ( Get-ChildItem c:\MyFolder | Measure-Object ).Count;

或者如果太长

Write-Host ( dir c:\MyFolder | measure).Count;

在 PowerShell 4.0 中使用 measure 别名而不是 mo

Write-Host (dir c:\MyFolder | measure).Count;

关于powershell-2.0 - Powershell : Count items in a folder with PowerShell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14714284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com