mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
Add 'if' check for file exists
This commit is contained in:
parent
b6997db681
commit
b5ccc36a77
1 changed files with 20 additions and 17 deletions
|
|
@ -77,6 +77,8 @@ public class ExistingFileAsync extends AsyncTask<Void, Void, Boolean> {
|
|||
super.onPostExecute(fileExists);
|
||||
//TODO: Add Dialog here to tell user file exists, do you want to continue? Yes/No
|
||||
|
||||
if (fileExists) {
|
||||
|
||||
AlertDialog.Builder builder = new AlertDialog.Builder(context);
|
||||
|
||||
builder.setMessage("This file already exists in Commons. Are you sure you want to proceed?")
|
||||
|
|
@ -99,3 +101,4 @@ public class ExistingFileAsync extends AsyncTask<Void, Void, Boolean> {
|
|||
dialog.show();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue