View Single Post
Northwind_Dagas's Avatar
Northwind_Dagas Posts: 353, Reputation: 422
Full Member
 
#10

Jun 23, 2006, 01:27 PM
Quote:
Originally Posted by ScottGem
There are actually ways, using the DIR command to trim the list, but bringing it in Word or Excel and making a table out if it is easier.
Well, I'm not sure it's easier. For me, the fewest steps needed would be easier.

Dir /w > rick.txt

Would create your text file with just the names of files. Actaully, it would also include directories, so if you wanted exclude them:

Dir /w /a-d > rick.txt
Helpful