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

操作系统开发

开发平台:

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. ." @(#)stat.2 6.5 (Berkeley) 5/12/86
  6. ."
  7. .TH STAT 2 "May 12, 1986"
  8. .UC 4
  9. .SH NAME
  10. stat, lstat, fstat - get file status
  11. .SH SYNOPSIS
  12. .nf
  13. .ft B
  14. #include <sys/types.h>
  15. #include <sys/stat.h>
  16. .ta +54n
  17. int stat(const char *fIpathfP, struct stat *fIbuffP)
  18. int lstat(const char *fIpathfP, struct stat *fIbuffP) (Minix-vmd)
  19. int fstat(int fIfdfP, struct stat *fIbuffP)
  20. .fi
  21. .ft R
  22. .SH DESCRIPTION
  23. .B Stat
  24. obtains information about the file
  25. .IR path .
  26. Read, write or execute
  27. permission of the named file is not required, but all directories
  28. listed in the path name leading to the file must be reachable.
  29. .PP
  30. .B Lstat
  31. is like fBstatfP except in the case where the named file is a symbolic link,
  32. in which case
  33. .B lstat
  34. returns information about the link,
  35. while
  36. .B stat
  37. returns information about the file the link references.
  38. (Minix-vmd)
  39. .PP
  40. .B Fstat
  41. obtains the same information about an open file
  42. referenced by the argument descriptor, such as would
  43. be obtained by an fBopenfP call.  Pipe descriptors
  44. look like named pipes with a link count of zero.  The
  45. st_size field of pipes or named pipes shows the amount of
  46. bytes currently buffered in the pipe.
  47. .PP
  48. .I Buf
  49. is a pointer to a
  50. .B stat
  51. structure into which information is placed concerning the file.
  52. The contents of the structure pointed to by
  53. .I buf
  54. is as follows:
  55. .PP
  56. .if t .RS
  57. .nf
  58. .ta +0.4i +0.8i +1i
  59. struct stat {
  60. dev_t st_dev; /* device inode resides on */
  61. ino_t st_ino; /* this inode's number */
  62. mode_t st_mode; /* file mode, protection bits, etc. */
  63. nlink_t st_nlink; /* number or hard links to the file */
  64. uid_t st_uid; /* user-id of the file's owner */
  65. gid_t st_gid; /* group-id of the file's owner */
  66. dev_t st_rdev; /* the device type, for inode that is device */
  67. off_t st_size; /* total size of file */
  68. time_t st_atime; /* time of last access */
  69. time_t st_mtime; /* time of last data modification */
  70. time_t st_ctime; /* time of last file status change */
  71. };
  72. .fi
  73. .if t .RE
  74. .DT
  75. .PP
  76. .TP 12
  77. st_atime
  78. Time when file data was last read or modified.  Changed by the following system
  79. calls:
  80. .BR mknod (2),
  81. .BR utime (2),
  82. .BR read (2),
  83. and
  84. .BR write (2).
  85. For reasons of efficiency, 
  86. st_atime is not set when a directory
  87. is searched, although this would be more logical.
  88. .TP 12
  89. st_mtime
  90. Time when data was last modified.
  91. It is not set by changes of owner, group, link count, or mode.
  92. Changed by the following system calls:
  93. .BR mknod (2),
  94. .BR utime (2),
  95. .BR write (2).
  96. .TP 12
  97. st_ctime
  98. Time when file status was last changed.
  99. It is set both both by writing and changing the i-node.
  100. Changed by the following system calls:
  101. .BR chmod (2)
  102. .BR chown (2),
  103. .BR link (2),
  104. .BR mknod (2),
  105. .BR rename (2),
  106. .BR unlink (2),
  107. .BR utime (2),
  108. .BR write (2).
  109. .PP
  110. The file type information in fBst_modefP has bits:
  111. .PP
  112. .nf
  113. .in +5n
  114. .ta 1.6i 2.5i 3i
  115. #define S_IFMT 0170000 /* type of file */
  116. #define    S_IFIFO 0010000 /* named pipe */
  117. #define    S_IFCHR 0020000 /* character special */
  118. #define    S_IFDIR 0040000 /* directory */
  119. #define    S_IFBLK 0060000 /* block special */
  120. #define    S_IFREG 0100000 /* regular */
  121. #define    S_IFLNK 0120000 /* symbolic link (Minix-vmd) */
  122. .fi
  123. .in -5n
  124. .PP
  125. The mode bits 0007777 encode set-uid/gid bits and
  126. permission bits (see
  127. .BR chmod (2)).
  128. .SH "RETURN VALUE
  129. Upon successful completion a value of 0 is returned.
  130. Otherwise, a value of -1 is returned and
  131. .B errno
  132. is set to indicate the error.
  133. .SH "ERRORS
  134. .B Stat
  135. and
  136. .B lstat
  137. will fail if one or more of the following are true:
  138. .TP 15
  139. [ENOTDIR]
  140. A component of the path prefix is not a directory.
  141. .TP 15
  142. [ENAMETOOLONG]
  143. The path name exceeds PATH_MAX characters.
  144. .TP 15
  145. [ENOENT]
  146. The named file does not exist.
  147. .TP 15
  148. [EACCES]
  149. Search permission is denied for a component of the path prefix.
  150. .TP 15
  151. [ELOOP]
  152. Too many symbolic links were encountered in translating the pathname.
  153. (Minix-vmd)
  154. .TP 15
  155. [EFAULT]
  156. .I Buf
  157. or
  158. .I name
  159. points to an invalid address.
  160. .TP 15
  161. [EIO]
  162. An I/O error occurred while reading from or writing to the file system.
  163. .PP
  164. .B Fstat
  165. will fail if one or both of the following are true:
  166. .TP 15
  167. [EBADF]
  168. .I Fildes
  169. is not a valid open file descriptor.
  170. .TP 15
  171. [EFAULT]
  172. .I Buf
  173. points to an invalid address.
  174. .TP 15
  175. [EIO]
  176. An I/O error occurred while reading from or writing to the file system.
  177. .SH "SEE ALSO"
  178. .BR chmod (2),
  179. .BR chown (2),
  180. .BR utime (2).