File mediaDir = new File(\"media\"); if (!mediaDir.exists()){ mediaDir.createNewFile(); mediaDir.mkdir(); } File f = new File(\"/data/data/com.test.image/f
You can try something like the following to make a folder in an Activity
Activity
this.getDir("folder_name", Context.MODE_PRIVATE);
source