How to print folder/file listing

  • Thread starter Thread starter hal
  • Start date Start date
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
 
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.
 
Back
Top