File/folder lists

  • Thread starter Thread starter Krista Bignall
  • Start date Start date
K

Krista Bignall

I'm posting this in increasing frustration after wading
through endless automated help pages that don't tell me
what I need to know!

Can anyone advise if it is possible (and, if so, how) to
print out (or cut and paste into a text file) a list of
all the files or subfolders in a folder on Windows
Explorer (or by another means?). I can't find this
information in any of Microsoft's help guides.

Thanks for your help.
 
Krista Bignall said:
I'm posting this in increasing frustration after wading
through endless automated help pages that don't tell me
what I need to know!

Can anyone advise if it is possible (and, if so, how) to
print out (or cut and paste into a text file) a list of
all the files or subfolders in a folder on Windows
Explorer (or by another means?). I can't find this
information in any of Microsoft's help guides.

Thanks for your help.

Do it from a Command Prompt:

- Start a Command Prompt
- Issue this command:
dir /s c:\*.* > c:\files.txt

Output is now in c:\files.txt
 
Back
Top