Notice
Recent Posts
Recent Comments
Link
설.현.아빠
android sdcard 에 파일 생성. 본문
이런 식으로 생각을 했다.
File f=new ("/sdcard/mkdir","ab.mp3");
f.createNewFile();
하지만 이런 식으로 하면 에러가 난다.
Solution is
File file2 = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/mkdir","ab.mp3");
file2.createNewFile();
하면 에러가 안 나온다.
'안드로이드 > File' 카테고리의 다른 글
안드로이드 예제 강좌 2(14. 파일작업 1) (0) | 2011.02.11 |
---|---|
FileInputStream, FileOutputStream을 이용하여 SDCard에 파일 읽고 쓰기. (1) | 2011.02.11 |
폴더 생성 및 파일 생성 (private directory에 폴더 생성) (0) | 2011.02.11 |
임시파일 생성 (0) | 2011.02.11 |
[FILE] 읽고, 쓰기 (0) | 2011.02.11 |
Comments