How to print folder/file listing

H

hal

How can I do a listing of folders and files (recursive and not) in Win
2K/XP? I want to output a text file listing of everything I have on
my data drives.

thanks

Hal
 
S

Steve Parry [MVP]

In
How can I do a listing of folders and files (recursive and not) in Win
2K/XP? I want to output a text file listing of everything I have on
my data drives.

thanks

Hal


Start
Run
type
CMD
click OK

<CMD prompt opens>

type

c:
press enter
type
cd\
press enter
type
dir *.* /s >listing.txt
press enter

a file called listing.txt will be created (will take some time) which
you can open and print at your leisure.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top