api / org.gradle.kotlin.dsl / InitScriptApi / zipTree

zipTree

fun zipTree(zipPath: Any): FileTree

Creates a new FileTree which contains the contents of the given ZIP file.

The given zipPath path is evaluated as per KotlinInitScript.file

The returned file tree is lazy, so that it scans for files only when the contents of the file tree are queried. The file tree is also live, so that it scans for files each time the contents of the file tree are queried.

You can combine this method with the KotlinInitScript.copy method to unzip a ZIP file.

Parameters

zipPath - The ZIP file. Evaluated as per KotlinInitScript.file.

Return
The file tree.