mirror of
https://github.com/SimpleMobileTools/Simple-File-Manager.git
synced 2025-06-05 22:09:15 +02:00
small edit to fetching children
This commit is contained in:
@@ -162,15 +162,13 @@ class ItemsFragment : Fragment(), ItemsAdapter.ItemOperationsListener {
|
||||
}
|
||||
|
||||
private fun getChildren(file: File): Int {
|
||||
var fileList = file.list()
|
||||
if (fileList == null)
|
||||
return 0
|
||||
val fileList: Array<out String>? = file.list() ?: return 0
|
||||
|
||||
if (file.isDirectory) {
|
||||
return if (mShowHidden) {
|
||||
fileList.size
|
||||
fileList!!.size
|
||||
} else {
|
||||
fileList.count { fileName -> fileName[0] != '.' }
|
||||
fileList!!.count { fileName -> fileName[0] != '.' }
|
||||
}
|
||||
}
|
||||
return 0
|
||||
|
Reference in New Issue
Block a user