【调试记录】:windows查看一个文件夹下(多个子文件夹)每个子文件夹中文件的数量分别是多少

查看文件夹小所有文件的数量,包括子文件中的文件的数量

bash 复制代码
Get-ChildItem -Path "C:\path\to\your\directory" -Recurse | Measure-Object

查看一个文件夹下多个子文件每个子文件夹中文件的数量分别是多少

bash 复制代码
$targetFolder = "C:\path\to\your\directory" # 替换为你的目标文件夹路径

$subFolders = Get-ChildItem -Path $targetFolder -Directory -Recurse

foreach ($folder in $subFolders) {
    $folderPath = $folder.FullName
    $fileCount = (Get-ChildItem -Path $folderPath -File -Recurse | Measure-Object).Count
    Write-Host "Number of files in $folderPath: $fileCount"
}
相关推荐
染指11108 小时前
6.第二阶段x64游戏实战-分析人物状态
开发语言·汇编·windows·游戏·游戏逆向·x64dbg·x64游戏
tjsoft10 小时前
实操日志之Windows Server2008R2 IIS7 配置Php7.4.3
windows·iis·php·2008·7.4.3
信必诺11 小时前
CMake —— 2、cmake在windows与linux下动态链接库编译与链接实例(附:过程代码与CMakeLists.txt)
windows·ubuntu·cmake·动态链接库·linux\
神经毒素13 小时前
WEB安全--提权思路
linux·windows·安全·web安全
苏格拉没有底_coder14 小时前
【Easylive】详细解析 `stream()` 方法的使用
linux·服务器·windows
黛色正浓14 小时前
【Anaconda】Anaconda创建虚拟环境并管理
windows·python·conda
孪生质数-15 小时前
2-Visual Studio 2022 NET开发Windows桌面软件并连接SQL Server数据库
数据库·windows·sqlserver·visual studio
越甲八千17 小时前
pyqt SQL Server 数据库查询-优化2
数据库·windows·pyqt
virelin_Y.lin17 小时前
系统与网络安全------Windows系统安全(6)
windows·安全·系统安全·共享文件夹
ENE19 小时前
WIN11 24H2关闭基于虚拟化安全
windows