List of utility methods to do File Create
File tempDir = Environment.getExternalStorageDirectory(); tempDir = new File(tempDir.getAbsolutePath() + "/.temp/"); if (!tempDir.exists()) { tempDir.mkdir(); return File.createTempFile(part, ext, tempDir);