build/make/tools/atree/fs.h

14 lines
260 B
C
Raw Permalink Normal View History

2025-08-25 08:23:45 +08:00
#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