#ifndef FILESYS_HEADER #define FILESYS_HEADER #include #include #include "exceptions.h" namespace fs { struct DirListNode { std::string name; bool dir; }; std::vector GetDirListing(std::string path); // Returns true if already exists bool CreateDir(std::string path); bool PathExists(std::string path); }//fs #endif