windows batch file rename

后端 未结 6 1011
别跟我提以往
别跟我提以往 2020-12-09 16:54

I have some file such as AAA_a001.jpg, BBB_a002.jpg, CCC_a003.jpg in Windows 7 and I\'m trying to use batch to rename these file to

6条回答
  •  我在风中等你
    2020-12-09 17:19

    I found this solution via PowerShell :

    dir | rename-item -NewName {$_.name -replace "replaceME","MyNewTxt"}

    This will rename parts of all the files in the current folder.

提交回复
热议问题