The GlobMapper
works like the copy
command in
DOS:
<copy todir="/tmp"> <mapper type="glob" from="*.php" to="*.php.bak"/> <fileset refid="someid" /> </copy>
This will change the extension of all files matching the pattern
*.php
to .php.bak
.
Table F.7: The globmapper mapper can take the following extra attributes.
Name | Type | Description | Default | Required |
---|---|---|---|---|
handledirsep | String | If this is specified, the mapper will ignore the difference between the normal directory separator characters - \ and /. This attribute is useful for cross-platform build files. | false | No |
casesensitive | Boolean | If this is false, the mapper will ignore case when matching the glob pattern. | true | No |