在 Windows 中,有没有一种简单的方法可以交换两个文件的文件名?也许使用move
shell 中的命令?
最好不使用外部软件。
例如:我有fileA.txt
和fileB.txt
。经过运算后,fileA.txt
现在称为fileB.txt
,反之亦然。
答案1
Windows 中的简单 3 步骤流程:
ren a.txt a.tmp
ren b.txt a.txt
ren a.tmp b.txt
您可以直接运行它或将其保存到批处理文件中。
答案2
以下是将 3 个步骤合并为单个命令行:
@ren a.txt temp.tmp & @ren b.txt a.txt & @ren temp.tmp a.txt
这是开关文件名.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
欢迎提出任何改进想法。:)