Subscribe to Windows IT Pro
July 27, 1998 12:00 AM

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

Windows IT Pro
InstantDoc ID #71942
Rating: (1)

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"



Related Content:

ARTICLE TOOLS

Comments
    There are no comments to display. Be the first one!
You must log on before posting a comment.

Are you a new visitor? Register Here

advertisement

advertisement

Windows is a trademark of the Microsoft group of companies. Windows IT Pro is used by Penton Media Inc. under license from owner.