VC 中檔案讀寫彙總

2022-05-08 10:18:07 字數 569 閱讀 6772

a法:

cstring strfilename = "c:\\dd.txt";

std::ifstream in;

std::locale::global(std::locale(""));

in.open(strfilename);

std::locale::global(std::locale("c"));

std::string line;

while(getline(in, line))

{ coutchar readbuffer[500]; // 存放讀取資料的快取

cfile file(_t("e:\\1.txt"), cfile::modecreate | cfile::modereadwrite);

// 讀取100個位元組的資料到存放讀取資料的快取的readbuffer + loff位置處

int nret = file.read(readbuffer , 100); //100為希望讀到長度, nret為實際讀到的長度

file.close();

未完待續。。。。。。

VC讀寫INI檔案

在我們寫的程式當中,總有一些配置資訊需要儲存下來,以便完成程式的功能,最簡單的辦法就是將這些資訊寫入ini檔案中,程式初始化時再讀入.具體應用如下 一.將資訊寫入.ini檔案中.1.所用的winapi函式原型為 其中各引數的意義 lpctstr lpstring 是鍵值,也就是變數的值,不過必須為l...

VC讀寫INI檔案

在我們寫的程式當中,總有一些配置資訊需要儲存下來,以便完成程式的功能,最簡單的辦法就是將這些資訊寫入ini檔案中,程式初始化時再讀入.具體應用如下 一.將資訊寫入.ini檔案中.1.所用的winapi函式原型為 其中各引數的意義 lpctstr lpstring 是鍵值,也就是變數的值,不過必須為l...

VC讀寫ini檔案

vc讀寫ini檔案 關於ini檔案讀寫的api函式 有下列這些 getprivateprofileint getprivateprofilesection getprivateprofilesectionnames getprivateprofilestring getprivateprofiles...