A <PLFileSet> is a special form of a <fileset> which can be used to extract files from a procedure library.
| Attribute | Description | Type | Requirement | Default value |
|---|---|---|---|---|
| src | Specify a PL file whose contents will be extracted. | File | Required | No default value |
None
<!-- Selector has to be declared in build.xml -->
<target name="copy">
<copy todir="destDir">
<plfileset src="${DLC}/gui/adeuib.pl" includes="**/*.r" />
</copy>
</target>
Will extract any .r files from $DLC/gui/adeuib.pl to destDir