如何重命名一批文件并将其移动到新目录

时间:2016-07-27 18:10:21

标签: powershell

这是我到目前为止重命名/移动文件(单独使用)

Get-ChildItem | Rename-Item -NewName {$_.Name -replace '8369','Name'}

Move-Item -Force -Destination 'M:\Destination Test Folder\'

如何组合这两项任务或使用Move-item任务移动和重命名文件?

我是Powershell的新手,所以我感谢任何帮助或见解

1 个答案:

答案 0 :(得分:0)

在目标参数中包含新文件名。

Get-ChildItem | ForEach-Object{
    Move-Item $_ -Force -Destination ('M:\Destination Test Folder\' + ($_.Name -replace '8369','Name'))
}