내 스크립트 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 ...
무엇을 이루려고하는지 명확하지 않습니다. 질문 내용을 바꾸고 파일 내용을 나열하십시오.
—
megamorf 2016 년