Android File List
File path = new File("/sdcard/"); // SD 카드가 없을경우 path가 null 이됨
if(path == null){ return; }
if(path.listFiles().length > 0){
for(File file : path.listFiles()){
String name = file.getName();
}
}
안드로이드...
sdcard에서 filelist 가져오기
'scrap > Android' 카테고리의 다른 글
ListView (0) | 2011.02.04 |
---|---|
Activity를 refresh 할 수 있나요? (0) | 2011.02.04 |
Container Scroll (0) | 2011.02.04 |
SQLite (0) | 2011.02.04 |
android - 다수의 Insert 수행시 속도 향상을 위한 팁 (0) | 2011.02.03 |