zhanglei1371 当前离线
六级士官
yhcfsr 当前离线
中尉
TOP
zaqmlp 当前离线
上尉
New-Item -Path "C:\2018 备份\$aa([$i])" -ItemType directory复制代码
gc 'D:\新 123\zj.txt'|?{$_.trim() -ne ''}|%{md ('C:\2018 备份\'+($_.trim() -replace '[\t\?\*\\:\/\|<>"]','_')) -f}复制代码
$aa = Get-Content D:\新 123\zj.txt $len = $aa.length for ($i = 0; $i -lt $len; $i++) { New-Item -Path "C:\2018 备份\$aa[$i]" -ItemType directory } Pause复制代码
get-childitem -path "目录名"复制代码
get-content -path "文件路径"复制代码
New-Item -ItemType Directory -Path "目录路径"复制代码