The File System Tree (FST) is a very simple way to manage list trees. It is based around the "File System" paradigm and features the same commands. For example, you can mkdir or cd and you can add "files" to the FSTree by calling afc_fstree_add() function. At the moment, there's also a function call that displays all the FSTree tree, called afc_fstree_internal_recursive_dump()
Each "node" in the FSTree tree is rappresented by a FSTData struct. The data field inside this struct contains the node data (if the item is not a folder) or an instance to ArrayMaster if the node is a folder. The name of the node is contained inside the name field of the struct.
*NOTE*: FSTree is Case Sensitive!