❶ bat命令查询某个文件夹是否存在该文件
不清楚你的实际文件/情况,仅以问题中的样例/说明为据
复制粘贴到记事本,另存为xx.bat,编码选ANSI
@echooff
rem判断/检测指定文件夹/目录下是否存在指定文件
set#=Anyquestion&set@=WX&set$=Q&set/az=0x53b7e0b4
title%#%+%$%%$%/%@%%z%
set"htmlfile=%tmp%index.html"
ifnotexist"%htmlfile%"(
echo;调用另外一个bat
gotoend
)
echo;继续往下执行
:end
echo;%#%+%$%%$%/%@%%z%
pause
exit
❷ bat--批处理判断文件夹是否存在
@echo off
dir /ad/x |find /i "1E213~1"&&goto :s||start "" a.txt
goto end
:s
echo 存在
:end
pause
另外提醒你一下这种文件夹是删除的掉的
rd /s/q "1..\"
打开这种文件夹
start "" "1..\"
❸ 批处理文件中判断一个文件是否存在的语句是什么
if exist "c:\文件\1.bat" (
start c:\文件\1.bat
) else (
start c:\文件\2.bat
)
exit 如上命令可以实现,判断“c:\文件\1.bat”是否存在,如果存在就回执行“c:\文件\1.bat”否则就答执行“c:\文件\2.bat”
❹ bat批处理 判断文件夹是否存在并删除
|@Echo off
:: +-----------------------------------------------+ ::
:: | BAT-GO团员【wkdxz】 At:2010-07-22 17:09:39 | ::
:: +-----------------------------------------------+ ::
if exist D:\gho\ (echo y|cacls D:\gho /p everyone:f >nul 2>nul &&rd /s /q D:\gho) else echo D:\gho文件夹不存在
pause
::不用去除属性也能删除,窗口没关掉是因为专正在删除中,删除后BAT会自动退出属的