List files and folders in text document?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to list files and folders as an "Index" in a text file or some
format other than a graphic, or something.
Looking to ge a listing of what someone has on their system that we do not
approve of and want to talk with our Human Resources, however, I want to list
the files name and the folder names.

I.E.
Babes.mpg in subfolder PICS_Movies
If on the C:\Pics_Movies\Babes.mpg has a file, is there a way to archive in
an "index" file to fix it in a list to give to others!?
 
In
Matt Carter said:
Is there a way to list files and folders as an "Index" in a text file
or some format other than a graphic, or something.
Looking to ge a listing of what someone has on their system that we
do not approve of and want to talk with our Human Resources, however,
I want to list the files name and the folder names.

I.E.
Babes.mpg in subfolder PICS_Movies
If on the C:\Pics_Movies\Babes.mpg has a file, is there a way to
archive in an "index" file to fix it in a list to give to others!?

If you type

c:\>dir *.mpg /s >c:\myfile.txt

in a command prompt, it willl list all the .mpg files in that text file. And
so on.... *.mp3, *.jpg, *.whatever.
 
Back
Top