blob: fd4ae3e554d0d3fc8b7e44b597b7d6b5fa5bdfb3 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001#ifndef FS_H
2#define FS_H
3
4#include <string>
5
6using namespace std;
7
8int remove_recursively(const string& path);
9int mkdir_recursively(const string& path);
10int copy_file(const string& src, const string& dst);
Raphael0b3ec5d2011-09-14 15:07:05 -070011int strip_file(const string& path);
The Android Open Source Project88b60792009-03-03 19:28:42 -080012
13#endif // FS_H