| 172 | |
| 173 | |
| 174 | bool createSymbolicLink(const std::string& target, const std::string& link) { |
| 175 | try { |
| 176 | fs::create_symlink(fs::u8path(target), fs::u8path(link)); |
| 177 | return true; |
| 178 | } |
| 179 | catch (fs::filesystem_error& e) { |
| 180 | return false; |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | |
| 185 | bool remove(const std::string& path) { |