1 #ifndef FS_H
2 #define FS_H
3 
4 #include <string>
5 
6 using namespace std;
7 
8 int remove_recursively(const string& path);
9 int mkdir_recursively(const string& path);
10 int copy_file(const string& src, const string& dst);
11 int strip_file(const string& path);
12 
13 #endif // FS_H
14