LFC_ACCESS(3) | LFC Library Functions | LFC_ACCESS(3) |
lfc_access - check existence/accessibility of a file/directory
Under Unix:
#include <sys/types.h>
#include <unistd.h>
#include "lfc_api.h"
Under Windows/NT:
#include <sys/types.h>
#define R_OK 4
#define W_OK 2
#define X_OK 1
#define F_OK 0
#include "lfc_api.h"
int lfc_access (const char *path, int amode);
lfc_access checks in the name server database the existence or the accessibility of the file/directory path according to the bit pattern in amode using the real user ID.
This routine returns 0 if the operation was successful or -1 if the operation failed. In the latter case, serrno is set appropriately.
LCG Grid Deployment Team
$Date: 2011-02-18 08:03:13 +0100 (Fri, 18 Feb 2011) $ | LFC |