5
$fileEntries = [IO.Directory]::GetFiles("C:\Users\U0146121\Desktop\Example Data"); #where the file is located.
foreach($fileName in $fileEntries) 
{ 
 #write the file name to a text file.  
}  

我需要将文件名写入循环中的文本文件,但我不知道如何。

最终我会阅读文本文件并在 excel 中搜索文件名。但现在我必须先编写 .txt 文件。

4

1 回答 1

15

我对此进行了测试,它对我有用:

Get-childitem -path "C:\" -recurse -name | out-file C:\Output.txt
于 2013-07-15T21:14:58.273 回答