Print File Tree

Is there a way in game to print the file tree of a folder so

Folder
-Sub Folder
--File
-Sub Folder
--File
--File

Something like that?

check out the System.IO.Directory library:

You can use that to get a list of files or directories in a directory.
You can use it recursively to get a hierarchical list like in your example.