bat怎么判断某个文件是否存在 如果存在提示后关闭 如果不存在关闭某个进程后关闭

2024-11-05 03:10:48
推荐回答(1个)
回答1:

@echo off
cd/d "%systemdrive%\"
if exist c:\aa.exe echo 文件存在&ping/n 3 127.1>nul&exit
taskkill /f /im bb.exe&echo 处理完毕&ping/n 3 127.1>nul&exit