CFILE的使用 讀檔案

2021-05-01 17:48:46 字數 685 閱讀 2857

逐行

/*cstdiofile   sfile; 

if(!sfile.open(dlg2.m_szfilepath,cfile::moderead)) 

cstring strtext="" ;

cstring szline ;

while( sfile.readstring( szline ) )

m_editfilecontent.setwindowtext(strtext);

sfile.close();*/

顯示,不斷行

cfile   file; 

if(!file.open(dlg2.m_szfilepath,cfile::moderead)) 

//cstring  strline;

char *pbuf;

pbuf   =   new   char[file.getlength()+10]; 

memset(pbuf,'/0',file.getlength()+1);  

uint nbytesread = file.read(pbuf, file.getlength());

m_editfilecontent.setwindowtext(pbuf);

file.close();

delete pbuf;

}

CFile檔案操作

各種關於檔案的操作在程式設計中是十分常見,如果能對其各種操作都瞭如指掌,就可以根據實際情況找到最佳的解決方案,從而在較短的時間內編寫出高效的 因而熟練的掌握檔案操作是十分重要的。本文將對visual c 中有關檔案操作進行全面的介紹,並對在檔案操作中經常遇到的一些疑難問題進行詳細的分析。1 檔案的查...

C 使用CFile類檔案讀寫

c mfc使用cfile類檔案讀寫的乙個例程。操作包括 官方檔案參考 strpath video.squeeze.csv 定義路徑和檔案格式 if strpath.right 4 csv strpath csv 檢查檔案格式是否正確 cfile m cfile t strpath cfile mod...

C File 檔案操作 IO流 使用例項

c 檔案操作 檔案操作的標頭檔案為system io 屬性或方法 作用datetime getcreationtime string path 返回指定檔案或目錄的建立日期和時間 datetime getlastaccesstime string path 返回上次訪問指定檔案或目錄的日期和時間 d...