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 1.0 KiB

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