OSDN Git Service

auto import from //depot/cupcake/@135843
[android-x86/build.git] / tools / atree / fs.h
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