8#define FS_SECTOR_SIZE (512)
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