vc下檔案的建立 使用fstream和CFile

2021-06-05 11:37:24 字數 576 閱讀 2555

給出了在vc6.0環境下,兩種建立檔案的方法,並新增了一些注釋,是自己測試後的結果:

/*

功能:在指定路徑下建立檔案

@filename: 要建立的檔案的全路徑

@content: 檔案內容

@canbeemptyfile: 檔案內容是否可以為空,預設值為false

*/bool ctestfaxdlg::createfile(cstring filename, cstring content, bool canbeemptyfile)

return false;}

/* 功能:在指定路徑下建立檔案

@filename: 要建立的檔案的全路徑

@content: 檔案內容

@canbeemptyfile: 檔案內容是否可以為空,預設值為false

*/bool ctestfaxdlg::createfile2(cstring filename, cstring content, bool canbeemptyfile)

return false;

}

**:

VC使用UDL檔案建立ADO連線

最近在改乙個vc的專案,需要靈活的配置資料庫連線,我用到了資料鏈結檔案,使用 udl檔案必須在系統中先安裝 microsoft mdac win 2000以後的版本 中都自動包含了該元件。關於udl的使用只強調兩點。m pconnection connectionstring file name m...

VC建立BMP檔案

byte data bmp資料 int pbitssize bmp資料大小 int intimgsize 生成的bmp檔案大小 cstring filename bmp檔名 void createbmp byte data,int pbitssize,int intimgsize,cstringfi...

vc 刪除目錄或檔案與目錄下檔案

因為vc中沒有刪除非空目錄的函式,所以要用以下方法來做 注意 路徑字串str的最後不要加 void deletedir cstring str else 不是資料夾 deletefile strdel 刪除檔案 api finder.close removedirectory str 刪除資料夾 a...