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.1 KiB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Deltree Task</title>
  5. </head>
  6. <body>
  7. <h2><a name="deltree">Deltree</a></h2>
  8. <h3><i>Deprecated</i></h3>
  9. <p><i>This task has been deprecated. Use the Delete task instead.</i></p>
  10. <h3>Description</h3>
  11. <p>Deletes a directory with all its files and subdirectories.</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 delete.</td>
  22. <td valign="top" align="center">Yes</td>
  23. </tr>
  24. </table>
  25. <h3>Examples</h3>
  26. <pre> &lt;deltree dir=&quot;dist&quot;/&gt;</pre>
  27. <p>deletes the directory <code>dist</code>, including its files and
  28. subdirectories.</p>
  29. <pre> &lt;deltree dir=&quot;${dist}&quot;/&gt;</pre>
  30. <p>deletes the directory <code>${dist}</code>, including its files and
  31. subdirectories.</p>
  32. <hr><p align="center">Copyright &copy; 2001 Apache Software Foundation. All rights
  33. Reserved.</p>
  34. </body>
  35. </html>