请教一个简单的BAT问题。。。
如果在C:\Test\下不存在文件1.txt,那么就把C:\2.txt 到C:\Test\下面并命名为1.txt
否则如果存在的话就直接打开远程链接窗口。
请问下面的代码需要如何修改?谢谢
=====================================
@echo off
if not exist C:\Test\1.txt goto nofile
if exist C:\Test\1.txt goto start
:nofile
copy C:\2.txt C:\Test\1.txt
:start
mstsc.exe
====================================
------解决方案--------------------
BatchFile code
@echo off
if exist "c:\test\1.txt" (start mstsc.exe) else (copy "c:\2.txt" "c:\test\1.txt"&&start mstsc.exe)