unzipFile

fun unzipFile(zipFilePath: String, destDirPath: String): List<File>?

Unzip the file.

Return

the unzipped files

Parameters

zipFilePath

The path of ZIP file.

destDirPath

The path of destination directory.

Throws

if unzip unsuccessfully


fun unzipFile(zipFile: File, destDir: File): List<File>?

Unzip the file.

Return

the unzipped files

Parameters

zipFile

The ZIP file.

destDir

The destination directory.

Throws

if unzip unsuccessfully