Skip to content

Instantly share code, notes, and snippets.

@shakil807g
Created July 24, 2016 08:17
Show Gist options
  • Save shakil807g/362d8d153e7bdf55f386c6beb8d4e0c9 to your computer and use it in GitHub Desktop.
Save shakil807g/362d8d153e7bdf55f386c6beb8d4e0c9 to your computer and use it in GitHub Desktop.
MediaDirectory
void fixMediaDir() {
File sdcard = Environment.getExternalStorageDirectory();
if (sdcard != null) {
File mediaDir = new File(sdcard, "DCIM/Camera");
if (!mediaDir.exists()) {
mediaDir.mkdirs();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment