mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-04 15:35:27 +00:00
79d704008b
Fixed accessing kotlin code illegally via companion helper
46 lines
1.4 KiB
Kotlin
46 lines
1.4 KiB
Kotlin
package com.topjohnwu.magisk.utils
|
|
|
|
import com.topjohnwu.superuser.io.SuFile
|
|
import com.topjohnwu.superuser.io.SuFileOutputStream
|
|
import java.io.File
|
|
import java.io.IOException
|
|
import java.io.InputStream
|
|
import java.util.zip.ZipEntry
|
|
import java.util.zip.ZipInputStream
|
|
|
|
@Throws(IOException::class)
|
|
fun File.unzip(folder: File, path: String = "", junkPath: Boolean = false) {
|
|
inputStream().buffered().use {
|
|
it.unzip(folder, path, junkPath)
|
|
}
|
|
}
|
|
|
|
@Throws(IOException::class)
|
|
fun InputStream.unzip(folder: File, path: String, junkPath: Boolean) {
|
|
try {
|
|
val zin = ZipInputStream(this)
|
|
var entry: ZipEntry
|
|
while (true) {
|
|
entry = zin.nextEntry ?: break
|
|
if (!entry.name.startsWith(path) || entry.isDirectory) {
|
|
// Ignore directories, only create files
|
|
continue
|
|
}
|
|
val name = if (junkPath)
|
|
entry.name.substring(entry.name.lastIndexOf('/') + 1)
|
|
else
|
|
entry.name
|
|
|
|
var dest = File(folder, name)
|
|
if (!dest.parentFile!!.exists() && !dest.parentFile!!.mkdirs()) {
|
|
dest = SuFile(folder, name)
|
|
dest.parentFile!!.mkdirs()
|
|
}
|
|
SuFileOutputStream(dest).use { out -> zin.copyTo(out) }
|
|
}
|
|
} catch (e: IOException) {
|
|
e.printStackTrace()
|
|
throw e
|
|
}
|
|
}
|