blob: 408088088a3d2b833174c6e352f77b7f3fdbcfa5 [file] [log] [blame]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001#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);
11
12#endif // FS_H