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.

dirname.html 1.6 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Dirname Task</title>
  5. </head>
  6. <body>
  7. <h2><a name="echo">Dirname</a></h2>
  8. <h3>Description</h3>
  9. <p>
  10. Task to determine the directory path of a specified file.
  11. </p>
  12. <p>
  13. When this task executes, it will set the specified property to the
  14. value of the specified file (or directory) up to, but not including,
  15. the last path element. If the specified file is a path that ends in a
  16. filename, the filename will be dropped. If the specified file is just
  17. a filename, the directory will be the current directory.
  18. </p>
  19. <h3>Parameters</h3>
  20. <table border="1" cellpadding="2" cellspacing="0">
  21. <tr>
  22. <td valign="top"><b>Attribute</b></td>
  23. <td valign="top"><b>Description</b></td>
  24. <td align="center" valign="top"><b>Required</b></td>
  25. </tr>
  26. <tr>
  27. <td valign="top">file</td>
  28. <td valign="top">The path to take the dirname of.</td>
  29. <td valign="top" align="center">Yes</td>
  30. </tr>
  31. <tr>
  32. <td valign="top">property</td>
  33. <td valign="top">The name of the property to set.</td>
  34. <td valign="top" align="center">Yes</td>
  35. </tr>
  36. </table>
  37. <h3>Examples</h3>
  38. <pre> &lt;dirname property=&quot;antfile.dir&quot; file=&quot;${ant.file}&quot;/&gt;</pre>
  39. will set <code>antfile.dir</code> to the directory path for
  40. <code>${ant.file}</code>.
  41. <pre> &lt;dirname property=&quot;foo.dirname&quot; file=&quot;foo.txt&quot;/&gt;</pre>
  42. will set <code>foo.dirname</code> to the project's basedir.</p>
  43. <hr>
  44. <p align="center">Copyright &copy; 2002,2004 The Apache Software Foundation.
  45. All rights Reserved.</p>
  46. </body>
  47. </html>