PowerShell 技能连载 - 查找所有二级深度的文件
这是另一个文件系统的任务:列出一个文件夹结构中所有 *.log 文件,但最多只包含 2 级文件夹深度:
1 | Get-ChildItem -Path c:\windows -Filter *.log -Recurse -Depth 2 -File -Force -ErrorAction SilentlyContinue | |
幸运的是,PowerShell 5 对 Get-ChildItem
命令增加了好用的 -Depth
选项。
PowerShell 技能连载 - 查找所有二级深度的文件
http://blog.vichamp.com/2018/11/19/find-all-files-two-levels-deep/