extPos = position of ".ext"
| 84 | |
| 85 | /// extPos = position of ".ext" |
| 86 | static Type GetFile(const char* path, std::string& name) { std::size_t extPos; return GetFile(path,name,extPos); } |
| 87 | static Type GetFile(const char* path, std::string& name, std::size_t& extPos) { return GetFile(path,name,extPos,(std::string&)String::Empty); } |
| 88 | static Type GetFile(const char* path, std::string& name, std::string& parent) { std::size_t extPos; return GetFile(path,name,extPos,parent); } |
| 89 | static Type GetFile(const char* path, std::string& name, std::size_t& extPos, std::string& parent) { return GetFile(path, strlen(path), name, extPos, parent); } |