1.

Solve : List of Files?

Answer»

Is it possible to print a list of files that are on a 3.5 diskette WITHOUT opening “explore”, CLICKING on A: drive and doing a print screen, save to a word document?  I find this very tedious.  I have a huge amount of 3.5 diskettes that I need to convert to cd-r and provide a “table of contents” for the cd-r.Start->Run:

CMD /c dir A: /s > temp.txt&notepad temp.txt

this will open a complete listing of the files and directories on the disk in drive A:.

Another one you might TRY might be

cmd /c tree A: /f /a > temp.txt&notepad temp.txt

This one shows the directory tree, sort of like how explorer shows FOLDERS in the left hand pane (with branches).

Hope this helps





Discussion

No Comment Found