I am using this code to save Bitmap in External Storage but it does not create the folder if it not exists:
String path = Environment.getExternalStorageDirec
Use the following:
File dir = new File(path + "/Captures/"); if(!dir.exists()) { dir.mkdirs(); } File file = new File(path + "/Captures/", "screen.jpg"); ......