Bob said:
Hi all,
Please help me figure a way to import hundreds
of folder names from Explorer into Excel without doing it individually
(that's a lot of copy-paste!)
Thanks
or hundreds of mp3 filenames... like I did.
Not a perfect solution but I used the command line (Win98)
directory statement
DIR /ad /s /on > C:/myfile.txt
this writes the attribute directory (/ad)names,
recursed into all subdirectories (/S)
in name order ( /on ) to a file ( > ) located wherever...
Open with notepad or whatever and clean up as needed
re-open cleaned-up file with Excel and import.
If you need to maintain structure make the file into a comma delimited
file
"find and replace" commas for backslash
programs,winamp
programs,winamp,plugins
programs,winamp,skins
instead of
programs\winamp
programs\winamp\plugins
programs\winamp\skins
then programs will be in col A
winamp will be in col B etc
OR search web for a little free utility DirPrint that does the same
thing from the point and click mode...
Hope this helps