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.

File.cpp

Committer:
Phlaphead
Date:
2011-06-19
Revision:
0:63761ecf509c

File content as of revision 0:63761ecf509c:

#include "File.h"

File::File(string& name, FileType type)
{
    m_name = name;
    m_type = type;
}