C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
_access
 Description Example                     Up Contents Index Back
─────Run-Time Library───────────────────────────────────────────────────────
 
  Include:   <io.h>      Required only for function declarations
             <errno.h>   Required only for definition of errno constants
 
  Syntax:    int _access( char *pathname, int mode );
             mode: 00 (existence)         04 (read permission)
                   02 (write permission)  06 (read & write permission)
 
  Returns:   0 if <pathname> has <mode>, or -1 if it does not have the
             given mode or if it does not exist.
             errno: EACCES, ENOENT
 
  See also:  _stat, _chmod, _utime, _open
                                    -♦-