rmd.bat
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:0k
源码类别:

通讯编程

开发平台:

Visual C++

  1. @echo off
  2. rem RCS: @(#) $Id: rmd.bat,v 1.5 2001/11/13 02:46:23 davygrvy Exp $
  3. if not exist %1nul goto end
  4. echo Removing directory %1
  5. if "%OS%" == "Windows_NT" goto winnt
  6. deltree /y %1
  7. if errorlevel 1 goto end
  8. goto success
  9. :winnt
  10. rmdir /s /q %1
  11. if errorlevel 1 goto end
  12. :success
  13. echo Deleted directory %1
  14. :end