반응형
/**
* 폴더 삭제(안에 파일들도 같이 삭제)
*/
public void removeFiles()
{
String mPath = path + "/";
File dir = new File(mPath);
String[] children = dir.list();
if (children != null) {
for (int i=0; i<children.length; i++) {
String filename = children[i];
File f = new File(mPath + filename);
if (f.exists()) {
f.delete();
}
}//for
}//if
}//public void removeFiles()
반응형
'프로그래밍 정리 > 안드로이드' 카테고리의 다른 글
apk 인스톨 소스 (0) | 2012.06.25 |
---|---|
Asynctask 예제 (0) | 2012.06.25 |
APPWIDGET_RESIZE (0) | 2012.06.21 |
CustomDialog (0) | 2012.06.19 |
ListView, BaseAdapter (0) | 2012.06.19 |