I am creating folder with following code:
File f = new File(Environment.getExternalStorageDirectory(), folder_main);
if (!f.exists()) {
f.mkdirs();
this.showDialog("Done");
}
else{
this.showDialog("Exist");
}
This code show Exist and Done correctly, but when I go to sd card with file explorer, I cannot see created folders. Why and how to make it work?