|
|
@ -60,10 +60,12 @@ object BookHelp { |
|
|
|
DocumentUtils.getDirDocument( |
|
|
|
DocumentUtils.getDirDocument( |
|
|
|
root, |
|
|
|
root, |
|
|
|
subDirs = *arrayOf(cacheFolderName, bookFolderName(book)) |
|
|
|
subDirs = *arrayOf(cacheFolderName, bookFolderName(book)) |
|
|
|
)?.listFiles()?.forEach { |
|
|
|
)?.uri?.let { uri -> |
|
|
|
if (it.name?.startsWith(String.format("%05d", bookChapter.index)) == true) { |
|
|
|
DocumentUtils.listFiles(App.INSTANCE, uri).forEach { |
|
|
|
it.delete() |
|
|
|
if (it.name.startsWith(String.format("%05d", bookChapter.index))) { |
|
|
|
return@forEach |
|
|
|
DocumentFile.fromSingleUri(App.INSTANCE, it.uri)?.delete() |
|
|
|
|
|
|
|
return@forEach |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
DocumentUtils.createFileIfNotExist( |
|
|
|
DocumentUtils.createFileIfNotExist( |
|
|
|