1. 程式人生 > >安卓檔案的操作總結

安卓檔案的操作總結

安卓的檔案操作-刪除
File file = new File(FunPath.getCaptureTimpPath());
DeleteFile(file);
這裡的FunPath.getCaptureTimpPath()是資料夾的地址;其中DeleteFile的具體實現如下
public void DeleteFile(File file) {
    if (file.exists() == false) {
        return;
} else {
        if (file.isFile()) {
            file.delete();
            return;
}
        if 
(file.isDirectory()) { File[] childFile = file.listFiles(); if (childFile == null || childFile.length == 0) { return; } if(childFile.length>1){ for (File f : childFile) { DeleteFile(f); } } } } }
在這裡我不需要完全的刪除資料夾裡的內容,需要留一個備用,所以在刪除資料夾時對檔案的夾長度進行限制。