| 35 | return true; |
| 36 | } |
| 37 | string concatpath(const string& path1, const string& path2) |
| 38 | { |
| 39 | string path= path1; |
| 40 | |
| 41 | if (*(path.rbegin()) != '/' && *(path.rbegin()) != '\\') |
| 42 | path += '\\'; |
| 43 | |
| 44 | path += path2; |
| 45 | return path; |
| 46 | } |
| 47 | bool FindNBFDirectory(const string& basedir, string& directory) |
| 48 | { |
| 49 | WIN32_FIND_DATA wfd; |