Progress® OpenEdge® Compilation Tools

PLFileSet

Description

A <PLFileSet> is a special form of a <fileset> which can be used to extract files from a procedure library.

Parameters

Attribute Description Type Requirement Default value
src Specify a PL file whose contents will be extracted. File Required No default value

Parameters as nested elements

None

Examples

<!-- 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