---------------------------------------------------------------------------
| 347 | |
| 348 | //--------------------------------------------------------------------------- |
| 349 | bool createDirectory(const std::string &dir) |
| 350 | { |
| 351 | std::string s(dir); |
| 352 | cleanDirName(s); |
| 353 | try |
| 354 | { |
| 355 | fs::path p(s); |
| 356 | create_directories(p); |
| 357 | } |
| 358 | catch ( ... ) |
| 359 | { |
| 360 | } |
| 361 | return dirExists(s); |
| 362 | } |
| 363 | |
| 364 | //--------------------------------------------------------------------------- |
| 365 | std::string getPathRelativeToLocation(const std::string &_pathToAlter, const std::string &_fixedPath) |
no test coverage detected