I have a small app that when I run it make a folder in my SD then save some Videos inside the folder
The thing is the app does the work and make the folder and save the files and I still can see it in SD using file manager or from my PC when I connect it via USB
But for e.g when I start Whatsup or my Gallery I can't see the folder or the videos !
I still can see the folder and videos that stored in the SD using File Manager
so what's wrong ? why I can't see the folder and videos in the Gallery or other programs when I want to attach the video ..
I used the same code link for my App to create the folder and check :
File folder = new File(Environment.getExternalStorageDirectory() + "/TollCulator");
boolean success = true;
if (!folder.exists()) {
success = folder.mkdir();
}
if (success) {
// Do something on success
} else {
// Do something else on failure
}