android_mt6572_jiabo/build/tools/atree/fs.h
2025-09-05 16:56:03 +08:00

13 lines
260 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);
int strip_file(const string& path);
#endif // FS_H