Implement folder options (Delete folder)

This commit is contained in:
Such Meme, Many Skill
2020-01-02 00:38:36 +01:00
parent 3e8cd67129
commit e1f4c24686
4 changed files with 147 additions and 55 deletions

View File

@@ -37,8 +37,13 @@ enum filemenuoptions {
HEXVIEW
};
enum foldermenuoptions {
EXITFOLDER = 1,
DELETEFOLDER
};
int readfolder(const char *path);
void filemenu();
void fileexplorer(const char *startpath);
bool checkfile(char* path);
u64 getfilesize(char *path);
int copy(const char *locin, const char *locout, bool print);