Skip navigation

JSI Tip 0617 - How do I remove all files and sub-directories from a folder, without removing the folder?

Typing RD /S /Q <Drive:>\FolderName will delete all files, sub-directories and the <Drive:>\FolderName also. If you wish to not remove the target folder, create DELTREE.BAT in your path:

 
@echo off
if \{%1\}==\{\} @echo Syntax: DelTree Folder&goto :EOF
if not exist %1 @echo Syntax: DelTree Folder - Folder %1 does not exist.&goto :EOF
pushd %1
if %ERRORLEVEL% NEQ 0 @echo Syntax: DelTree Folder - Folder %1 does not exist.&goto :EOF
del /q /f "*.*"
for /f "Tokens=*" %%i in ('dir %1 /B /A /AD') do rd /s /q "%%i"
popd
To delete all the files and sub-directories in <Drive:>\My Test Folder, type:

DELTREE "<Drive:>\My Test Folder"



Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish