CFile :: open()

CFile  file ;

//相对路径

file.Open( L"..//test_txt//input_txt//test.txt" , CFile::modeRead , NULL ) ;

//绝对路径

file.Open( L"E://first task//test_bed//TestAscDbFile//test_txt//input_txt//test.txt" , CFile::modeRead , NULL ) ;

其中 L 是为了单字符和双字符间的转化  

..//  ( 非 //..//)相对路径 表示往上一级目录。

// 取代原来的 / , 由于是转义字符。

 

ps:最近碰到很多问题 ,原本想都贴过来 ,奈何 公司网络台慢 了 。。。。。。。。

 

你可能感兴趣的:(CFile :: open())