Posts

Showing posts with the label New file in SD card

Android create temporary file in sd card

private File getTemporaryFile(Context context){ //it will return /sdcard/yourImage.tmp final File path = new File( Environment.getExternalStorageDirectory(), context.getPackageName() ); if(!path.exists()){ path.mkdir(); } return new File(path, "yourImage.tmp"); }