mirror of
https://github.com/modmii/YAWM-ModMii-Edition.git
synced 2024-11-10 18:35:12 +01:00
8c0269a8bc
* "memalign is busted apparently" * accidentally used ES_GetTMDView * "static u32 cid" - hero of time
97 lines
1.4 KiB
C
97 lines
1.4 KiB
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "fileops.h"
|
|
#include "malloc.h"
|
|
|
|
bool FSOPFileExists(const char* file)
|
|
{
|
|
FILE* f;
|
|
f = fopen(file, "rb");
|
|
if (f)
|
|
{
|
|
fclose(f);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool FSOPFolderExists(const char* path)
|
|
{
|
|
DIR* dir;
|
|
dir = opendir(path);
|
|
if (dir)
|
|
{
|
|
closedir(dir);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
size_t FSOPGetFileSizeBytes(const char* path)
|
|
{
|
|
FILE* f;
|
|
size_t size = 0;
|
|
|
|
f = fopen(path, "rb");
|
|
if (!f)
|
|
return 0;
|
|
|
|
fseek(f, 0, SEEK_END);
|
|
size = ftell(f);
|
|
fclose(f);
|
|
|
|
return size;
|
|
}
|
|
|
|
void FSOPDeleteFile(const char* file)
|
|
{
|
|
if (!FSOPFileExists(file))
|
|
return;
|
|
|
|
remove(file);
|
|
}
|
|
|
|
void FSOPMakeFolder(const char* path)
|
|
{
|
|
if (FSOPFolderExists(path))
|
|
return;
|
|
|
|
char* pos = strchr(path, '/');
|
|
s32 current = pos - path;
|
|
current++;
|
|
pos = strchr(path + current, '/');
|
|
|
|
while (pos)
|
|
{
|
|
*pos = 0;
|
|
mkdir(path, S_IREAD | S_IWRITE);
|
|
*pos = '/';
|
|
|
|
current = pos - path;
|
|
current++;
|
|
pos = strchr(path + current, '/');
|
|
}
|
|
|
|
mkdir(path, S_IREAD | S_IWRITE);
|
|
}
|
|
|
|
s32 FSOPReadOpenFile(FILE* fp, void* buffer, u32 offset, u32 length)
|
|
{
|
|
fseek(fp, offset, SEEK_SET);
|
|
return fread(buffer, length, 1, fp);
|
|
}
|
|
|
|
s32 FSOPReadOpenFileA(FILE* fp, void** buffer, u32 offset, u32 length)
|
|
{
|
|
*buffer = memalign32(length);
|
|
if (!*buffer)
|
|
return -1;
|
|
|
|
s32 ret = FSOPReadOpenFile(fp, *buffer, offset, length);
|
|
if (ret < 0)
|
|
free(*buffer);
|
|
|
|
return ret;
|
|
}
|