返回列表 发帖
if exist logfile (
     rd logfile && echo. >logfile
     del logfile && md logfile
) else (
   echo. >logfile
)
pauseCOPY


问题:为何当logfile为目录时,我这段代码不能删除目录并创建文件呢?

[ 本帖最后由 zgq0301 于 2009-11-12 19:15 编辑 ]

TOP

@echo off
cd logfile && cd..& rd /s/q logfile && cd.>logfile || del logfile && md logfile
cls & exitCOPY
进步怎么这么慢呢?

TOP

本帖最后由 Hello123World 于 2011-7-28 13:09 编辑

这里有一个有趣的现象,批处理命令(也可能是cmd.exe本身)不能判断无扩展名的文件和文件夹的区别。
@echo off
Md logfile 2>nul || fsutil file CreateNew logfile 0 &Rd logfile & exit
fsutil file CreateNew logfile 0 || Md logfile 2>nul & del logfile &exit
pause
del  logfile || rd logfile & fsutil file CreateNew logfile 0 & exit
rd logfile || del logfile & md logfile & exitCOPY
最终解决代码:
@echo off
Set a=
pushd "%~dp0"
cd logfile && Set a=1 || Set a=0
popd
If %a%==1 rd logfile && fsutil File CreateNew logfile 0  & exit
If %a%==0 del logfile && md logfile  || fsutil File CreateNew logfile 0
exit
pauseCOPY

TOP

回复 1# wxcute

这个用了不小的时间,差不点一个小时,学到了几点。
if exist 对目录同样有效,当文件不带扩展名时相当头痛,
因为一直使用肯定判断,导致不断出错。改用否定判断后,一次成功。
if errorlevel 要倒序使用,否则出错,原因我不知道。
经验:为程序每步+上echo 数字,if语句(尤其是多重判断)的运行流程一目了然,排查错误也方便许多,就是显得笨拙了一点。没办法,笨鸟先飞。
@echo off
if not exist file (goto b) else (cd file)
if errorlevel 1 (del file&md file&pause&goto :eof)
if errorlevel 0 (cd..&rd file&goto b)
:b
cd.>file
pause   COPY

TOP

回复 1# wxcute
@echo off
if exist logfile (
    for %%i in (logfile) do (
   if "%%~ai"=="--a------" echo logfile is File!&del "%%i"&md logfile
   if "%%~ai"=="d--------" echo logfile is Folder!&rd /s /q "%%i"&cd.>logfile
  ) else (
    cd.>logfile
  )
pauseCOPY
dir /ad /b|findstr /i "^logfile">nul 2>nul&&echo logfile是目录&&rd /s /q logfile&&cd.>logfile||dir /a-d /b|findstr /i "^logfile">nul 2>nul&&echo logfile是文件&&del logfile&&md logfile||cd.>logfile
pauseCOPY
@echo off&setlocal enabledelayedexpansion
if not exist logfile cd.>logfile
for /f "skip=5 tokens=3" %%i in ('dir /tc logfile') do (
   set /a m+=1
   if !m!==1 (
      if "%%i"=="<DIR>" (
       echo logfile is Folder&rd /s /q "logfile"&cd.>logfile
      ) else (
        echo logfile is File!&del "logfile"&md logfile
      )
     
  )
)
pauseCOPY

TOP

回复 12# liuks001

>nul是重定向标准输出
2>nul是重定向错误输出
你可以试下以下代码来更好的了解他们的区别:
@echo off
echo ^>nul
cd abc>nul
echo 2^>nul
cd abc 2>nul
pauseCOPY
前提是abc文件夹不存在。

应该是这样吧,昨天百度的。。

TOP

@echo off
cd..\..
cd /d e:\.
md logfile
dir /s/a/w|more
pause
if exist e:\logfile (echo e盘下有logfile存在) else (echo e盘下不存在logfile)
pause
@echo off
type nul>e:\logfile.txt
pause
@echo off
cd..\..
cd /d e:\.
del e:\logfile.txt
if exist e:\logfile (ren e:\logfile logfile.txt) else (echo c:\logfile.txt)
pause
@echo off
cd..\..
cd /d e:\.
md logfile
if exist e\logfile.txt (ren e:\logfile.txt logfile) else (echo c:\logfile)
pause
cd..\..
cd /d e:\.&dir/s/a/w|more
pauseCOPY

TOP

@echo off
::判断有没有logfile
if exist logfile (
if exist .\logfile\ (echo y|rmdir logfile
                       cd.>logfile)  else (
                       del logfile  
                       md logfile                     
                       )
)  else (
cd.>logfile
)
::.\logfile\为判断是否为目录
pause
刚开始学习,上面好多代码还看不懂,就用自己的方法来做把

TOP

@echo off
if exist logfile\ (rd logfile)&(cd.>logfile) else if exist logfile (del logfile)&(md logfile)
if not exist logfile (if not exist logfile\ cd.>logfile)
pause>nulCOPY

TOP

回复 10# liuks001


>nul 重定向到空设备 就是不在屏幕上显示输出信息   2>nul 不显示错误的信息

TOP

本帖最后由 monsterbatch 于 2014-11-3 22:25 编辑
@echo off
cd logfile 2>nul
if errorlevel 1 goto :1
if errorlevel 0 goto :0
:1
del logfile 2>nul
md logfile&pause&exit
:0
cd..
rd logfile
cd.>logfile&pause&exitCOPY

TOP

本帖最后由 shelluserwlb 于 2014-11-6 21:07 编辑
@echo off  
dir /a-d /b|findstr "logfile">nul && (
del logfile&md logfile&exit
)
dir /ad /b|findstr "logfile">nul && (
rd logfile
)
cd.>logfileCOPY
上述代码利用dir命令和findstr命令相结合来实现程序的功能。
先判断是否存在logfile文件,再判断是否存在logfile文件夹
最后利用cd.>重定向命令生成logfile文件。

TOP

@echo off
set name=logfile
if exist %name% (
        cd %name%>nul 2>Nul && (cd .. & rd /s /q %name%>nul 2>Nul & cd.>%name%)||(del /s /q %name%>nul 2>Nul & md %name% & exit /b)
) else (exit /b>logfile)

TOP

返回列表