* * $Log: pathops.c,v $ * Revision 1.5 2006/10/08 16:48:09 haraldkipp * Documentation fixed * * Revision 1.4 2006/10/05 17:22:35 haraldkipp * Fixes bug #1281167. Thanks to Jukka Holappa. * * Revision 1.3 2006/03/16 15:25:24 haraldkipp * Changed human readable strings from u_char to char to stop GCC 4 from * nagging about signedness. * * Revision 1.2 2006/01/05 16:52:23 haraldkipp * The argument for the FS_STATUS ioctl now uses an individual structure. * * Revision 1.1 2005/02/05 20:35:21 haraldkipp * Peanut added * * *
Functions | |
int | access (CONST char *path, int what) |
Check the accessibility of a file. | |
long | lseek (int fh, long pos, int whence) |
Reposition a file pointer. | |
int | rmdir (CONST char *path) |
Remove a directory. | |
int | unlink (CONST char *path) |
Remove a file entry. | |
int | stat (CONST char *path, struct stat *s) |
Get information about a specified file. | |
int | fstat (int fh, struct stat *s) |
Get information about an opened file. | |
int | mkdir (CONST char *path, int mode) |
Create a directory entry. |