这是我到目前为止重命名/移动文件(单独使用)
Get-ChildItem | Rename-Item -NewName {$_.Name -replace '8369','Name'}
Move-Item -Force -Destination 'M:\Destination Test Folder\'
如何组合这两项任务或使用Move-item任务移动和重命名文件?
我是Powershell的新手,所以我感谢任何帮助或见解
答案 0 :(得分:0)
在目标参数中包含新文件名。
Get-ChildItem | ForEach-Object{
Move-Item $_ -Force -Destination ('M:\Destination Test Folder\' + ($_.Name -replace '8369','Name'))
}