if exist F:\123.txt ren 123.txt 1234.txt
加上这个判断语句就可以了。
if exist F:\123.txt ren 123.txt 1234.txt
如果存在F:\123.txt则重命名为1234.txt
@echo off
if exist F:\123.txt echo 你好 > F:\1232.txt & goto :eof
echo 你好 > F:\123.txt
if exist F:\123.txt ren 123.txt 1234.txt
echo "你好" > 123.txt