>> I want to make a list of all my files in a folder. Ideally I'd like to have a program be able to
>> read the files within a folder so I don't have to open up folder after folder but maybe I'm
>> getting
>> ahead of myself here. I can right click a file, Rename, Copy and Paste that into a document and
>> it
>> will show up perfectly. The problem is I can't seem to do that with more than 1 file at a time.
>> I
>> just want the name of the file on a list.
>
> Here are four ways:
> 1. Go to a command prompt and issue the command
> dir [drive:folder] > c:\tempfilename (you can use any name and put it
> in any folder you want)
There seems to be a problem. I can navigate in there to any folder that has a 1 word title. But I
use numbers to keep the order correct. Like this:
1 Documents
2 Videos
3 Audio
When I use an underscore to "join" the words it doesn't work. When I use a space, just like its
displayed, it doesn't work either. Just says File Not Found.
> Then open notepad, open tempfilename, and print it from there.
>
> 2. Write (for example in Notepad) a 1-line text file:
> DIR %1 /O >LPT1:
>
> Save it as "printdir.bat" in the "Send To" folder.
>
> Then, to print list of files in any folder, right-click that folder
> and select Send to | printdir.bat
>
> To include subfolders, change the comand to DIR %1 /O/S >LPT1:
>
> 3. Go to
> http://support.microsoft.com/default...;EN-US;Q321379 and
> follow the instructions there.
>
> 4. Download and use any of the several freeware/shareware utilities
> that can do this, such as the popular
> http://www.karenware.com/powertools/ptdirprn.asp
>
>
> --
> Ken Blake, Microsoft MVP - Windows Desktop Experience
> Please Reply to the Newsgroup