Files
build/tools/atree/fs.h
The Android Open Source Project 88b607994a auto import from //depot/cupcake/@135843
2009-03-03 19:28:42 -08:00

13 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