14 lines
368 B
C
14 lines
368 B
C
#ifndef NX_SHELL_FS_H
|
|
#define NX_SHELL_FS_H
|
|
|
|
#include <switch.h>
|
|
|
|
int FS_MakeDir(const char *path);
|
|
int FS_RecursiveMakeDir(const char * dir);
|
|
bool FS_FileExists(const char *path);
|
|
bool FS_DirExists(const char *path);
|
|
const char *FS_GetFileExt(const char *filename);
|
|
char *FS_GetFileModifiedTime(const char *filename);
|
|
u64 FS_GetFileSize(const char *filename);
|
|
|
|
#endif |