I tried to make a directory dynamically using mkdirs() and it created sucessfully the directory and copied the files to the created directory. It's possible to see the new directory in the tablet (xoom) but when I connect to my PC to copy some files the directory does not appear.
what can i do?
EDT: This is what i've done:
File dirs = new File(Environment.getExternalStorageDirectory()+"/MyDir/");
dirs.mkdirs();
What is wrong?
EDT2: I have tried everything in this thread (http://stackoverflow.com/questions/6218572/creating-a-folder-programmatically-on-a-xoom) and didn't work. Suggestions?
PS: I found an app which re-scan de sdcard. If i create the directory and use this app, it works perfecly. anyone knows how to re-scan sdcard?