| 1234567891011121314151617181920212223 |
- #pragma once
- #include "CmPrerequisitesUtil.h"
- namespace CamelotEngine
- {
- class CM_UTILITY_EXPORT FileSystem
- {
- public:
- static DataStreamPtr open(const String& fullPath, bool readOnly = true);
- static DataStreamPtr create(const String& fullPath);
- static void remove(const String& fullPath);
- static bool fileExists(const String& fullPath);
- static bool dirExists(const String& fullPath);
- static void createDir(const String& fullPath);
- static vector<String>::type getFiles(const String& dirPath);
- };
- }
|