Skip to content

Instantly share code, notes, and snippets.

@mariomartinezsz
Created November 9, 2013 09:58
Show Gist options
  • Save mariomartinezsz/7383859 to your computer and use it in GitHub Desktop.
Save mariomartinezsz/7383859 to your computer and use it in GitHub Desktop.
Create directory in Android
// External storage
String root = Environment.getExternalStorageDirectory().toString();
// Internal storage
//String root = Environment.getRootDirectory().toString();
File myDir = new File(root + "/mynewdir");
myDir.mkdirs();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment