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.

deltree.html 1.2 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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>Deltree Task</title>
  6. </head>
  7. <body>
  8. <h2><a name="deltree">Deltree</a></h2>
  9. <h3><i>Deprecated</i></h3>
  10. <p><i>This task has been deprecated. Use the Delete task instead.</i></p>
  11. <h3>Description</h3>
  12. <p>Deletes a directory with all its files and subdirectories.</p>
  13. <h3>Parameters</h3>
  14. <table border="1" cellpadding="2" cellspacing="0">
  15. <tr>
  16. <td valign="top"><b>Attribute</b></td>
  17. <td valign="top"><b>Description</b></td>
  18. <td align="center" valign="top"><b>Required</b></td>
  19. </tr>
  20. <tr>
  21. <td valign="top">dir</td>
  22. <td valign="top">the directory to delete.</td>
  23. <td valign="top" align="center">Yes</td>
  24. </tr>
  25. </table>
  26. <h3>Examples</h3>
  27. <pre> &lt;deltree dir=&quot;dist&quot;/&gt;</pre>
  28. <p>deletes the directory <code>dist</code>, including its files and
  29. subdirectories.</p>
  30. <pre> &lt;deltree dir=&quot;${dist}&quot;/&gt;</pre>
  31. <p>deletes the directory <code>${dist}</code>, including its files and
  32. subdirectories.</p>
  33. <hr><p align="center">Copyright &copy; 2000-2001,2004-2005 The Apache Software Foundation. All rights
  34. Reserved.</p>
  35. </body>
  36. </html>