| 92 | } |
| 93 | |
| 94 | void FileSystemBase::NormalizePath(String& path) |
| 95 | { |
| 96 | path.Replace('\\', '/'); |
| 97 | if (path.Length() > 2 && StringUtils::IsAlpha(path[0]) && path[1] == ':') |
| 98 | { |
| 99 | path[2] = '\\'; |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | bool FileSystemBase::IsRelative(const StringView& path) |
| 104 | { |
no test coverage detected