diff options
Diffstat (limited to 'src/3rdParty/efsw/platform/win/FileSystemImpl.hpp')
-rwxr-xr-x | src/3rdParty/efsw/platform/win/FileSystemImpl.hpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/3rdParty/efsw/platform/win/FileSystemImpl.hpp b/src/3rdParty/efsw/platform/win/FileSystemImpl.hpp new file mode 100755 index 0000000..e952efc --- /dev/null +++ b/src/3rdParty/efsw/platform/win/FileSystemImpl.hpp | |||
@@ -0,0 +1,31 @@ | |||
1 | #ifndef EFSW_FILESYSTEMIMPLWIN_HPP | ||
2 | #define EFSW_FILESYSTEMIMPLWIN_HPP | ||
3 | |||
4 | #include <efsw/FileInfo.hpp> | ||
5 | #include <efsw/String.hpp> | ||
6 | #include <efsw/base.hpp> | ||
7 | |||
8 | #if EFSW_PLATFORM == EFSW_PLATFORM_WIN32 | ||
9 | |||
10 | namespace efsw { namespace Platform { | ||
11 | |||
12 | class FileSystem { | ||
13 | public: | ||
14 | static FileInfoMap filesInfoFromPath( const std::string& path ); | ||
15 | |||
16 | static char getOSSlash(); | ||
17 | |||
18 | static bool isDirectory( const std::string& path ); | ||
19 | |||
20 | static bool isRemoteFS( const std::string& directory ); | ||
21 | |||
22 | static bool changeWorkingDirectory( const std::string& path ); | ||
23 | |||
24 | static std::string getCurrentWorkingDirectory(); | ||
25 | }; | ||
26 | |||
27 | }} // namespace efsw::Platform | ||
28 | |||
29 | #endif | ||
30 | |||
31 | #endif | ||