今天我开始在 Windows PowerShell 中编写脚本 - 所以请原谅我的“愚蠢”...
我想用驱动器 G: 上每个“根文件夹”的子文件夹的名称创建 txt-Files。在 G:\ 我有以下文件夹:
1_data
2_IT_area
3_personal
4_apprenticeship
7_backup
8_archives
9_user_profile
所以我写了这个脚本:
get-childitem G:\ | ForEach-Object -process {gci $_.fullName -R} | WHERE {$_.PSIsContainer} > T:\listing\fileListing+$_.Name+.txt
但是脚本没有做我想要的 - 它只创建一个文本文件..你能帮我吗?我已经按照这里的描述尝试过 >> http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/ "T:\listing\$_.Name.txt" - 不能作为好...
非常感谢您的帮助!
-帕特里克