UTIME.2
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:2k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. UTIME(2)                  Minix Programmer's Manual                   UTIME(2)
  2. NAME
  3.      utime - set file times
  4. SYNOPSIS
  5.      #include <sys/types.h>
  6.      #include <utime.h>
  7.      int utime(const char *file, struct utimbuf *times)
  8. DESCRIPTION
  9.      The utime call uses the "accessed" and "updated" times from  the  utimbuf
  10.      structure pointed to by times to set the corresponding recorded times for
  11.      file.
  12.      Struct utimbuf is defined in <utime.h> as follows:
  13.           struct utimbuf {
  14.               time_t    actime;     /* access time */
  15.               time_t    modtime;    /* modification time */
  16.           };
  17.      The caller must be the owner of the file or the super-user.  The  "inode-
  18.      changed" time of the file is set to the current time.
  19. RETURN VALUE
  20.      Upon successful completion, a value of 0 is returned.  Otherwise, a value
  21.      of -1 is returned and errno is set to indicate the error.
  22. ERRORS
  23.      Utime will fail if one or more of the following are true:
  24.      [ENOTDIR]      A component of the path prefix is not a directory.
  25.      [EINVAL]       The pathname contains a character with the high-order  bit
  26.                     set.
  27.      [ENAMETOOLONG] The path name exceeds PATH_MAX characters.
  28.      [ENOENT]       The named file does not exist.
  29.      [ELOOP]        Too many symbolic links were  encountered  in  translating
  30.                     the pathname.  (Minix-vmd)
  31.      [EPERM]        The process is not super-user and not  the  owner  of  the
  32.                     file.
  33.      [EACCES]       Search permission is denied for a component  of  the  path
  34.                     prefix.
  35. 4BSD                             August 26, 1985                             1
  36. UTIME(2)                  Minix Programmer's Manual                   UTIME(2)
  37.      [EROFS]        The file system containing the file is mounted read-only.
  38.      [EFAULT]       File or  times  points  outside  the  process's  allocated
  39.                     address space.
  40.      [EIO]          An  I/O  error  occurred  while  reading  or  writing  the
  41.                     affected inode.
  42. SEE ALSO
  43.      stat(2).
  44. 4BSD                             August 26, 1985                             2