我的脚本 PowerShell:
$liste = get-content "Y:\Users\H\Documents\D\Game Of Throne\prod\recup.txt" `
|Select-Object -last 1
$liste | ForEach-Object {Write-Host ($i++) $line}
get-childItem "Y:\Users\H\Documents\D\Game Of Throne\*.bmp*" `
| rename-item -newname { $_.name -replace("aaa",$line)}
要重命名的文件的示例:GameOfThrone aaa.bmp; GameOfThrone aaa(2).bmp ...
在文本文件中:
A
B
C
我希望我的文件命名如下:GameOfThrone A.bmp; GameOfThrone B.bmp ...