You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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
|