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

操作系统开发

开发平台:

WINDOWS

  1. ." Copyright (c) 1983 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. ." @(#)mkdir.2 6.4 (Berkeley) 8/26/85
  6. ."
  7. .TH MKDIR 2 "August 26, 1985"
  8. .UC 5
  9. .SH NAME
  10. mkdir - make a directory file
  11. .SH SYNOPSIS
  12. .nf
  13. .ft B
  14. #include <sys/types.h>
  15. #include <sys/stat.h>
  16. int mkdir(const char *fIpathfP, mode_t fImodefP)
  17. .fi
  18. .ft R
  19. .SH DESCRIPTION
  20. .B Mkdir
  21. creates a new directory file with name
  22. .IR path .
  23. The mode of the new file
  24. is initialized from
  25. .IR mode .
  26. (The protection part of the mode
  27. is modified by the process's mode mask; see
  28. .BR umask (2)).
  29. .PP
  30. The directory's owner ID is set to the process's effective user ID.
  31. The directory's group ID is set to that of the parent directory in
  32. which it is created.
  33. .PP
  34. The low-order 9 bits of mode are modified by the process's
  35. file mode creation mask: all bits set in the process's file mode
  36. creation mask are cleared.  See
  37. .BR umask (2).
  38. .SH "RETURN VALUE
  39. A 0 return value indicates success.  A -1 return value
  40. indicates an error, and an error code is stored in
  41. .B errno.
  42. .SH "ERRORS
  43. .B Mkdir
  44. will fail and no directory will be created if:
  45. .TP 15
  46. [ENOTDIR]
  47. A component of the path prefix is not a directory.
  48. .TP 15
  49. [ENAMETOOLONG]
  50. The path name exceeds PATH_MAX characters.
  51. .TP 15
  52. [ENOENT]
  53. A component of the path prefix does not exist.
  54. .TP 15
  55. [EACCES]
  56. Search permission is denied for a component of the path prefix.
  57. .TP 15
  58. [ELOOP]
  59. Too many symbolic links were encountered in translating the pathname.
  60. (Minix-vmd)
  61. .TP 15
  62. [EROFS]
  63. The named file resides on a read-only file system.
  64. .TP 15
  65. [EEXIST]
  66. The named file exists.
  67. .TP 15
  68. [ENOSPC]
  69. The directory in which the entry for the new directory is being placed
  70. cannot be extended because there is no space left on the file
  71. system containing the directory.
  72. .TP 15
  73. [ENOSPC]
  74. The new directory cannot be created because there
  75. there is no space left on the file
  76. system that will contain the directory.
  77. .TP 15
  78. [ENOSPC]
  79. There are no free inodes on the file system on which the
  80. directory is being created.
  81. .ig
  82. .TP 15
  83. [EDQUOT]
  84. The directory in which the entry for the new directory
  85. is being placed cannot be extended because the
  86. user's quota of disk blocks on the file system
  87. containing the directory has been exhausted.
  88. .TP 15
  89. [EDQUOT]
  90. The new directory cannot be created because the user's
  91. quota of disk blocks on the file system that will
  92. contain the directory has been exhausted.
  93. .TP 15
  94. [EDQUOT]
  95. The user's quota of inodes on the file system on
  96. which the directory is being created has been exhausted.
  97. ..
  98. .TP 15
  99. [EIO]
  100. An I/O error occurred while making the directory entry or allocating the inode.
  101. .TP 15
  102. [EIO]
  103. An I/O error occurred while reading from or writing to the file system.
  104. .TP 15
  105. [EFAULT]
  106. .I Path
  107. points outside the process's allocated address space.
  108. .SH "SEE ALSO"
  109. .BR chmod (2),
  110. .BR stat (2),
  111. .BR umask (2).