摘要:
//ftell()原型。功能:用于得到文件位置指针当前位置相对于文件首的偏移字节数 _Check_return_ _CRTIMP long __cdecl ftell(_Inout_ FILE * _File); fseek(PFile, 0, SEEK_END);//将文件指针从文件头移动到文件尾,则指针的长度就是文件的长度 int m_length = ftell(PFile); 阅读全文
摘要:
FILE *PFile; fseek(PFile, 0, SEEK_END);//将文件指针从文件头移动到文件尾,则指针的长度就是文件的长度 fseek(PFile, 100L, 1); //把PFile指针移动到离文件当前位置100字节处; 阅读全文
摘要:
//fopen_s()原型。正确返回0,不正确返回非0 _Check_return_wat_ _CRTIMP errno_t __cdecl fopen_s( _Outptr_result_maybenull_ FILE ** _File, //指向打开的FILE类型文件的指针变量的指针 _In_z 阅读全文
摘要:
//FindFile()查找指定目录的第一个文件或目录并返回他的句柄//FindFile()原型 virtual BOOL FindFile(LPCTSTR pstrName = NULL, DWORD dwUnused = 0); CString filePathName; CFileFind finder; bool bIfFinded=(bool)finder.FindFile(fil... 阅读全文