COPY
metohd implementation.
@author Pier Fumagalli
See {@link TransferManager} for more information about creating transfers.
@see TransferManager#copy(String,String,String,String) @see TransferManager#copy(com.amazonaws.services.s3.model.CopyObjectRequest)This implementation is based on Arnout Kuiper's initial design document, the following mailing list discussions, and the copyfile/copydir tasks.
@since Ant 1.2 @ant.task category="filesystem"The following features are supported:
Examples:
task(mydoc, type:Copy) { from 'src/main/doc' into 'build/target/doc' } task(initconfig, type:Copy) { from('src/main/config') { include '**/*.properties' include '**/*.xml' filter(ReplaceTokens, tokens:[version:'2.3.1']) } from('src/main/config') { exclude '**/*.properties', '**/*.xml' } from('src/main/languages') { rename 'EN_US_(*.)', '$1' } into 'build/target/config' exclude '**/*.bak' }@author Steve Appling
-R <index1,index2-index4,...> Specify list of columns to copy. First and last are valid indexes. (default none)
-V Invert matching sense (i.e. copy all non-specified columns)@author Len Trigg (trigg@cs.waikato.ac.nz) @version $Revision: 6996 $
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|