@Incubating public interface ArchiveOperations
An instance of this type can be injected into a task, plugin or other object by annotating a public constructor or property getter method with javax.inject.Inject.
| Modifier and Type | Method | Description |
|---|---|---|
FileTree |
tarTree(Object tarPath) |
Creates a read-only
FileTree which contains the contents of the given TAR file, as defined by Project.tarTree(Object). |
FileTree |
zipTree(Object zipPath) |
Creates a read-only
FileTree which contains the contents of the given ZIP file, as defined by Project.zipTree(Object). |
FileTree zipTree(Object zipPath)
Creates a read-only FileTree which contains the contents of the given ZIP file, as defined by Project.zipTree(Object).
zipPath - The ZIP file. Evaluated as per Project.file(Object).FileTree tarTree(Object tarPath)
Creates a read-only FileTree which contains the contents of the given TAR file, as defined by Project.tarTree(Object).
tarPath - The TAR file. Evaluated as per Project.file(Object).