A terminal style view onto the filesystem, with the concept of current working directory. File systems can be mounted to root using libraries such as LocalFileSystem and SDFileSystem. Initial version only allows changing the current working directory and retrieving a directory listing. Required libraries: <<library /users/Phlaphead/libraries/Util/latest>> library.

Revision:
0:63761ecf509c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/File.cpp	Sun Jun 19 13:35:48 2011 +0000
@@ -0,0 +1,8 @@
+
+#include "File.h"
+
+File::File(string& name, FileType type)
+{
+    m_name = name;
+    m_type = type;
+}