Skip to content

Instantly share code, notes, and snippets.

@varundwarkani
Created May 8, 2020 18:12
Show Gist options
  • Save varundwarkani/f30bffd0049d5e1c7455dc3eda013897 to your computer and use it in GitHub Desktop.
Save varundwarkani/f30bffd0049d5e1c7455dc3eda013897 to your computer and use it in GitHub Desktop.
private boolean validFile(Uri fileUri) {
ContentResolver cr = this.getContentResolver();
String mime = cr.getType(fileUri);
return "application/octet-stream".equals(mime);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment