| 162 | |
| 163 | |
| 164 | bool createDirectories(const std::string& path) { |
| 165 | try { |
| 166 | return fs::create_directories(fs::u8path(path)); |
| 167 | } |
| 168 | catch (fs::filesystem_error& e) { |
| 169 | return false; |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | |
| 174 | bool createSymbolicLink(const std::string& target, const std::string& link) { |
no outgoing calls
no test coverage detected