Hi, i would like to be able to run through a folder on my network looking
for empty folders and output this information to a txt file, really new to
scripting

what i have is a shared dir on my network called clients, this contains
subfolders a-z and these contain subfolders A100.....A500 - Z100...Z500

under each client folder A100 etc i there are other folders, i would like to
be able to check these to see what folders are empty for each client

i do not need to be able to run through the whole drive at once, even doing
it letter by letter would be fine

i would appreciate it if someone could point me in the right direction or a
good web site for info

thanks

Re: Checking for Empty Folders by Navaja

Navaja
Thu Aug 18 13:19:18 CDT 2005

I wouldn't write a script for this one and believe me it hurts me to
say that I like writing scripts for everything. I would just open a
command window and use this line

diruse /s c:\1|find /i " 0"

You can redirect the output by add a > <filename> to the end of the
line.

ex. diruse /s c:\1|find /i " 0"> [filename to output text]

then you can just open that in a spreadsheet and sort how you like.