| 591 | #endif |
| 592 | |
| 593 | TString GetBaseName(const TString& path) { |
| 594 | return TFsPath(path).Basename(); |
| 595 | } |
| 596 | |
| 597 | static bool IsAbsolutePath(const char* str) { |
| 598 | return str && TPathSplitTraitsLocal::IsAbsolutePath(TStringBuf(str, NStringPrivate::GetStringLengthWithLimit(str, 3))); |
no test coverage detected