2012-02-27 17:05:10 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _FILEOPS
|
|
|
|
#define _FILEOPS
|
|
|
|
|
|
|
|
typedef void (*progress_callback_t)(int status,int total,void *user_data);
|
|
|
|
|
2012-05-24 20:48:26 +02:00
|
|
|
bool fsop_GetFileSizeBytes(char *path, size_t *filesize);
|
|
|
|
u64 fsop_GetFolderBytes(char *source);
|
|
|
|
u32 fsop_GetFolderKb(char *source);
|
|
|
|
u32 fsop_GetFreeSpaceKb(char *path);
|
2012-04-08 17:54:34 +02:00
|
|
|
bool fsop_FileExist(const char *fn);
|
2012-05-24 20:48:26 +02:00
|
|
|
bool fsop_DirExist(char *path);
|
2012-06-21 16:35:18 +02:00
|
|
|
void fsop_MakeFolder(char *path);
|
2012-05-24 20:48:26 +02:00
|
|
|
bool fsop_CopyFile(char *source, char *target, progress_callback_t spinner, void *spinner_data);
|
|
|
|
bool fsop_CopyFolder(char *source, char *target, progress_callback_t spinner, void *spinner_data);
|
|
|
|
void fsop_deleteFile(char *source);
|
2012-03-05 10:48:13 +01:00
|
|
|
void fsop_deleteFolder(char *source);
|
2012-02-27 17:05:10 +01:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|