Browse Source

Put the old cruft back in (and devote some otherwise better-used energy

on cleaning it up).
PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271224 13f79535-47bb-0310-9956-ffa450edef68
master
Diane Holt 23 years ago
parent
commit
77f2c0563f
1 changed files with 40 additions and 0 deletions
  1. +40
    -0
      docs/manual/CoreTasks/delete.html

+ 40
- 0
docs/manual/CoreTasks/delete.html View File

@@ -70,6 +70,46 @@ To remove empty directories, use the <code>includeEmptyDirs</code> attribute.
using filesets. Default is &quot;false&quot;.</td>
<td align="center" valign="top">No</td>
</tr>
<tr>
<td valign="top">includes</td>
<td valign="top"><em>Deprecated.</em> Use <code>&lt;fileset&gt;</code>.
Comma-separated list of patterns of
files that must be deleted. All files are relative to the directory
specified in <code>dir</code>.
</td>
<td valign="top" align="center">No</td>
</tr>
<tr>
<td valign="top">includesfile</td>
<td valign="top"><em>Deprecated.</em> Use <code>&lt;fileset&gt;</code>.
The name of a file. Each line of
this file is taken to be an include pattern</td>
<td valign="top" align="center">No</td>
</tr>
<tr>
<td valign="top">excludes</td>
<td valign="top"><em>Deprecated.</em> Use <code>&lt;fileset&gt;</code>.
Comma-separated list of patterns of
files that must be excluded from the deletion list.
All files are relative to the directory specified in <code>dir</code>.
No files (except default excludes) are excluded when omitted.</td>
<td valign="top" align="center">No</td>
</tr>
<tr>
<td valign="top">excludesfile</td>
<td valign="top"><em>Deprecated.</em> Use <code>&lt;fileset&gt;</code>.
The name of a file. Each line of
this file is taken to be an exclude pattern</td>
<td valign="top" align="center">No</td>
</tr>
<tr>
<td valign="top">defaultexcludes</td>
<td valign="top"> Use <code>&lt;fileset&gt;</code>.
Indicates whether default excludes
should be used or not (&quot;yes&quot;/&quot;no&quot;). Default excludes
are used when omitted.</td>
<td valign="top" align="center">No</td>
</tr>
</table>
<h3>Examples</h3>
<pre> &lt;delete file=&quot;/lib/ant.jar&quot;/&gt;</pre>


Loading…
Cancel
Save