In giving a path with /, it tests one folder existance, otherwise file existance
| 69 | |
| 70 | /// In giving a path with /, it tests one folder existance, otherwise file existance |
| 71 | static bool Exists(const std::string& path) { return Exists(path.data(), path.size()); } |
| 72 | static bool Exists(const char* path) { return Exists(path, strlen(path)); } |
| 73 | static bool IsAbsolute(const std::string& path) { return IsAbsolute(path.c_str()); } |
| 74 | static bool IsAbsolute(const char* path); |