vitasdk
Documentation of the vitasdk
stat.h
Go to the documentation of this file.
1 
7 #ifndef _PSP2_IO_STAT_H_
8 #define _PSP2_IO_STAT_H_
9 
10 #include <psp2/types.h>
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 
25 int sceIoMkdir(const char *dir, SceMode mode);
26 
33 int sceIoRmdir(const char *path);
34 
43 int sceIoGetstat(const char *file, SceIoStat *stat);
44 
54 
64 int sceIoChstat(const char *file, SceIoStat *stat, int bits);
65 
75 int sceIoChstatByFd(SceUID fd, const SceIoStat *buf, unsigned int cbit);
76 
77 #ifdef __cplusplus
78 }
79 #endif
80 
81 #endif /* _PSP2_IO_STAT_H_ */
82 
Structure to hold the status information about a file.
Definition: iofilemgr.h:127
int sceIoGetstat(const char *file, SceIoStat *stat)
Get the status of a file.
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.
int sceIoRmdir(const char *path)
Remove a directory file.
int sceIoGetstatByFd(SceUID fd, SceIoStat *stat)
Get the status of a file descriptor.
int sceIoMkdir(const char *dir, SceMode mode)
Make a directory file.
int SceUID
UIDs are used to describe many different kernel objects.
Definition: types.h:90
int SceMode
Mode for I/O functions.
Definition: types.h:87