if ( Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) { String path = Environment.getExternalStorageDirectory()+"/android/data/pe.berabue.maptools/.image"; File file = new File(path); String str; int num = 0; int imgCount = file.listFiles().length; // 파일 총 갯수 얻어오기 map = new Bitmap[imgCount]; if ( file.listFiles().length > 0 ) for ( File f : file.listFiles() ) { str = f.getName(); // 파일 이름 얻어오기 map[num] = BitmapFactory.decodeFile(path+"/"+str); num++; } }
'Android > File' 카테고리의 다른 글
프로젝트에 포함된 이미지를 SdCard로 이동시키기. (0) | 2011.06.12 |
---|---|
단말기 내부에 폴더 및 txt파일 생성하기 (0) | 2011.03.02 |
txt 파일 읽어오기 (0) | 2011.02.11 |
SD Card에 txt 파일로 저장하기 (0) | 2011.02.05 |
SD Card에 폴더 생성하기 (0) | 2011.01.31 |