标题: [问题求助] PowerShell怎样获取某文件夹下除.txt文件之外的文件? [打印本页]
作者: 小白龙 时间: 2023-12-9 15:32 标题: PowerShell怎样获取某文件夹下除.txt文件之外的文件?
我想获取$home\Desktop\Images3文件夹下, 除.txt文件以外的文件, 用下面的代码不生效, 求路过大佬指教, 谢谢- Get-ChildItem -Path "$home\Desktop\Images3" -File -Exclude *.txt
复制代码
作者: wanghan519 时间: 2023-12-9 16:44
据说是path里必须包含*,但不知道为什么,等待大佬解释
作者: ShowCode 时间: 2023-12-9 16:52
- Get-ChildItem -Path "$home\Desktop\Images3\*" -File -Exclude *.txt
复制代码
作者: ShowCode 时间: 2023-12-9 17:16
-Exclude参数的功能跟正常人类的理解总是不一样,微软官网的描述也是一坨浆糊。
https://learn.microsoft.com/zh-cn/powershell/module/microsoft.powershell.management/get-childitem?view=powershell-7.3
记住结论就行了:
- 不使用-Recurse的情况下-Path结尾需要有\*
- 使用-Recurse的情况下-Path结尾的\*可有可无
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |