批处理 判断文件是否存在
答案:4 悬赏:40 手机版
解决时间 2021-03-26 01:14
- 提问者网友:锁深秋
- 2021-03-25 17:19
批处理 判断文件是否存在
最佳答案
- 五星知识达人网友:西风乍起
- 2021-03-25 17:46
@echo off
if exist 路径\a.*** goto exit
b.***
:exit
说明:
(1) IF EXIST 是用来测试文件是否存在的,格式为
IF EXIST [路径+文件名] 命令
if exist 路径\a.*** goto exit
b.***
:exit
说明:
(1) IF EXIST 是用来测试文件是否存在的,格式为
IF EXIST [路径+文件名] 命令
全部回答
- 1楼网友:青尢
- 2021-03-25 19:51
@echo off
if not exist C:\a.exe goto nofile
echo a.exe存在
pause
exit
:nofile
echo a.exe不存在
pause
if not exist C:\a.exe goto nofile
echo a.exe存在
pause
exit
:nofile
echo a.exe不存在
pause
- 2楼网友:我住北渡口
- 2021-03-25 19:33
::如文件路径是c:\a.exe就直接用这命令就行了.
@echo off
if exist c:\a.exe (start a.exe) else echo 文件不存在
::如是在C盘不知那个目录的话就用这命令吧
@echo off
for /f "delims=" %%i in ('dir /b/s c:\a.exe')do start "" "%%i"
@echo off
if exist c:\a.exe (start a.exe) else echo 文件不存在
::如是在C盘不知那个目录的话就用这命令吧
@echo off
for /f "delims=" %%i in ('dir /b/s c:\a.exe')do start "" "%%i"
- 3楼网友:行雁书
- 2021-03-25 18:52
@echo off
if exist c:\a.exe (start a.exe) else echo 文件不存在.
pause
PS:判断系统安装路径下的a.exe,同理:(%windir%代表系统目录)
if exist "%windir%\system32\a.exe" (start %windir%\system32\a.exe) else echo 文件夹不存在
if exist c:\a.exe (start a.exe) else echo 文件不存在.
pause
PS:判断系统安装路径下的a.exe,同理:(%windir%代表系统目录)
if exist "%windir%\system32\a.exe" (start %windir%\system32\a.exe) else echo 文件夹不存在
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯