![]() |
vitasdk
Documentation of the vitasdk
|
Exports for User. More...
Functions | |
| int | sceIoMkdir (const char *dir, SceMode mode) |
| Make a directory file. | |
| int | sceIoRmdir (const char *path) |
| Remove a directory file. | |
| int | sceIoGetstat (const char *file, SceIoStat *stat) |
| Get the status of a file. | |
| int | sceIoGetstatByFd (SceUID fd, SceIoStat *stat) |
| Get the status of a file descriptor. | |
| int | sceIoChstat (const char *file, SceIoStat *stat, int bits) |
| Change the status of a file. | |
| int | sceIoChstatByFd (SceUID fd, const SceIoStat *buf, unsigned int cbit) |
| Change the status of a file descriptor. | |
Exports for User.
Include the header file in your project:
| int sceIoMkdir | ( | const char * | dir, |
| SceMode | mode | ||
| ) |
Make a directory file.
| dir | - The path to the directory |
| mode | - Access mode (One or more SceIoAccessMode). |
| int sceIoRmdir | ( | const char * | path | ) |
Remove a directory file.
| path | - Removes a directory file pointed by the string path |
| int sceIoGetstat | ( | 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 sceIoChstat | ( | 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. |