|
Question : DOS TREE CONVERT TO .TXT
|
|
How to convert the TREE command in DOS to .TXT
|
Answer : DOS TREE CONVERT TO .TXT
|
|
The normal output of the tree command uses non-ascii characters. Use the /a option for plain ascii text.
for example
tree c:\ /a
Or when you want the output in a file:
tree c:\ /a >tree.txt
|
|
|