![]() |
vitasdk
Documentation of the vitasdk
|
Exports for Kernel. More...
Functions | |
| int | ksceIoMkdir (const char *dir, SceMode mode) |
| Make a directory file. | |
| int | ksceIoRmdir (const char *path) |
| Remove a directory file. | |
| int | ksceIoGetstat (const char *file, SceIoStat *stat) |
| Get the status of a file. | |
| int | ksceIoGetstatByFd (SceUID fd, SceIoStat *stat) |
| Get the status of a file descriptor. | |
| int | ksceIoChstat (const char *file, SceIoStat *stat, int bits) |
| Change the status of a file. | |
| int | ksceIoChstatByFd (SceUID fd, SceIoStat *stat, int bits) |
| Change the status of a file descriptor. | |
Exports for Kernel.
Include the header file in your project:
Link the library to the executable:
| 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. |