PowerShell复制目录以及目录下文件
作者:互联网
列出目录中所有文件并导入文件
ls | Format-Table name > C:\1234.txt
循环创建目录并拷贝目录下指定文件
`foreach ($FileName in get-content c:\1234.txt)
{
New-Item -Path C:\Test\ -Name $FileName -Type Directory -force
copy-item "c:\Jobs_test$FileName\welcome.png" -destination c:\Test$FileName\
}`
标签:1234,文件,txt,FileName,复制,Test,PowerShell,目录 来源: https://www.cnblogs.com/gavin11/p/15903098.html