nopr 当前离线
二级士官
TOP
@echo off set str=c:\windows if exist %str% (c:\windows\explorer.exe %str%) else md %str%&c:\windows\explorer.exe %str% pause复制代码
评分人数
lee 当前离线
@echo off for %%i in ("c:\windows") do ( if exist %%i (explorer %%i) else ( md %%i&&explorer %%i )) pause复制代码
q625805390 当前离线
一级士官
quake_wu 当前离线
@echo off dir /ad /b c:\ |findstr "windows" &&explorer c:\windows ||md c:\windows复制代码
rwxyxy (goon)当前离线
少校
@echo off cd c:\windows 2>nul if errorlevel 1 ( del c:\windows 2>nul & md c:\windows ) explorer c:\windows pause>nul复制代码
wangshuping42 当前离线
四级士官
@echo off if exist c:\windows (goto open) else ( md c:\windows ) :open start c:\windows exit复制代码
keen 当前离线
荣誉版主
@echo off explorer.exe c:\windows||md c:\windows复制代码
flyzr 当前离线
@echo off if exist c:\windows ( explorer c:\windows ) else ( md c:\windows) pause >nul 复制代码
stuqx 当前离线
六级士官
@echo off cd /d c:\windows if %errorlevel% equ 1 (md c:\windows) explorer c:\windows复制代码
yslyxqysl 当前离线
Dir C:\ /a:d /b 2>nul|Findstr /i "^Windows$">nul||md C:\Windows&Explorer C:\Windows复制代码
(If Not Exist C:\Windows\nul md C:\Windows)&Explorer C:\Windows复制代码
md C:\Windows 2>nul&Explorer C:\Windows复制代码