Posts Tagged ‘access’

Wednesday, August 26th, 2009 at 23:58 | Comments Off
Categories: T

access – check user’s permissions for a file
USAGE
#include <unistd.h>

int access(const char *pathname, int mode);

DESCRIPTION
access() checks whether the process would be allowed to read, write or
test for [...]

Tuesday, August 25th, 2009 at 23:11 | Comments Off
Categories: A
TOP