标签: powershell
我需要在使用shift +右键单击打开的上下文目录中填写文本,如下面的代码所示。我怎么能这样做?
$dir=Get-Location; gci $dir | ForEach-Object {$temp=$_.Name; ";"+$temp > test.txt}
由于
答案 0 :(得分:-1)
使用连接运算符
(Get-ChildItem (Get-location)).BaseName -join ';' | Out-File D:\Test\Names.txt