I'm trying to delete my files folder from Internal Storage, but the code which I'm using is not actually working. Any ideas why?

Button login = (Button) findViewById(R.id.login_btn);
        login.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                String name = "/data/data/"+context.getPackageName()+"/files/";
                Log.e("","path : "+name);
                File myDir = new File(name);
                myDir.delete();
                boolean iff = myDir.delete();
                Log.e("","iff : "+iff);
            }
        });

The result which I get after button click :

11-17 13:09:58.869: E/(15952): path : /data/data/com.android.test/files/
11-17 13:09:58.869: E/(15952): iff : false
link|improve this question

74% accept rate
did you set appropriate permission in menifest ?? – Shailendra Rajawat Nov 17 '11 at 11:26
Look at my answer on your previous question. – user370305 Nov 17 '11 at 11:29
feedback

2 Answers

up vote 5 down vote accepted

You are deleting the file twice and only checking the return value of the second delete.

If a file does not exist and you call delete() on it you get "false" as result (file was not deleted because it did not exist).

link|improve this answer
1  
In addition check for if file.exists(); – ingsaurabh Nov 17 '11 at 11:52
I didn't notices that I'm deleting the file twice.Thanks! – Bombastic Nov 17 '11 at 11:55
feedback

File.delete() will only delete empty directories. You will need to (recursively) delete the directory's contents first. See for example Delete a folder on SD card

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.