file manager

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

Guest

I need to make a list of all folders, sub folders and file names on my hard
drive.

I cannot use just the print screen as it does not allow enough length. Is
there a solution to this or do I have to manually write one up in excel or
something.
 
DKP schreef:
I need to make a list of all folders, sub folders and file names on my hard
drive.

I cannot use just the print screen as it does not allow enough length. Is
there a solution to this or do I have to manually write one up in excel or
something.

To get a treeview just open a commandbox (start->run->cmd) then type tree c:
If you want to capture this to a file type
tree c: > c:\tree.txt
This wil generate a tree of the c: drive to a textfile called tree.txt
in the root of c:. You might want to use
tree c: /a > c:\tree.txt
as this will not use special characters to indicate the treelines.
 
Back
Top