mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-01-27 17:59:16 +01:00
fix #50, make sure we have SD write permission before deleting a folder
This commit is contained in:
parent
fa4c6928bd
commit
8108a109dc
@ -255,8 +255,10 @@ public class MainActivity extends SimpleActivity
|
|||||||
|
|
||||||
private void deleteItem(File file) {
|
private void deleteItem(File file) {
|
||||||
if (Utils.Companion.needsStupidWritePermissions(this, file.getAbsolutePath())) {
|
if (Utils.Companion.needsStupidWritePermissions(this, file.getAbsolutePath())) {
|
||||||
final DocumentFile document = Utils.Companion.getFileDocument(this, file.getAbsolutePath());
|
if (!Utils.Companion.isShowingWritePermissions(this, new File(file.getAbsolutePath()))) {
|
||||||
document.delete();
|
final DocumentFile document = Utils.Companion.getFileDocument(this, file.getAbsolutePath());
|
||||||
|
document.delete();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
file.delete();
|
file.delete();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user