摘要: 1 /*该函数用来将文件中所有的大写字母转化为小写字母,但是不支持UNICODE*/ 2 #include <afx.h> 3 //#include <iostream> 4 //using namespace::std; 5 6 int main() 7 { 8 BYTE buffer[0x100]; 9 try10 {11 CFile file(L"File2.txt", CFile::modeReadWrite);12 ULONGLONG dwBytesRemaining = file.GetLength();13 while(dwBytesR 阅读全文
posted @ 2011-04-27 16:12 cylee025 阅读(2941) 评论(1) 推荐(0) 编辑