| 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); | ||||
| Raphael | 0b3ec5d | 2011-09-14 15:07:05 -0700 | [diff] [blame] | 11 | int strip_file(const string& path); | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 12 | |
| 13 | #endif // FS_H | ||||