[android]파일 삭제 & 폴더 삭제

2014. 9. 15. 10:53android



336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

//파일 & 폴더 삭제

public static void removeDir(String dirName) {

String mRootPath = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + dirName;


File file = new File(mRootPath);

File[] childFileList = file.listFiles();

for(File childFile : childFileList)

{

if(childFile.isDirectory()) {

removeDir(childFile.getAbsolutePath());    //하위 디렉토리

}

else {

childFile.delete();    //하위 파일

}

}


file.delete();    //root 삭제

}