file類不僅僅代表檔案和目錄。也可以建立不存在的目錄。還可以檢視檔案的特性。
如:file.getabsolutepath;file.canread(),file.canwrite();file.getname();file.getparent;file.list();file.getpath;file.length;file.renameto(把乙個檔案重新命名到或移動到指定目錄名檔案下)file.exist().file。mkdirs();創造目錄路徑;生成所有目錄路徑。 file.createnewfile(建立檔案)。
string local_file_path = environment.getexternalstoragedirectory().getabsolutepath()+
"/down/"
;
file f =
new
file(local_file_path);
if
(!f.exists())
string create_file = f.getabsolutepath()+
"/"
+filename.txt;
file f =
new
file(local_file);
try
}
catch
(ioexception ex)
File檔案及目錄的刪除與建立
boolean createnewfile 只能建立檔案,不能建立資料夾存在的路徑建立乙個新的檔案 private static void show01 throws ioexception注意點 1.所建立的都是檔案,不管以何種方式命名的!2.檔案如果存在返回false,或者路徑路徑不正確放回異常...
FILE資料夾建立與刪除及檔案讀取
1.資料夾操作 新建資料夾目錄 public static void newfolder string folderpath else catch exception e 級聯刪除檔案 public static boolean deletefolder string filepath else e...
File類的建立與刪除,file類常用方法的呼叫
file在建立物件時,不能建立資料夾和檔案,只是對檔案的乙個描述 對檔案的建立,構造方法 public static void test1 測試資料夾的建立,在規定的位置處 測試資料夾的建立與刪除 public static void test2 else 建立多個路徑下的資料夾 public st...