C CreatFile檔案建立及開啟的使用

2021-08-09 18:21:53 字數 711 閱讀 7672

對createfile函式的介紹不管網上還是msdn上的介紹很多了,下面說一下如何建立和讀取共享檔案。

建立過程:

handle= createfile(szfilepath,

generic_write,

file_share_read,

null,

open_always,          // overwrite existing

file_attribute_normal,  // normal file

null);                  // no attr. template

開啟過程:

handle= createfile(szorglogpath,

file_generic_read,          // open for reading

file_share_write,       // share for writing

null,                  // default security

open_existing,         // existing file only

file_attribute_readonly, // normal file

null);                 // no attr. template

說明的地方是建立的時候是讀共享,讀取的時候是寫共享。

檔案的建立及寫入

fopen 函式也用於建立檔案。也許有點混亂,但是在 php 中,建立檔案所用的函式與開啟檔案的相同。如果您用 fopen 開啟並不存在的檔案,此函式會建立檔案,假定檔案被開啟為寫入 w 或增加 a 下面的例子建立名為 testfile.txt 的新檔案。此檔案將被建立於 php 所在的相同目錄中 ...

github 檔案建立及上傳

1 先開啟自己的面板,2 選擇自己的倉庫 4 開啟 git bash 定位到本地目錄,比如 cd e git 然後執行命令 git init 然後也可以git status檢視一下狀態 再執行 git add git commit m 注釋語句 git remote addorigin git gi...

C 建立及讀取DAT檔案

dat 從字尾名上也能理解其中的含義即 data檔案,資料檔案 這個檔案有的可以用記事本工具開啟,但是加密後就不一定了。很多程式都建立dat檔案來儲存設定。建立乙個只有自己才能解析得dat檔案,並且可以讀取和寫入,寫乙個類,它可以建立乙個只有使用這個類才能解析得dat檔案。同時讀取或寫入資料進dat...