是否可以将特定文件夹及其子文件夹中递归包含的所有文件直接复制到一个平面目录,而不再考虑源层次结构文件夹?
答案 0 :(得分:1)
当然这是可能的。为什么不呢?
Counter = 0
Get-ChildItem -Path <Path> -Filter * -Recurse -File |
Copy-Item -Destination <Destination Path> -PassThru |
Foreach-Object{
$counter++
Rename-Item -Path $_.FullName -NewName ($_.BaseName + '_' + ("{0:000}" -f $Counter) + $_.Extension)
}