1 // ExtractingFilePath.h 2 3 #ifndef __EXTRACTING_FILE_PATH_H 4 #define __EXTRACTING_FILE_PATH_H 5 6 #include "Common/MyString.h" 7 8 UString MakePathNameFromParts(const UStringVector &parts); 9 void MakeCorrectPath(UStringVector &pathParts); 10 UString GetCorrectFsPath(const UString &path); 11 UString GetCorrectFullFsPath(const UString &path); 12 13 #endif 14