N64FlashcartMenu
Loading...
Searching...
No Matches
fs.h
Go to the documentation of this file.
1#ifndef UTILS_FS_H__
2#define UTILS_FS_H__
3
4#include <stdbool.h>
5#include <stddef.h>
6#include <stdint.h>
7
8#define FS_SECTOR_SIZE (512)
9
24char *strip_fs_prefix(char *path);
25
34char *file_basename(char *path);
35
44bool file_exists(char *path);
45
54int64_t file_get_size(char *path);
55
65bool file_allocate(char *path, size_t size);
66
76bool file_fill(char *path, uint8_t value);
77
87bool file_has_extensions(char *path, const char *extensions[]);
88
97bool directory_exists(char *path);
98
107bool directory_create(char *path);
108
109#endif // UTILS_FS_H__
bool file_exists(char *path)
Checks if a file exists at the given path.
Definition fs.c:25
int64_t file_get_size(char *path)
Gets the size of the file at the given path.
Definition fs.c:31
bool file_fill(char *path, uint8_t value)
Fills a file with the specified value.
Definition fs.c:58
bool file_has_extensions(char *path, const char *extensions[])
Checks if a file has one of the specified extensions.
Definition fs.c:93
bool directory_create(char *path)
Creates a directory at the given path.
Definition fs.c:117
bool file_allocate(char *path, size_t size)
Allocates a file of the specified size at the given path.
Definition fs.c:39
bool directory_exists(char *path)
Checks if a directory exists at the given path.
Definition fs.c:111
char * strip_fs_prefix(char *path)
Strips the file system prefix from the given path.
Definition fs.c:11
char * file_basename(char *path)
Gets the basename of the given path.
Definition fs.c:20