2002-03-20 02:48:15 +00:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Language" content="en-us">
|
2005-03-07 18:09:10 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="../stylesheets/style.css"/>
|
2002-03-20 02:48:15 +00:00
|
|
|
<title>Basename Task</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<h2><a name="echo">Basename</a></h2>
|
|
|
|
<h3>Description</h3>
|
|
|
|
<p>
|
|
|
|
Task to determine the basename of a specified file, optionally minus a
|
|
|
|
specified suffix.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
When this task executes, it will set the specified property to the
|
|
|
|
value of the last path element of the specified file. If <code>file</code> is a
|
|
|
|
directory, the basename will be the last directory element. If
|
|
|
|
<code>file</code> is a full-path, relative-path, or simple filename,
|
|
|
|
the basename will be the simple file name, without any directory elements.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<h3>Parameters</h3>
|
|
|
|
<table border="1" cellpadding="2" cellspacing="0">
|
|
|
|
<tr>
|
|
|
|
<td valign="top"><b>Attribute</b></td>
|
|
|
|
<td valign="top"><b>Description</b></td>
|
|
|
|
<td align="center" valign="top"><b>Required</b></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">file</td>
|
|
|
|
<td valign="top">The path to take the basename of.</td>
|
|
|
|
<td valign="top" align="center">Yes</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">property</td>
|
|
|
|
<td valign="top">The name of the property to set.</td>
|
|
|
|
<td valign="top" align="center">Yes</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">suffix</td>
|
|
|
|
<td valign="top">The suffix to remove from the resulting basename
|
2002-03-20 03:11:48 +00:00
|
|
|
(specified either with or without the "<code>.</code>").</td>
|
2002-03-20 02:48:15 +00:00
|
|
|
<td valign="top" align="center">No</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h3>Examples</h3>
|
2005-03-08 18:17:40 +00:00
|
|
|
<blockquote><pre>
|
|
|
|
<basename property="jar.filename" file="${lib.jarfile}"/>
|
|
|
|
</pre></blockquote>
|
2002-03-20 02:48:15 +00:00
|
|
|
will set <code>jar.filename</code> to
|
|
|
|
<code>myjar.jar</code>, if <code>lib.jarfile</code> is defined as either a
|
|
|
|
full-path filename (eg., <code>/usr/local/lib/myjar.jar</code>),
|
|
|
|
a relative-path filename (eg., <code>lib/myjar.jar</code>),
|
|
|
|
or a simple filename (eg., <code>myjar.jar</code>).
|
2005-03-08 18:17:40 +00:00
|
|
|
<blockquote><pre>
|
|
|
|
<basename property="cmdname" file="D:/usr/local/foo.exe"
|
2005-03-09 11:30:12 +00:00
|
|
|
suffix=".exe"/>
|
2005-03-08 18:17:40 +00:00
|
|
|
</pre></blockquote>
|
2002-03-20 02:48:15 +00:00
|
|
|
will set <code>cmdname</code> to <code>foo</code>.
|
2005-03-08 18:17:40 +00:00
|
|
|
<blockquote><pre>
|
|
|
|
<property environment="env"/>
|
|
|
|
<basename property="temp.dirname" file="${env.TEMP}"/>
|
|
|
|
</pre></blockquote>
|
2002-03-20 02:48:15 +00:00
|
|
|
|
|
|
|
will set <code>temp.dirname</code> to the last directory element of
|
|
|
|
the path defined for the <code>TEMP</code> environment variable.</p>
|
|
|
|
|
|
|
|
<hr>
|
2005-03-07 18:09:10 +00:00
|
|
|
<p align="center">Copyright © 2002,2004-2005 The Apache Software Foundation.
|
2002-03-20 02:48:15 +00:00
|
|
|
All rights Reserved.</p>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|