The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | #ifndef FS_H |
2 | #define FS_H | ||||
3 | |||||
4 | #include <string> | ||||
5 | |||||
6 | using namespace std; | ||||
7 | |||||
8 | int remove_recursively(const string& path); | ||||
9 | int mkdir_recursively(const string& path); | ||||
10 | int copy_file(const string& src, const string& dst); | ||||
11 | |||||
12 | #endif // FS_H |