I am using the following code to create a folder.
File mydir= new File(Environment.getExternalStorageDirectory()+File.separator+"My Folder");
if (!mydir.exists()) {
mydir.mkdirs();
}
I have also added permissions to write to external storage but I am not finding any folder in my phone storage. I am using LG G2 which has internal memory and does not support sdcard.