小编典典

如何检查批处理文件中是否存在文件

all

只有存在某个文件时,我才需要运行实用程序。如何在 Windows 批处理中执行此操作?


阅读 85

收藏
2022-03-11

共1个答案

小编典典

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
2022-03-11