gpt4 book ai didi

powershell - 将文件名从循环写入文本文件

转载 作者:行者123 更新时间:2023-12-04 22:05:33 25 4
gpt4 key购买 nike

$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 文件。

最佳答案

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

Get-childitem -path "C:\" -recurse -name | out-file C:\Output.txt

关于powershell - 将文件名从循环写入文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17663553/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com