| 272 | }; |
| 273 | |
| 274 | bool check_for_old_install(std::filesystem::path df_path) |
| 275 | { |
| 276 | for (auto file : old_filelist) |
| 277 | { |
| 278 | std::filesystem::path p = df_path / file; |
| 279 | if (std::filesystem::exists(p)) |
| 280 | return true; |
| 281 | } |
| 282 | return false; |
| 283 | } |
| 284 | |
| 285 | void remove_old_install(std::filesystem::path df_path) |
| 286 | { |