Skip to content

Instantly share code, notes, and snippets.

@kostovtd
Created November 10, 2016 21:12
Show Gist options
  • Save kostovtd/49834eb6b37777e88a94e834ec80b899 to your computer and use it in GitHub Desktop.
Save kostovtd/49834eb6b37777e88a94e834ec80b899 to your computer and use it in GitHub Desktop.
File path = new File("path\to\your\folder");
File file= new File(path,".nomedia");
if (!file.exists()) {
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment