2009-03-04 03:28:42 +00:00
|
|
|
#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);
|
2011-09-14 22:07:05 +00:00
|
|
|
int strip_file(const string& path);
|
2009-03-04 03:28:42 +00:00
|
|
|
|
|
|
|
#endif // FS_H
|