我正在尝试在计算机上的所有卷中搜索文件
我没有成功通过此链接找到答案:
通过变量获取具有多个路径的子项
我试过:
$Location = 'c:\*', 'd:\*', 'e:\*'
如何在我的计算机的所有卷上搜索文件?
答案1
这有效:
$location = "c:\*", "d:\*", "e:\*" `
| % {$_;Get-ChildItem -Recurse $_ -ErrorAction SilentlyContinue -Include *.txt | ...Commands according to your logic` |
Out-File "C:\YourOutput\Path\File\List.txt" -Append }