Skip to content

Instantly share code, notes, and snippets.

@mch0lic
Created June 8, 2014 10:30
Show Gist options
  • Save mch0lic/b3e9772492bd4a890858 to your computer and use it in GitHub Desktop.
Save mch0lic/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