You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

mkdir.html 992 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Ant User Manual</title>
  5. </head>
  6. <body>
  7. <h2><a name="mkdir">Mkdir</a></h2>
  8. <h3>Description</h3>
  9. <p>Creates a directory. Also non-existent parent directories are created, when
  10. necessary.</p>
  11. <h3>Parameters</h3>
  12. <table border="1" cellpadding="2" cellspacing="0">
  13. <tr>
  14. <td valign="top"><b>Attribute</b></td>
  15. <td valign="top"><b>Description</b></td>
  16. <td align="center" valign="top"><b>Required</b></td>
  17. </tr>
  18. <tr>
  19. <td valign="top">dir</td>
  20. <td valign="top">the directory to create.</td>
  21. <td align="center" valign="top">Yes</td>
  22. </tr>
  23. </table>
  24. <h3>Examples</h3>
  25. <pre>&lt;mkdir dir=&quot;${dist}&quot;/&gt;</pre>
  26. <p>creates a directory <code>${dist}</code>.</p>
  27. <pre>&lt;mkdir dir=&quot;${dist}/lib&quot;/&gt;</pre>
  28. <p>creates a directory <code>${dist}/lib</code>.</p>
  29. <hr>
  30. <p align="center">Copyright &copy; 2000,2001 Apache Software Foundation. All rights
  31. Reserved.</p>
  32. </body>
  33. </html>