00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef _FU_FILE_MANAGER_H_
00013 #define _FU_FILE_MANAGER_H_
00014
00015 class FUFile;
00016
00017 class FCOLLADA_EXPORT FUFileManager
00018 {
00019 private:
00020 FStringList pathStack;
00021
00022 public:
00023 FUFileManager();
00024 ~FUFileManager();
00025
00026
00027 const fstring& GetCurrentPath() { return pathStack.back(); }
00028 void PushRootPath(const fstring& path);
00029 void PopRootPath();
00030 void PushRootFile(const fstring& filename);
00031 void PopRootFile();
00032
00033
00034 FUFile* OpenFile(const fstring& filename, bool write=true);
00035
00036
00037 static fstring StripFileFromPath(const fstring& filename);
00038 static fstring GetFileExtension(const fstring& filename);
00039
00040
00041 fstring MakeFilePathAbsolute(const fstring& filePath);
00042 fstring MakeFilePathRelative(const fstring& filePath);
00043
00044
00045 fstring GetFilePath(const fstring& fileURL);
00046
00047
00048 fstring GetFileURL(const fstring& filepath, bool relative);
00049
00050
00051 static void ExtractPathStack(const fstring& filename, FStringList& list, bool includeFilename);
00052 };
00053
00054 #endif // _FU_FILE_MANAGER_H_
00055