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