public void delete(String path) {
File file = new File(path);
if(file.exists()) {
file.delete();
}
}
'android tech.' 카테고리의 다른 글
Json 다운로드하기 (0) | 2014.05.02 |
---|---|
bitmap이 있는지 체크 (0) | 2014.05.02 |
파일이 있는지 체크하기 (0) | 2014.05.02 |
파일 복사해서 저장하기 (0) | 2014.05.02 |
bitmap을 png 또는 jpg 파일로 저장 (0) | 2014.05.02 |