Creating File Contents to an HTML List

RBall151

Weaksauce
Joined
Jan 20, 2004
Messages
120
Is there a program that anyone knows of or an easy way of making a list that displays the contents of files and it's subfolders?

I found a view, but all they do is literally print the contents on paper instead of being able to save the list in a notepad.

If anyone has any software or ideas please post them.

Thanks,
-Ryan
 
In a dos prompt you could type:
Code:
C:\>dir > filelist.txt

It would create a text file (filelist.txt) with the results of the dir command.
 
theDot said:
In a dos prompt you could type:
Code:
C:\>dir > filelist.txt

It would create a text file (filelist.txt) with the results of the dir command.

Throw a /s on there to get all the subfolders. You could create a batch file with this in it:
Code:
dir %1\*.* /s > .\files.txt

Pass the directory you want the list of as a command line parameter to the batch file.
 
Back
Top