PowerShell 技能连载 - 查找所有二级深度的文件

这是另一个文件系统的任务:列出一个文件夹结构中所有 *.log 文件,但最多只包含 2 级文件夹深度:

1
2
Get-ChildItem -Path c:\windows -Filter *.log -Recurse -Depth 2 -File -Force -ErrorAction SilentlyContinue |
Select-Object -ExpandProperty FullName

幸运的是,PowerShell 5 对 Get-ChildItem 命令增加了好用的 -Depth 选项。

PowerShell 技能连载 - 查找所有二级深度的文件

http://blog.vichamp.com/2018/11/19/find-all-files-two-levels-deep/

作者

吴波

发布于

2018-11-19

更新于

2022-07-06

许可协议

评论