 
- 帖子
- 68
- 积分
- 297
- 技术
- 0
- 捐助
- 0
- 注册时间
- 2009-10-14
|
回复 1楼 的帖子
@echo off&setlocal EnableDelayedExpansion
dir /a-d logfile >nul 2>nul
if %errorlevel%==0 (
del logfile
md logfile
) else (
dir /ad logfile >nul 2>nul
if !errorlevel!==0 (
rd/q logfile
cd.>logfile
) else (
cd.>logfile
)
)
pause
利用了dir里attrib的目录属性
找到另一种方法:
(md logfile || del /q logfile&md logfile || rd /q logfile & cd.>logfile)>nul 2>nul
[ 本帖最后由 pumahxh 于 2009-11-11 11:12 编辑 ] |
|