Notice
Recent Posts
Recent Comments
Link
설.현.아빠
임시파일 생성 본문
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.
'안드로이드 > File' 카테고리의 다른 글
FileInputStream, FileOutputStream을 이용하여 SDCard에 파일 읽고 쓰기. (1) | 2011.02.11 |
---|---|
android sdcard 에 파일 생성. (0) | 2011.02.11 |
폴더 생성 및 파일 생성 (private directory에 폴더 생성) (0) | 2011.02.11 |
[FILE] 읽고, 쓰기 (0) | 2011.02.11 |
[FILE] 고정된 파일의 내용 읽어와 리스트로 보여주기 (0) | 2011.02.11 |
Comments