Answer the question
In order to leave comments, you need to log in
How to automatically rename folders?
There is a list of matches between old and new folder names, the list is very large. Tell me, how can I quickly rename folders in Windows using this list? It can be presented in any format. Maybe someone knows an automated means to do this?
Answer the question
In order to leave comments, you need to log in
Batch version for files in the same directory and file names are not template:
chcp 1251
for /f "tokens=1,2 delims=<тут подставить символ TAB>" %%a in (file.txt) do (
ren "<имя каталога>\%%a" "%%b"
)
<имя исходного файл с расширением><TAB><имя результирующего файла с расширением>
Take your list and convert it to
chcp 65001
ren "старое название" "новое название"
ren "старое название 2" "новое название 2"
pause
save as .bat and run.
How to automatically rename folders?Script.
Maybe someone knows an automated means to do this?Of course - cmd, powershell
Self-written script, reneimer program, built-in renewer in Total Commander.
There are probably a lot of details on the first two links from the Google results below.
https://www.google.com/search?q=batch+rename+accor...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question