int |
FilePath.archive(ArchiverFactory factory,
OutputStream os,
DirScanner scanner) |
Archives this directory into the specified archive format, to the given OutputStream , by using
DirScanner to choose what files to include.
|
int |
FilePath.archive(ArchiverFactory factory,
OutputStream os,
DirScanner scanner,
String verificationRoot,
OpenOption... openOptions) |
Archives this directory into the specified archive format, to the given OutputStream , by using
DirScanner to choose what files to include.
|
int |
FilePath.copyRecursiveTo(DirScanner scanner,
FilePath target,
String description) |
Copies files according to a specified scanner to a target node.
|
int |
FilePath.copyRecursiveTo(DirScanner scanner,
FilePath target,
String description,
FilePath.TarCompression compression) |
Copies files according to a specified scanner to a target node.
|
int |
FilePath.tar(OutputStream out,
DirScanner scanner) |
Uses the given scanner on 'this' directory to list up files and then archive it to a tar stream.
|
int |
FilePath.zip(OutputStream out,
DirScanner scanner) |
Uses the given scanner on 'this' directory to list up files and then archive it to a zip stream.
|
int |
FilePath.zip(OutputStream out,
DirScanner scanner,
String verificationRoot,
String prefix,
OpenOption... openOptions) |
Uses the given scanner on 'this' directory to list up files and then archive it to a zip stream.
|