¿Cambiar fácilmente los nombres de los archivos?

0

¿Hay alguna manera fácil de intercambiar los nombres de dos archivos en Windows? ¿Quizás usando el movecomando en el shell?
Preferiblemente sin usar software externo.

Ejemplo: tengo fileA.txty fileB.txt. Después de la operación, fileA.txtahora se llama fileB.txt, y viceversa.

Protector uno
fuente

Respuestas:

4

Proceso simple de 3 pasos en Windows:

ren a.txt a.tmp
ren b.txt a.txt
ren a.tmp b.txt

Puede ejecutar esto directamente o guardarlo en un archivo por lotes.

Jeff Meatball Yang
fuente
0

Aquí hay 3 pasos combinados en una sola línea de comando:

@ren a.txt temp.tmp & @ren b.txt a.txt & @ren temp.tmp a.txt

Aquí se puede usar switch-filename.cmd :

@echo off
if not "%4"=="" call :help %0
if "%3"=="/?" call :help %0
if "%2"=="/?" call :help %0
if "%1"=="/?" call :help %0
if "%1"=="" call :help %0
if "%1"=="" goto :eof
if "%2"=="" call :help %0
if "%2"=="" goto :eof
setlocal
if "%3"=="" set ch=echo
if "%3"=="#ok#" set ch=
call :v1 %1 %2
endlocal
echo.
echo [%date% %time%] Completed!
goto :eof
:help
echo.
echo Syntax: %1 FullPath\FileName01.Ext FileName02.Ext [enter]
echo.
echo         %1 C:\Win\Temp\SapGui_v1.txt SapGui_v5.txt [enter]
echo.
echo         %1 \\Svr\Tmp\GuiSAP_v0.txt GuiSAP_v9.txt [enter]
echo.
goto :eof
:v0
%ch% ren %1 tmp_%~n1%~x1
%ch% ren %2 %~n1%~x1
%ch% ren %~p1tmp_%~n1%~x1 %~n2%~x2
goto :selesai
:v1
set f01=%1
set f02=%2
echo f01 = %f01%
echo f02 = %f02%
%ch% ren %1 tmp_%~n1%~x1
if "%f01:~0,2%"=="\\" (
  %ch% ren \\%~p1%2 %~n1%~x1
  %ch% ren \\%~p1tmp_%~n1%~x1 %~n2%~x2
) else (
  %ch% ren %~p1%2 %~n1%~x1
  %ch% ren %~p1tmp_%~n1%~x1 %~n2%~x2
)
echo.
echo f01 = %f01%
echo       %f01:~0,2%
echo f02 = %f02%
echo       %f02:~0,2%
set f01=
set f02=
goto :eof

Cualquier idea de mejora es bienvenida. :)

Rhak Kahr
fuente