blob: 408088088a3d2b833174c6e352f77b7f3fdbcfa5 [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);
11
12#endif // FS_H