Notice
Recent Posts
Recent Comments
Link
관리 메뉴

설.현.아빠

android sdcard 에 파일 생성. 본문

안드로이드/File

android sdcard 에 파일 생성.

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



이런 식으로 생각을 했다. 
File f=new ("/sdcard/mkdir","ab.mp3");
f.createNewFile();

하지만 이런 식으로 하면 에러가 난다. 

Solution is 

File file2 = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/mkdir","ab.mp3");

file2.createNewFile();
하면 에러가 안 나온다. 

 

http://wowmymwow.tistory.com/entry/android-sdcard-에-파일-생성

Comments