Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 GCI 命令将文件夹栏中的所有文件称为名称中带有“december”的文件。
我也不想从名为“months”的子文件夹中调用文件。
尝试这个:
Get-ChildItem c:\somefolder -exclude months,*december*
该Exclude参数接受要排除的术语数组。这些术语可以包含通配符。
Exclude