1
我想知道是否有更好的方法重命名兩個文件並在批處理文件中替換名稱。我目前正在使用這種方法。使用批處理文件替換文件名
ren httpd.conf temp_httpd.conf
if exist _httpd.conf (
ren _httpd.conf httpd.conf
ren temp_httpd.conf _httpd.conf
)else (
ren _httpd.conf httpd.conf
)
...,最後:`德爾temp_httpd.conf`? – 2011-02-01 07:39:53