Creating directory in internal storage
问题 I think that my smartphone is a dumbphone. Trying to create a folder and it seems that it just wont get created. I am running CyanogenMod and dont know if this make it goes nuts. This is what I have been testing: File folder = new File(getFilesDir() + "theFolder"); if(!folder.exists()){ folder.mkdir(); } And also this approac: File folder = getDir("theFolder",Context.MODE_PRIVATE); 回答1: This answer was old and I updated it. I included internal and external storage. I will explain it step by