mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-26 22:47:59 +01:00
scan the internal storage from time to time for new folders
This commit is contained in:
parent
97b19fe169
commit
6f25913558
1 changed files with 26 additions and 0 deletions
|
@ -1078,6 +1078,11 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener {
|
|||
}.mapTo(everShownFolders) { it.path }
|
||||
|
||||
try {
|
||||
// scan the internal storage from time to time for new folders
|
||||
if (config.appRunCount == 1 || config.appRunCount % 30 == 0) {
|
||||
everShownFolders.addAll(getFoldersWithMedia(config.internalStoragePath))
|
||||
}
|
||||
|
||||
// catch some extreme exceptions like too many everShownFolders for storing, shouldnt really happen
|
||||
config.everShownFolders = everShownFolders
|
||||
} catch (e: Exception) {
|
||||
|
@ -1327,6 +1332,27 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener {
|
|||
}
|
||||
}
|
||||
|
||||
private fun getFoldersWithMedia(path: String): HashSet<String> {
|
||||
val folders = HashSet<String>()
|
||||
try {
|
||||
val files = File(path).listFiles()
|
||||
if (files != null) {
|
||||
files.sortBy { !it.isDirectory }
|
||||
for (file in files) {
|
||||
if (file.isDirectory && !file.startsWith("${config.internalStoragePath}/Android")) {
|
||||
folders.addAll(getFoldersWithMedia(file.absolutePath))
|
||||
} else if (file.isFile && file.isMediaFile()) {
|
||||
folders.add(file.parent ?: "")
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
}
|
||||
|
||||
return folders
|
||||
}
|
||||
|
||||
override fun refreshItems() {
|
||||
getDirectories()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue