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