pull/84/head
kunfei 5 years ago
parent 2469983166
commit 2d2adfc8ef
  1. 10
      app/src/main/java/io/legado/app/help/BookHelp.kt

@ -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(

Loading…
Cancel
Save