我想以递归的方式将一个文件夹中的所有项目复制到其他位置,但我还想将以“release.php”结尾的文件重命名为“.php”,并替换旧的“.php” “有这些文件的文件,有没有办法可以处理每个文件Copy-Item看到的?所以我可以重命名吗?提前谢谢。
答案 0 :(得分:0)
PS>ls c:\temp -recurse |
ForEach-Object {
if($_.FullName -match "relase.php"){
Rename-Item $_.FullName -NewName "$($_.baseName).php" -whatif;
move-item "$($_.DirectoryName)\$($_.Basename).php" $destination -whatif
}
else{
move-item $_.Fullname $detination -whatif
}