unzipFileByKeyword

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

Unzip the file by keyword.

Return

the unzipped files

Parameters

zipFilePath

The path of ZIP file.

destDirPath

The path of destination directory.

keyword

The keyboard.

Throws

if unzip unsuccessfully


fun unzipFileByKeyword(zipFile: File?, destDir: File?, keyword: String?): List<File>?

Unzip the file by keyword.

Return

the unzipped files

Parameters

zipFile

The ZIP file.

destDir

The destination directory.

keyword

The keyboard.

Throws

if unzip unsuccessfully