See this page Mike
http://www.rondebruin.nl/fso.htm
--
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
"Mike H." wrote in message ...
I need to look at all files within a directory and I need to "climb" down
sub-directories within those directories. For example:
FileDir="C:\mystuff"
I am using this loop:
FName = Dir(FileDir)
Do Until FName = ""
do stuff
Loop
But if there is a folder "c:\mystuff\subdir\" I need to look there too.
How do I determine sub-directories (folders) within folders?