如何在Powershell中使用字符串连接为每个文件名添加文本到.txt文件?

时间:2017-10-27 10:03:45

标签: powershell

我需要在使用shift +右键单击打开的上下文目录中填写文本,如下面的代码所示。我怎么能这样做?

$dir=Get-Location; gci $dir | ForEach-Object {$temp=$_.Name; ";"+$temp > test.txt}

由于

1 个答案:

答案 0 :(得分:-1)

使用连接运算符

(Get-ChildItem (Get-location)).BaseName -join ';' | Out-File D:\Test\Names.txt