| 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); |
| 75 | static bool IsFolder(const std::string& path); |
| 76 | static bool IsFolder(const char* path); |
nothing calls this directly
no outgoing calls
no test coverage detected