mkdir.html 732 B

123456789101112131415161718192021222324252627282930313233343536
  1. <html>
  2. <head>
  3. <title>mkdir</title>
  4. <body bgcolor=#ffffff>
  5. <h2 align=center>mkdir</h2>
  6. <h4 align=center>OS/161 Reference Manual</h4>
  7. <h3>Name</h3>
  8. mkdir - create directory
  9. <h3>Synopsis</h3>
  10. /bin/mkdir <em>directory</em>
  11. <h3>Description</h3>
  12. mkdir creates the named directory. All intermediate components must
  13. already exist. If the named directory already exists, an error occurs.
  14. <h3>Requirements</h3>
  15. mkdir uses the following syscalls:
  16. <ul>
  17. <li> <A HREF=../syscall/mkdir.html>mkdir</A>
  18. <li> <A HREF=../syscall/write.html>write</A>
  19. <li> <A HREF=../syscall/_exit.html>_exit</A>
  20. </ul>
  21. mkdir should function properly once the file system assignment is
  22. completed.
  23. <h3>See Also</h3>
  24. <A HREF=rmdir.html>rmdir</A>
  25. </body>
  26. </html>