create a list of folders that should be ignored (fake internal storage paths)

This commit is contained in:
tibbi 2018-06-02 15:39:37 +02:00
parent 702164e719
commit a417a20e11
1 changed files with 2 additions and 1 deletions

View File

@ -97,6 +97,7 @@ class MediaFetcher(val context: Context) {
}
private fun parseCursor(cursor: Cursor): ArrayList<String> {
val foldersToIgnore = arrayListOf("/storage/emulated/legacy")
val config = context.config
val includedFolders = config.includedFolders
var foldersToScan = ArrayList<String>()
@ -106,7 +107,7 @@ class MediaFetcher(val context: Context) {
do {
val path = cursor.getStringValue(MediaStore.Images.Media.DATA).trim()
val parentPath = File(path).parent?.trimEnd('/') ?: continue
if (!includedFolders.contains(parentPath)) {
if (!includedFolders.contains(parentPath) && !foldersToIgnore.contains(parentPath.toLowerCase())) {
foldersToScan.add(parentPath)
}
} while (cursor.moveToNext())