PC Review


Reply
Thread Tools Rate Thread

Deleting Empty File Folders

 
 
Steve
Guest
Posts: n/a
 
      26th Jul 2004
Is there an easy way of deleting empty file folders in
windows or a third party program? We have made major
modifications to our data file stucture and would like to
eliminate all of the now empty folders.
 
Reply With Quote
 
 
 
 
Jerold Schulman
Guest
Posts: n/a
 
      27th Jul 2004
On Mon, 26 Jul 2004 14:07:22 -0700, "Steve"
<(E-Mail Removed)> wrote:

>Is there an easy way of deleting empty file folders in
>windows or a third party program? We have made major
>modifications to our data file stucture and would like to
>eliminate all of the now empty folders.



@echo off
if {%1}=={} @echo Syntax DelMT Folder&goto :EOF
if not exist %1 @echo Syntax DelMT Folder - %1 not found.&goto :EOF
setlocal
set folder=%1
:loop
set delSW=N
for /f "Tokens=*" %%f in ('dir %folder% /AD /S /b') do (
set fld="%%f"
set MT=Y
call :IsMT
)
if "%delSW%" EQU "Y" goto :loop
endlocal
goto :EOF
:IsMT
for /f "Tokens=*" %%m in ('dir %fld% /a /b') do (
set MT=N
)
if "%MT%" EQU "N" goto :EOF
rd /q %fld%
set delSW=Y


Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Deleting Empty Folders within PSTs Paxford_Pete Microsoft Outlook Discussion 1 10th Feb 2010 02:38 PM
Deleting Empty File Folders =?Utf-8?B?RGVsZXRpbmcgRW1wdHkgRmlsZSBGb2xkZXJz?= Microsoft Word Document Management 1 13th Apr 2007 05:42 PM
Deleting empty folders The Stooge Windows XP Help 9 9th Nov 2004 12:24 AM
Re: Deleting empty folders monkeyjob Microsoft Windows 2000 0 24th Jun 2004 04:11 PM
deleting empty folders after archive Shane Microsoft Outlook 0 13th Aug 2003 07:26 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:13 PM.