ACCESS.2
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:3k
源码类别:

操作系统开发

开发平台:

C/C++

  1. ACCESS(2)                 Minix Programmer's Manual                  ACCESS(2)
  2. NAME
  3.      access - determine accessibility of file
  4. SYNOPSIS
  5.      #include <sys/types.h>
  6.      #include <unistd.h>
  7.      #define R_OK   4   /* test for read permission */
  8.      #define W_OK   2   /* test for write permission */
  9.      #define X_OK   1   /* test for execute (search) permission */
  10.      #define F_OK   0   /* test for presence of file */
  11.      int access(const char *path, mode_t mode)
  12. DESCRIPTION
  13.      Access checks the given file path for accessibility  according  to  mode,
  14.      which  is  an  inclusive  or of the bits R_OK, W_OK and X_OK.  Specifying
  15.      mode as F_OK (i.e., 0) tests whether the directories leading to the  file
  16.      can be searched and the file exists.
  17.      The real user ID and the group access list (including the real group  ID)
  18.      are  used  in  verifying  permission,  so  this call is useful to set-UID
  19.      programs.
  20.      Notice that only access bits are checked.  A directory may  be  indicated
  21.      as  writable  by  access, but an attempt to open it for writing will fail
  22.      (although files may be created there); a file may  look  executable,  but
  23.      execve will fail unless it is in proper format.
  24. RETURN VALUE
  25.      If path cannot be found or if any of the desired access modes  would  not
  26.      be granted, then a -1 value is returned; otherwise a 0 value is returned.
  27. ERRORS
  28.      Access to the file is denied if one or more of the following are true:
  29.      [ENOTDIR]      A component of the path prefix is not a directory.
  30.      [ENAMETOOLONG] The path name exceeds PATH_MAX characters.
  31.      [ENOENT]       The named file does not exist.
  32.      [EACCES]       Search permission is denied for a component  of  the  path
  33.                     prefix.
  34.      [ELOOP]        Too many symbolic links were  encountered  in  translating
  35.                     the pathname.  (Minix-vmd)
  36. 4BSD                              May 22, 1986                               1
  37. ACCESS(2)                 Minix Programmer's Manual                  ACCESS(2)
  38.      [EROFS]        Write access is requested for a file on a  read-only  file
  39.                     system.
  40.      [EACCES]       Permission bits  of  the  file  mode  do  not  permit  the
  41.                     requested  access,  or  search  permission  is denied on a
  42.                     component of the path prefix.  The owner  of  a  file  has
  43.                     permission  checked  with  respect  to the ``owner'' read,
  44.                     write, and execute mode bits, members of the file's  group
  45.                     other  than the owner have permission checked with respect
  46.                     to  the  ``group''  mode  bits,  and   all   others   have
  47.                     permissions  checked  with  respect  to the ``other'' mode
  48.                     bits.
  49.      [EFAULT]       Path points outside the process's allocated address space.
  50.      [EIO]          An I/O error occurred while reading from or writing to the
  51.                     file system.
  52. SEE ALSO
  53.      chmod(2), stat(2).
  54. 4BSD                              May 22, 1986                               2