Guest User

Untitled

a guest
Dec 12th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. private void doDelete() {
  2.  
  3. File sdCard = Environment.getExternalStorageDirectory();
  4.  
  5.  
  6. File file = new File(sdCard + "/arana");
  7. String[] files;
  8. files = file.list();
  9. for (int i=0; i<files.length; i++) {
  10. File myFile = new File(file, files[i]);
  11. myFile.delete();
  12. }
  13.  
  14.  
  15. finish();
  16.  
  17.  
  18. }
Add Comment
Please, Sign In to add comment