pull/32/head
parent
a399a32b3a
commit
d78f759638
@ -0,0 +1,35 @@ |
||||
package io.legado.app.help |
||||
|
||||
import java.io.File |
||||
import java.io.IOException |
||||
|
||||
object FileHelp { |
||||
|
||||
|
||||
//获取文件夹 |
||||
fun getFolder(filePath: String): File { |
||||
val file = File(filePath) |
||||
//如果文件夹不存在,就创建它 |
||||
if (!file.exists()) { |
||||
file.mkdirs() |
||||
} |
||||
return file |
||||
} |
||||
|
||||
//获取文件 |
||||
@Synchronized |
||||
fun getFile(filePath: String): File { |
||||
val file = File(filePath) |
||||
try { |
||||
if (!file.exists()) { |
||||
//创建父类文件夹 |
||||
getFolder(file.parent) |
||||
//创建文件 |
||||
file.createNewFile() |
||||
} |
||||
} catch (e: IOException) { |
||||
} |
||||
|
||||
return file |
||||
} |
||||
} |
Loading…
Reference in new issue