I want to create a directory on \"/mnt/extsd/MyFolder\" this path. while calling mkdir() it returns false.I inserted the sdcard on my tablet, got the external path as \"/mnt/ext
final String PATH = Environment.getExternalStorageDirectory() + "/myfolder/"; if(!(new File(PATH)).exists()) new File(PATH).mkdirs();
include permission in manifest::