PathToFileSet¶
Coverts a path to a fileset.
This is useful if you have a path but need to use a fileset as input in a phing task.
Example
=======
```
<path id="modified.sources.path" dir="C:\Path\to\phing\classes\phing\" />
<pathtofileset name="modified.sources.fileset"
pathrefid="modified.sources.path"
dir="." />
<copy todir="C:\Path\to\phing\docs\api">
<mapper type="glob" from="*.php" to="*.php.bak" />
<fileset refid="modified.sources.fileset" />
</copy>
```
« More »