@@ -92,6 +92,10 @@
Select files if they are readable.</li>
Select files if they are readable.</li>
<li><a href="#writable"><code><writable></code></a> -
<li><a href="#writable"><code><writable></code></a> -
Select files if they are writable.</li>
Select files if they are writable.</li>
<li><a href="#executable"><code><executable></code></a> -
Select files if they are executable.</li>
<li><a href="#symlink"><code><symlink></code></a> -
Select files if they are symlink.</li>
</ul>
</ul>
<h4><a name="containsselect">Contains Selector</a></h4>
<h4><a name="containsselect">Contains Selector</a></h4>
@@ -1009,7 +1013,7 @@
but the Java VM cannot detect this state, this selector will
but the Java VM cannot detect this state, this selector will
still select the file.</p>
still select the file.</p>
<h4><a name="writable ">Writable Selector</a></h4>
<h4><a name="symlink ">Writable Selector</a></h4>
<p>The <code><writable></code> selector selects only files
<p>The <code><writable></code> selector selects only files
that are writable. Ant only invokes
that are writable. Ant only invokes
@@ -1017,6 +1021,26 @@
but the Java VM cannot detect this state, this selector will
but the Java VM cannot detect this state, this selector will
still select the file.</p>
still select the file.</p>
<h4><a name="executable">Executable Selector</a></h4>
<p>The <code><executable></code> selector selects only files
that are executable. Ant only invokes
<code>java.nio.file.Files#isExecutable</code> so if a file is not executable
but the Java VM cannot detect this state, this selector will
still select the file.</p>
<p><em>Since Ant 1.10.0</em></p>
<h4><a name="symlink">Symlink Selector</a></h4>
<p>The <code><symlink></code> selector selects only files
that are symbolic links. Ant only invokes
<code>java.nio.file.Files#isSymbolicLink</code> so if a file
is a symbolic link but the Java VM cannot detect this state,
this selector will not select the file.</p>
<p><em>Since Ant 1.10.0</em></p>
<h4><a name="scriptselector">Script Selector</a></h4>
<h4><a name="scriptselector">Script Selector</a></h4>
<p>
<p>