Недавно мне пришлось заняться этой проблемой, и многие файлы, в которые я хотел переместиться из иерархии в одну папку, имели одно и то же имя, и я хотел все еще сгладить иерархию без перезаписи.,Я написал сценарий, который перемещает файл, но переименовывает его со старым путем иерархии в имени , например: исходные файлы:
C: \ files \ somefiles\ file.txt
C: \ files \ otherfiles \ file.txt
местом назначения является C: \ newdir \ файлы создаются как
C: \ newdir \ somefiles-file.txt
C: \ newdir \ otherfiles-file.txt
вот код, пакетный файл 1 проходит через файлы, пакетный файл 2 переименовывает и перемещает их (можно также скопировать вместо этого, если вы хотите сохранить источник:
@echo off
for /r %%f in (*.*pr) do @renameandmovefilespart2.bat "%%f" "%%~ff" "%%~xf"
renameandmovefilespart2.bat
@echo off
Setlocal EnableDelayedExpansion
rem set the whole file path
set origWhole=%1
set origPathOnly=%2
set extension=%3
rem here you can set where the directory to hold the flattened hierarchy is
set destDir=c:\destinationDir\
rem set the directory to do a string replace
rem make this the starting directory, that you dont want in the newly renamed files
set startingDir=C:\starting\directory\
set nothing=
set slash=\
rem here you can set what the character to represent the directory indicator \ in the new files
set reaplcementDirectoryCharacter=--
set quote="
rem cut out the starting part of the directory
call set newname=%%origWhole:!startingDir!=!nothing!%%
rem replace slashes with new character
call set newname=%%newname:!slash!=!reaplcementDirectoryCharacter!%%
rem remove quotes
call set newname=%%newname:!quote!=!nothing!%%
rem @echo shortened: %newname%
rem @echo source path: %origPathOnly% newPath: %startingDir%
rem @echo extension: %extension%
rem rename the files
ren %origWhole% %newname%
rem prepare to move the file, clean up the source path
call set origPathOnly=%%origPathOnly:!quote!=!nothing!%%
move "%origPathOnly%%newname%" "%destDir%"