Copy file listing from window explorer

shreeit

Member
May 27, 2003
68
0
66
Is there any way I can copy file listing (name field) from directory in window explorer?

Thanks,

shreeit
 

Cheetah8799

Diamond Member
Apr 12, 2001
4,508
0
76
do it from the command line, assuming you are in win2k or xp.

'dir /?' will show you the options for listing files and such.

Once you get it to output in the format you like, do this:

'dir /somecommands > someoutputfile.txt'

This will push all the output to a text file, in my case "someoutputfile.txt".