reenable new folder deleting, if it was left empty
This commit is contained in:
parent
2bd20c5d98
commit
ee1df9ebbb
1 changed files with 2 additions and 2 deletions
|
@ -241,12 +241,12 @@ class MainActivity : SimpleActivity(), DirectoryAdapter.DirOperationsListener {
|
|||
|
||||
private fun removeTempFolder() {
|
||||
if (config.tempFolderPath.isNotEmpty()) {
|
||||
/*val newFolder = File(config.tempFolderPath)
|
||||
val newFolder = File(config.tempFolderPath)
|
||||
if (newFolder.exists() && newFolder.isDirectory) {
|
||||
if (newFolder.list()?.isEmpty() == true) {
|
||||
deleteFile(newFolder.toFileDirItem(applicationContext), true)
|
||||
}
|
||||
}*/
|
||||
}
|
||||
config.tempFolderPath = ""
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue