|
|
|
@ -34,40 +34,36 @@ class ImportBookViewModel(application: Application) : BaseViewModel(application) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
fun scanDoc(documentFile: DocumentFile, find: (docItem: DocItem) -> Unit) { |
|
|
|
|
execute { |
|
|
|
|
val docList = DocumentUtils.listFiles(context, documentFile.uri) |
|
|
|
|
docList.forEach { docItem -> |
|
|
|
|
if (docItem.isDir) { |
|
|
|
|
DocumentFile.fromSingleUri(context, docItem.uri)?.let { |
|
|
|
|
scanDoc(it, find) |
|
|
|
|
} |
|
|
|
|
} else if (docItem.name.endsWith(".txt", true) |
|
|
|
|
|| docItem.name.endsWith(".epub", true) |
|
|
|
|
) { |
|
|
|
|
find(docItem) |
|
|
|
|
val docList = DocumentUtils.listFiles(context, documentFile.uri) |
|
|
|
|
docList.forEach { docItem -> |
|
|
|
|
if (docItem.isDir) { |
|
|
|
|
DocumentFile.fromSingleUri(context, docItem.uri)?.let { |
|
|
|
|
scanDoc(it, find) |
|
|
|
|
} |
|
|
|
|
} else if (docItem.name.endsWith(".txt", true) |
|
|
|
|
|| docItem.name.endsWith(".epub", true) |
|
|
|
|
) { |
|
|
|
|
find(docItem) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
fun scanFile(file: File, find: (docItem: DocItem) -> Unit) { |
|
|
|
|
execute { |
|
|
|
|
file.listFiles()?.forEach { |
|
|
|
|
if (it.isDirectory) { |
|
|
|
|
scanFile(it, find) |
|
|
|
|
} else if (it.name.endsWith(".txt", true) |
|
|
|
|
|| it.name.endsWith(".epub", true) |
|
|
|
|
) { |
|
|
|
|
find( |
|
|
|
|
DocItem( |
|
|
|
|
it.name, |
|
|
|
|
it.extension, |
|
|
|
|
it.length(), |
|
|
|
|
Date(it.lastModified()), |
|
|
|
|
Uri.parse(it.absolutePath) |
|
|
|
|
) |
|
|
|
|
file.listFiles()?.forEach { |
|
|
|
|
if (it.isDirectory) { |
|
|
|
|
scanFile(it, find) |
|
|
|
|
} else if (it.name.endsWith(".txt", true) |
|
|
|
|
|| it.name.endsWith(".epub", true) |
|
|
|
|
) { |
|
|
|
|
find( |
|
|
|
|
DocItem( |
|
|
|
|
it.name, |
|
|
|
|
it.extension, |
|
|
|
|
it.length(), |
|
|
|
|
Date(it.lastModified()), |
|
|
|
|
Uri.parse(it.absolutePath) |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|