檔案基本操作

2021-09-12 18:50:52 字數 880 閱讀 6617

1.獲取路徑

file file = new file("filename");

2.建立檔案

file.createnewfile()

3.刪除檔案

file.delete()

4.判斷檔案是否存在

file.exists()

5.判斷父路徑是否存在

file.getparentfile().exists()

6.建立父路徑

file.getparentfile.mkdirs()

7.檢視檔案大小(m)

bigdecimal filesize = new bigdecimal(12.111111).divide(new bigdecimal(1), 2, bigdecimal.round_half_up);

8.判斷是否是檔案

file.isfile()

9.判斷是否是目錄

file.isdirectory()

10.最近修改時間

new ******dateformat("yyyy-mm-dd hh:mm:ss").format(new date(file.lastmodified()))

11.獲取檔案路徑

file.getpath()   

12.分隔符:因為windows認"\",linux認"/",所以用file.separator

***************************示例***************=

public class filetest 

//判斷檔案是否存在

if(file.exists())else

if(file.exists())

}}

檔案基本操作

檔案基本操作 如果執行正常,open 函式返回1個可迭代的檔案物件,通過該檔案物件可以對檔案進行讀寫操作,如果指定檔案不存在 訪問許可權不夠 磁碟空間不夠或其他原因導致建立檔案物件失敗則丟擲異常。下面的 分別以讀 寫方式開啟了兩個檔案並建立了與之對應的檔案物件。f1 open file1.txt r...

檔案基本操作

檔案基本操作 作業系統中對檔案的操作主要包括 開啟 關閉 讀 寫 定位等操作 所用到的庫函式主要包括 檔案開啟函式 fopen 檔案關閉函式 fclose 字元讀寫函式 fgetc和fputc 字串讀寫函式 fgets和fputs 資料塊讀寫函式 freed和fwrite 格式化讀寫函式 fscan...

檔案基本操作

data open r d test.txt w 寫 不能讀檔案 f.write nhello f.read print f f.close 關閉檔案 data.close 關閉檔案 讀,寫,追加,修改 f open d test.txt a 追加 f1 open d test.txt r r 讀寫...