| 152 | |
| 153 | |
| 154 | bool createDirectory(const std::string& path) { |
| 155 | try { |
| 156 | return fs::create_directory(fs::u8path(path)); |
| 157 | } |
| 158 | catch (fs::filesystem_error& e) { |
| 159 | return false; |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | |
| 164 | bool createDirectories(const std::string& path) { |
no outgoing calls
no test coverage detected