platform_build/tools/atree/fs.h
The Android Open Source Project b6c1cf6de7 Initial Contribution
2008-10-21 07:00:00 -07:00

12 lines
224 B
C++

#ifndef FS_H
#define FS_H
#include <string>
using namespace std;
int remove_recursively(const string& path);
int mkdir_recursively(const string& path);
int copy_file(const string& src, const string& dst);
#endif // FS_H