Query: euidaccess
OS: linux
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
EUIDACCESS(3) Linux Programmer's Manual EUIDACCESS(3)NAMEeuidaccess, eaccess - check effective user's permissions for a fileSYNOPSIS#define _GNU_SOURCE /* See feature_test_macros(7) */ #include <unistd.h> int euidaccess(const char *pathname, int mode); int eaccess(const char *pathname, int mode);DESCRIPTIONLike access(2), euidaccess() checks permissions and existence of the file identified by its argument pathname. However, whereas access(2), performs checks using the real user and group identifiers of the process, euidaccess() uses the effective identifiers. mode is a mask consisting of one or more of R_OK, W_OK, X_OK and F_OK, with the same meanings as for access(2). eaccess() is a synonym for euidaccess(), provided for compatibility with some other systems.RETURN VALUEOn success (all requested permissions granted), zero is returned. On error (at least one bit in mode asked for a permission that is denied, or some other error occurred), -1 is returned, and errno is set appropriately.ERRORSAs for access(2).VERSIONSThe eaccess() function was added to glibc in version 2.4.CONFORMING TOThese functions are nonstandard. Some other systems have an eaccess() function.SEE ALSOaccess(2), chmod(2), chown(2), faccessat(2), open(2), setgid(2), setuid(2), stat(2), credentials(7), path_resolution(7)COLOPHONThis page is part of release 3.27 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. 2010-09-10 EUIDACCESS(3)
Related Man Pages |
---|
euidaccess(3) - x11r4 |
euidaccess(3) - v7 |
euidaccess(3) - minix |
euidaccess(3) - mojave |
euidaccess(3) - osx |
Similar Topics in the Unix Linux Community |
---|
Ask Linux.com: Perplexing permissions, beaucoup browsers |