Copying and pasting from the MS-DOS tree command might also work for you. Examples:
tree
C:\Foobar>tree
C:.
├───FooScripts
├───barconfig
├───Baz
│ ├───BadBaz
│ └───Drop
...
tree /F
C:\Foobar>tree
C:.
├───FooScripts
│ foo.sh
├───barconfig
│ bar.xml
├───Baz
│ ├───BadBaz
│ │ badbaz.xml
│ └───Drop
...
tree /A
C:\Foobar>tree /A
C:.
+---FooScripts
+---barconfig
+---Baz
¦ +---BadBaz
¦ \---Drop
...
tree /F /A
C:\Foobar>tree /A
C:.
+---FooScripts
¦ foo.sh
+---barconfig
¦ bar.xml
+---Baz
¦ +---BadBaz
¦ ¦ badbaz.xml
¦ \---Drop
...
Syntax [source]
tree [drive:][path] [/F] [/A]
drive:\path— Drive and directory containing disk for display of directory structure, without listing files.
/F— Include all files living in every directory.
/A— Replace graphic characters used for linking lines with ext characters , instead of graphic characters./ais used with code pages that do not support graphic characters and to send output to printers that do not properly interpret graphic characters.