Hi guys, I have a problem, I got the following code:
File folder = new File(Environment.getExternalStorageDirectory() + "/myapp/folderone/foldertwo"); boolean success = false; if (!folder.exists()) { success = folder.mkdir(); } if (!success) { } else { }
but its just not working, I also added permission:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
Hope someone can help me.
source share