2012-02-27 17:05:10 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _FILEOPS
|
|
|
|
#define _FILEOPS
|
|
|
|
|
2013-07-07 03:50:26 +02:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "memory/mem2.hpp"
|
|
|
|
|
2012-02-27 17:05:10 +01:00
|
|
|
typedef void (*progress_callback_t)(int status,int total,void *user_data);
|
|
|
|
|
2018-05-08 15:49:43 +02:00
|
|
|
bool fsop_GetFileSizeBytes(const char *path, u32 *filesize);
|
2012-08-26 17:20:51 +02:00
|
|
|
u64 fsop_GetFolderBytes(const char *source);
|
|
|
|
u32 fsop_GetFolderKb(const char *source);
|
2012-11-01 17:39:42 +01:00
|
|
|
u32 fsop_GetFreeSpaceKb(const char *path);
|
2012-11-18 14:40:26 +01:00
|
|
|
bool fsop_CopyFile(const char *source, const char *target, progress_callback_t spinner, void *spinner_data);
|
|
|
|
bool fsop_CopyFolder(const char *source, const char *target, progress_callback_t spinner, void *spinner_data);
|
2012-08-20 21:15:52 +02:00
|
|
|
void fsop_deleteFolder(const char *source);
|
2013-10-19 20:59:17 +02:00
|
|
|
bool fsop_FileExist(const char *fn);
|
|
|
|
u8 *fsop_ReadFile(const char *path, u32 *size);
|
|
|
|
void fsop_ReadFileLoc(const char *path, const u32 size, void *loc);
|
|
|
|
bool fsop_WriteFile(const char *path, const void *mem, const u32 size);
|
|
|
|
void fsop_deleteFile(const char *source);
|
|
|
|
bool fsop_FolderExist(const char *path);
|
2016-12-01 01:05:39 +01:00
|
|
|
bool fsop_MakeFolder(const char *fullpath);
|
2012-02-27 17:05:10 +01:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|