vitasdk
Documentation of the vitasdk
|
Exports for Kernel.
Include the header file in your project:
Link the library to the executable:
Functions | |
int | ksceIoMkdir (const char *dir, SceMode mode) |
Make a directory file. More... | |
int | ksceIoRmdir (const char *path) |
Remove a directory file. More... | |
int | ksceIoGetstat (const char *file, SceIoStat *stat) |
Get the status of a file. More... | |
int | ksceIoGetstatByFd (SceUID fd, SceIoStat *stat) |
Get the status of a file descriptor. More... | |
int | ksceIoChstat (const char *file, SceIoStat *stat, int bits) |
Change the status of a file. More... | |
int | ksceIoChstatByFd (SceUID fd, SceIoStat *stat, int bits) |
Change the status of a file descriptor. More... | |
int ksceIoMkdir | ( | const char * | dir, |
SceMode | mode | ||
) |
Make a directory file.
dir | - The path to the directory |
mode | - Access mode (One or more SceIoAccessMode). |
int ksceIoRmdir | ( | const char * | path | ) |
Remove a directory file.
path | - Removes a directory file pointed by the string path |
int ksceIoGetstat | ( | const char * | file, |
SceIoStat * | stat | ||
) |
Get the status of a file.
file | - The path to the file. |
stat | - A pointer to a SceIoStat structure. |
Get the status of a file descriptor.
fd | - The file descriptor. |
stat | - A pointer to a SceIoStat structure. |
int ksceIoChstat | ( | const char * | file, |
SceIoStat * | stat, | ||
int | bits | ||
) |
Change the status of a file.
file | - The path to the file. |
stat | - A pointer to a SceIoStat structure. |
bits | - Bitmask defining which bits to change. |