Implement folder copy
+ Change error messaging internally + inproved recursive file deletion
This commit is contained in:
@@ -39,11 +39,12 @@ enum filemenuoptions {
|
||||
|
||||
enum foldermenuoptions {
|
||||
EXITFOLDER = 1,
|
||||
DELETEFOLDER
|
||||
DELETEFOLDER,
|
||||
COPYFOLDER
|
||||
};
|
||||
|
||||
int readfolder(const char *path);
|
||||
void fileexplorer(const char *startpath);
|
||||
bool checkfile(char* path);
|
||||
u64 getfilesize(char *path);
|
||||
int copy(const char *locin, const char *locout, bool print);
|
||||
int copy(const char *locin, const char *locout, bool print, bool canCancel);
|
||||
Reference in New Issue
Block a user