| 42 | } |
| 43 | |
| 44 | void CopyDirectoryProgress(const std::string &dir, const std::string &new_dir, CopyDirectoryStartCallback start_cb, CopyDirectoryFileStartCallback file_start_cb, CopyDirectoryFileProgressCallback file_prog_cb) { |
| 45 | auto exp = GetExplorerForPath(dir); |
| 46 | exp->CopyDirectoryProgress(dir, new_dir, start_cb, file_start_cb, file_prog_cb); |
| 47 | } |
| 48 | |
| 49 | u64 GetTotalSpaceForPartition(const Partition partition) { |
| 50 | fs::Explorer *exp = nullptr; |
nothing calls this directly
no test coverage detected