BAT 批处理检测文件夹是否存在

BAT 批处理检测C:/drivers文件夹是否存在
存在则退出批处理 不存在则直接关机或者弹出提示10秒钟后再关机

在此先谢谢了!

@echo off
if not exist c:\drivers (shutdown -s -t 10 -c 关机了哈!)
温馨提示:内容为网友见解,仅供参考
第1个回答  2013-01-18
if not exist "c:\drivers" shutdown /s /t 10
相似回答