我想使用批处理文件(Windows 7命令行)切换两个文件的名称。我写了下面的代码,但它没有用。
IF EXIST test12.txt
rename test.txt test23.txt
rename test12.txt test.txt
有人可以帮我纠正这段代码吗?
感谢。
编辑:当我从命令行运行时,它说“命令的语法不正确”。那么语法是什么?这只是为了检查目录的存在吗?
答案 0 :(得分:1)
不确定这是不是你要问的。也许您的IF条款不正确。通过使用()代码应该改进。
IF EXIST test12.txt (
rename test.txt test23.txt
rename test12.txt test.txt
)