String folderPath = "AllAroundMe/Images"; File file = new File(Environment.getExternalStorageDirectory(), folderPath); if(!file.exists()) { Log.d(TAG, "FOLDERS NOT EXIST"); if(file.mkdirs()) Log.d("MyTag","Created folders succefully"); else { Log.d(TAG,"didnt create"); } }