blob: fd4ae3e554d0d3fc8b7e44b597b7d6b5fa5bdfb3 [file] [log] [blame]
#ifndef FS_H
#define FS_H
#include <string>
using namespace std;
int remove_recursively(const string& path);
int mkdir_recursively(const string& path);
int copy_file(const string& src, const string& dst);
int strip_file(const string& path);
#endif // FS_H