标签: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\
}
标签:powershell
原文地址:http://hqwangping.blog.51cto.com/1359421/1751091