如何 建立檔案或資料夾

2022-02-13 18:20:40 字數 577 閱讀 6219

此示例在計算機上建立乙個資料夾和乙個子資料夾,然後在該子資料夾中建立乙個新檔案並將一些資料寫入該檔案。

class createfileorfolder

static

void main()}}

// read data back from the file to prove

// that the previous code worked.

try

}catch (system.io.ioexception e)

// keep the console window open in debug mode.

system.console.writeline("press any key to exit.");

system.console.readkey();

}} 不執行任何操作,且不會引發異常。而 file.create

則會覆蓋任何現有檔案。若要避免覆蓋現有檔案,可以使用 openwrite()

方法並指定將使檔案被追加而不是被覆蓋的 filemode.openorcreate

選項。以下情況可能會導致異常:

建立資料夾

當某資料夾不存在時,建立資料夾 import os path dir file if not os.path.exists path dir os.makedirs path dir 同時建立資料夾有兩種函式,os.mkdir和os.makedirs,兩者的區別在於前者是一級一級建立檔案目錄,後者可...

C 建立資料夾,刪除資料夾,建立檔案,刪除檔案

protected void button1 click object sender,eventargs e 判斷檔案的存在 else string name getfiles.filename 獲取已上傳檔案的名字 string size getfiles.postedfile.contentle...

linux c建立資料夾,並在資料夾中建立檔案

建立資料夾,在在檔案裡面建立檔案 乙個例項 include include include include int main char pathname 100 pathname 0 f pathname 1 l pathname 2 o pathname 3 w pathname 4 pathna...