Skip to content

Instantly share code, notes, and snippets.

@mindaugasbudreika
Created June 8, 2014 10:30
Show Gist options
  • Select an option

  • Save mindaugasbudreika/b3e9772492bd4a890858 to your computer and use it in GitHub Desktop.

Select an option

Save mindaugasbudreika/b3e9772492bd4a890858 to your computer and use it in GitHub Desktop.
if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
File path = new File(Environment.getExternalStorageDirectory()
+ File.separator + context.getString(R.string.app_dir));
if(!path.exists()) {
path.mkdirs();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment