PLFileSet - niandy/pct GitHub Wiki
A special Fileset meant to extract files from a procedure library.
Attribute | Description | Default value |
---|---|---|
src ‡ | Specify a PL file whose contents will be extracted | None |
† Only one of those attributes is mandatory ‡ Mandatory attribute
None
<!-- Don't forget to declare types -->
<typedef resource="types.properties" />
<target name="copy">
<copy todir="destDir">
<plfileset src="${DLC}/gui/adeuib.pl" includes="**/*.r" />
<!-- You can mix plfilesets with any other fileset type -->
<fileset dir="build" includes="**/*.r" />
</copy>
</target>
Will extract any .r files from $DLC/gui/adeuib.pl
to destDir