Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- File dir = new File(Environment.getExternalStorageDirectory() + "/myDirectory");
- if(dir.exists() && dir.isDirectory()) {
- Toast.makeText(getApplicationContext(), "Directory Found", Toast.LENGTH_SHORT).show();
- } else {
- Toast.makeText(getApplicationContext(), "Directory Not Found", Toast.LENGTH_SHORT).show();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement