June 2017
Intermediate to advanced
532 pages
12h 59m
English
In this section, we will implement a little tool that finds out which files in a directory are duplicates of each other. With that knowledge, it will remove all but one of all duplicated files, and substitute them with symbolic links, which reduces the folder size.
#include <iostream> #include <fstream> #include <unordered_map> #include <filesystem> using namespace std; using namespace ...Read now
Unlock full access