Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2012
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. String folderPath = "AllAroundMe/Images";
  2. File file = new File(Environment.getExternalStorageDirectory(), folderPath);
  3. if(!file.exists())
  4. {
  5. Log.d(TAG, "FOLDERS NOT EXIST");
  6. if(file.mkdirs())
  7. Log.d("MyTag","Created folders succefully");
  8. else {
  9. Log.d(TAG,"didnt create");
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement