00001 #ifndef FS_H 00002 #define FS_H 00003 00005 const char *WorkingDirectory(); 00006 00008 bool IsDirectoryPath(const char *src); 00009 00011 const char *DirectoryName(const char *src); 00012 00014 void ChangeDirectory(const string &path); 00016 void ChangeDirectory(const char *path); 00017 00018 #endif