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

操作系统开发

开发平台:

C/C++

  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. ." @(#)rmdir.2 6.3 (Berkeley) 8/26/85
  6. ."
  7. .TH RMDIR 2 "August 26, 1985"
  8. .UC 5
  9. .SH NAME
  10. rmdir - remove a directory file
  11. .SH SYNOPSIS
  12. .nf
  13. .ft B
  14. #include <unistd.h>
  15. int rmdir(const char *fIpathfP)
  16. .fi
  17. .ft R
  18. .SH DESCRIPTION
  19. .B Rmdir
  20. removes a directory file
  21. whose name is given by
  22. .I path.
  23. The directory must not have any entries other
  24. than *(lq.*(rq and *(lq..*(rq.
  25. .SH "RETURN VALUE
  26. A 0 is returned if the remove succeeds; otherwise a -1 is
  27. returned and an error code is stored in the global location fIerrnofP|.
  28. .SH ERRORS
  29. The named file is removed unless one or more of the
  30. following are true:
  31. .TP 15
  32. [ENOTDIR]
  33. A component of the path is not a directory.
  34. .TP 15
  35. [ENAMETOOLONG]
  36. The path name exceeds PATH_MAX characters.
  37. .TP 15
  38. [ENOENT]
  39. The named directory does not exist.
  40. .TP 15
  41. [ELOOP]
  42. Too many symbolic links were encountered in translating the pathname.
  43. (Minix-vmd)
  44. .TP 15
  45. [ENOTEMPTY]
  46. The named directory contains files other than ``.'' and ``..'' in it.
  47. .TP 15
  48. [EACCES]
  49. Search permission is denied for a component of the path prefix.
  50. .TP 15
  51. [EACCES]
  52. Write permission is denied on the directory containing the link
  53. to be removed.
  54. .TP 15
  55. [EPERM]
  56. The directory containing the directory to be removed is marked sticky,
  57. and neither the containing directory nor the directory to be removed
  58. are owned by the effective user ID.
  59. .TP 15
  60. [EBUSY]
  61. The directory to be removed is the mount point
  62. for a mounted file system.
  63. .TP 15
  64. [EIO]
  65. An I/O error occurred while deleting the directory entry
  66. or deallocating the inode.
  67. .TP 15
  68. [EROFS]
  69. The directory entry to be removed resides on a read-only file system.
  70. .TP 15
  71. [EFAULT]
  72. .I Path
  73. points outside the process's allocated address space.
  74. .SH "SEE ALSO"
  75. .BR mkdir (2),
  76. .BR unlink (2).