ann 当前离线
列兵
@echo off if not exist F:\windows\ (md F:\windows\&start F:\windows\) else (explorer F:\windows\)[color=LemonChiffon][/color]复制代码
TOP
zzw8822 当前离线
@echo off cd /d c:\windows if exist c:\windows explorer c:\windows if not exist c:\window md c:\windows复制代码
gawk 当前离线
少将
if exist c:\windows\ ( explorer c:\windows ) else ( md c:\windows )复制代码
dizimotong 当前离线
上等兵
if exist c:\windows\ ( echo c:\windows存在 start c:\windows\ ) else ( echo c:\windows\不存在 echo 开始创建c:\windows\ md c:\windows\ start c:\windows\ ) pause>nul复制代码
cd /d d:\windows&&echo 目录存在||md d:\windows explorer d:\windows pause>nul复制代码
clsgalmc 当前离线
wutarnow 当前离线
@echo off md c:\windows 2>nul & start c:\windows\复制代码
sishentibu 当前离线
@echo off set diretory=c:\windows if exist %diretory% (explorer %diretory%) else (md %diretory%&explorer %diretory%)复制代码
胖奇4BAT 当前离线
zhuzhen830201 当前离线
懒虫阿布 当前离线
@echo off set specfolder=%1 if not exist "%specfolder%" ( md "%specfolder%" ) start "%specfolder%" "%specfolder%"复制代码
impk 当前离线
一级士官
@echo off set path="C:\windows" if exist %path% explorer %path% if not exist %path% md %path% start explorer %path%复制代码