只有存在某个文件时,我才需要运行实用程序。如何在 Windows 批处理中执行此操作?
if exist ( rem file exists ) else ( rem file doesn’t exist )
或者在一行上(如果只需要执行一个操作):
if exist <insert file name here> <action>
例如,如果文件存在,这将在 autoexec.bat 上打开记事本:
if exist c:\autoexec.bat notepad c:\autoexec.bat