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

操作系统开发

开发平台:

WINDOWS

  1. ." Copyright (c) 1980 Regents of the University of California.
  2. ." All rights reserved.  The Berkeley software License Agreement
  3. ." specifies the terms and conditions for redistribution.
  4. ."
  5. ." @(#)utimes.2 6.4 (Berkeley) 8/26/85
  6. ."
  7. .TH UTIME 2 "August 26, 1985"
  8. .UC 4
  9. .SH NAME
  10. utime - set file times
  11. .SH SYNOPSIS
  12. .nf
  13. .ft B
  14. #include <sys/types.h>
  15. #include <utime.h>
  16. int utime(const char *fIfilefP, struct utimbuf *fItimesfP)
  17. .fi
  18. .SH DESCRIPTION
  19. The
  20. .B utime
  21. call
  22. uses the
  23. *(lqaccessed*(rq and *(lqupdated*(rq times
  24. from the utimbuf structure pointed to by
  25. .I times
  26. to set the corresponding recorded times for
  27. .I file.
  28. .PP
  29. Struct utimbuf is defined in <utime.h> as follows:
  30. .PP
  31. .RS
  32. .nf
  33. .ta +0.4i +0.8i +1.0i
  34. struct utimbuf {
  35. time_t actime; /* access time */
  36. time_t modtime; /* modification time */
  37. };
  38. .fi
  39. .RE
  40. .PP
  41. The caller must be the owner of the file or the super-user.
  42. The *(lqinode-changed*(rq time of the file is set to the current time.
  43. .SH "RETURN VALUE
  44. Upon successful completion, a value of 0 is returned.
  45. Otherwise, a value of -1 is returned and
  46. .B errno
  47. is set to indicate the error.
  48. .SH "ERRORS
  49. .B Utime
  50. will fail if one or more of the following are true:
  51. .TP 15
  52. [ENOTDIR]
  53. A component of the path prefix is not a directory.
  54. .TP 15
  55. [EINVAL]
  56. The pathname contains a character with the high-order bit set.
  57. .TP 15
  58. [ENAMETOOLONG]
  59. The path name exceeds PATH_MAX characters.
  60. .TP 15
  61. [ENOENT]
  62. The named file does not exist.
  63. .TP 15
  64. [ELOOP]
  65. Too many symbolic links were encountered in translating the pathname.
  66. (Minix-vmd)
  67. .TP 15
  68. [EPERM]
  69. The process is not super-user and not the owner of the file.
  70. .TP 15
  71. [EACCES]
  72. Search permission is denied for a component of the path prefix.
  73. .TP 15
  74. [EROFS]
  75. The file system containing the file is mounted read-only.
  76. .TP 15
  77. [EFAULT]
  78. .I File
  79. or fItimesfP points outside the process's allocated address space.
  80. .TP 15
  81. [EIO]
  82. An I/O error occurred while reading or writing the affected inode.
  83. .SH SEE ALSO
  84. .BR stat (2).