Added os delete and rename functions.

This commit is contained in:
Nathan Moinvaziri 2018-07-31 10:06:12 -07:00
parent c9addbe56d
commit c83e4da20d
4 changed files with 60 additions and 0 deletions

View File

@ -13,6 +13,7 @@
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
@ -107,6 +108,22 @@ int32_t mz_posix_rand(uint8_t *buf, int32_t size)
#endif
#endif
int32_t mz_posix_rename(const char *source_path, const char *target_path)
{
if (rename(source_path, target_path) == -1)
return MZ_EXIST_ERROR;
return MZ_OK;
}
int32_t mz_posix_delete(const char *path)
{
if (unlink(path) == -1)
return MZ_EXIST_ERROR;
return MZ_OK;
}
int32_t mz_posix_file_exists(const char *path)
{
struct stat stat_info;

View File

@ -31,6 +31,8 @@ extern "C" {
/***************************************************************************/
int32_t mz_posix_rand(uint8_t *buf, int32_t size);
int32_t mz_posix_rename(const char *source_path, const char *target_path);
int32_t mz_posix_delete(const char *path);
int32_t mz_posix_file_exists(const char *path);
int64_t mz_posix_get_file_size(const char *path);
int32_t mz_posix_get_file_date(const char *path, time_t *modified_date, time_t *accessed_date, time_t *creation_date);
@ -47,6 +49,8 @@ int32_t mz_posix_is_dir(const char *path);
/***************************************************************************/
#define mz_os_rand mz_posix_rand
#define mz_os_rename mz_posix_rename
#define mz_os_delete mz_posix_delete
#define mz_os_file_exists mz_posix_file_exists
#define mz_os_get_file_size mz_posix_get_file_size
#define mz_os_get_file_date mz_posix_get_file_date

View File

@ -96,6 +96,41 @@ void mz_win32_unicode_path_delete(wchar_t **path)
}
}
int32_t mz_win32_rename(const char *source_path, const char *target_path)
{
wchar_t *source_path_wide = NULL;
wchar_t *target_path_wide = NULL;
int32_t result = 0;
source_path_wide = mz_win32_unicode_path_create(source_path);
target_path_wide = mz_win32_unicode_path_create(target_path);
result = MoveFileW(source_path_wide, target_path_wide);
mz_win32_unicode_path_delete(&source_path_wide);
mz_win32_unicode_path_delete(&target_path_wide);
if (result == 0)
return MZ_EXIST_ERROR;
return MZ_OK;
}
int32_t mz_win32_delete(const char *path)
{
wchar_t *path_wide = NULL;
int32_t result = 0;
path_wide = mz_win32_unicode_path_create(path);
result = DeleteFileW(path_wide);
mz_win32_unicode_path_delete(&path_wide);
if (result == 0)
return MZ_EXIST_ERROR;
return MZ_OK;
}
int32_t mz_win32_file_exists(const char *path)
{
wchar_t *path_wide = NULL;

View File

@ -32,6 +32,8 @@ typedef void* DIR;
/***************************************************************************/
int32_t mz_win32_rand(uint8_t *buf, int32_t size);
int32_t mz_win32_rename(const char *source_path, const char *target_path);
int32_t mz_win32_delete(const char *path);
int32_t mz_win32_file_exists(const char *path);
int64_t mz_win32_get_file_size(const char *path);
int32_t mz_win32_get_file_date(const char *path, time_t *modified_date, time_t *accessed_date, time_t *creation_date);
@ -48,6 +50,8 @@ int32_t mz_win32_is_dir(const char *path);
/***************************************************************************/
#define mz_os_rand mz_win32_rand
#define mz_os_rename mz_win32_rename
#define mz_os_delete mz_win32_delete
#define mz_os_file_exists mz_win32_file_exists
#define mz_os_get_file_size mz_win32_get_file_size
#define mz_os_get_file_date mz_win32_get_file_date