将文件从层次结构递归复制到单个平面文件夹

时间:2018-04-16 08:06:42

标签: powershell copy

是否可以将特定文件夹及其子文件夹中递归包含的所有文件直接复制到一个平面目录,而不再考虑源层次结构文件夹?

1 个答案:

答案 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)
        }