Notice
Recent Posts
Recent Comments
Link
관리 메뉴

설.현.아빠

임시파일 생성 본문

안드로이드/File

임시파일 생성

설.현.아빠 2011. 2. 11. 10:20



1> 임시파일 생성
File newFile = File.createTempFile("mcb", ".mp3", context.getCacheDir());

2> 임시파일 생성
newFile = new File(context.getCacheDir(), "mcb.mp3"); 
newFile.createNewFile();

3> 임시파일 생성
File rootDir = Environment.getExternalStorageDirectory();
File newFile = File.createTempFile("mcb", ".mp3", rootDir);
//외부 저장장치에 데이터 저장시 아래와 같은 Permission이 필요함.
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />


참고>
public abstract File getCacheDir()
Returns the absolute path to the application specific cache directory on the filesystem. These files will be ones that get deleted first when the device runs low on storage There is no guarantee when these files will be deleted.

Comments