MFC读写文件-创新互联
(1)读文件
在宁津等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供成都做网站、网站建设、外贸营销网站建设 网站设计制作按需搭建网站,公司网站建设,企业网站建设,高端网站设计,全网营销推广,外贸网站制作,宁津网站建设费用合理。VOID CScale3DCControl::ReadLauFile(CString strFileName,CRichEditCtrl & richEdit) { CString strFilePath = GetApplicationPath() + strFileName; CFile file(strFilePath, CFile::modeRead); char * pBuf; DWORD dwFileLen; //定义存储文件长度的变量 dwFileLen = file.GetLength(); pBuf = new char[dwFileLen + 1]; pBuf[dwFileLen] = 0; //把最后一位一0结尾 表示文件结束 file.Read(pBuf, dwFileLen); USES_CONVERSION; richEdit.SetWindowText(A2W(pBuf)); GetKeyWordFromText(A2W(pBuf)); file.Close(); }
(2)写文件
VOID CScale3DCControl::SaveLuaFile(CRichEditCtrl & richEdit, CString strFileName) { CString strPath = GetApplicationPath() + _T("lua\\") + strFileName; CFile file(strPath,CFile::modeCreate | CFile::modeWrite); CString strTemp; richEdit.GetWindowText(strTemp); USES_CONVERSION; file.Write(W2A(strTemp), strlen(W2A(strTemp))); file.Close(); }
(3)搜索文件夹下的所有文件名
void CScale3DCControl::GetFileFromDirectory(CString csDirPath, CListBox & list) //csDirPath为文件夹名字,把该文件夹底下的jpg文 //件的名字存储到容器 m_FileList中,如果不分类型 //则把csDirPath+="\\*.jpg";改为csDirPat+="\*." { m_FileList.clear(); list.ResetContent(); csDirPath = GetApplicationPath()+csDirPath+ _T("\\*.lua"); HANDLE file; WIN32_FIND_DATA fileData; file = FindFirstFile(csDirPath.GetBuffer(), &fileData); if (file != INVALID_HANDLE_VALUE) { m_FileList.push_back(fileData.cFileName); list.AddString(fileData.cFileName); bool bState = false; bState = FindNextFile(file, &fileData); while (bState) { m_FileList.push_back(fileData.cFileName); list.AddString(fileData.cFileName); bState = FindNextFile(file, &fileData); } } else { ;// AfxMessageBox("文件夹中没有shp文件!"); } } CString CScale3DCControl::GetApplicationPath() { WCHAR buff[255] = { 0 }; ::GetModuleFileName(0, buff, 255); CString strAppFullName; strAppFullName.Format(_T("%s"), buff); CString strAppPath = _T(""); strAppPath = strAppFullName.Left(strAppFullName.ReverseFind('\\') + 1); return strAppPath; }
c语言读写文件,如下:
VOID CScale3DCFileData::GetCharFromFile(TCHAR szChina[]) { if (!m_strFilePath)return; errno_t err; FILE *fd; err = _wfopen_s(&fd, m_strFilePath, _T("r")); INT i = 0; if (err == 0) { char buff[100] = { 0 }; while (fgets(buff, 100, fd) != NULL) { USES_CONVERSION; CString strBuff = A2W(buff); INT nLength = strBuff.GetLength(); for (INT j = 0; j < nLength - 1; j++) { if (i >= 34) { m_sFlag = strBuff[j]; break; } szChina[i++] = strBuff[j]; } } } fclose(fd); } VOID CScale3DCFileData::SaveCharToFile(TCHAR* szChina) { USES_CONVERSION; FILE * fd; errno_t err; err = _wfopen_s(&fd, m_strFilePath, _T("w") ); if (err == 0) { char * p = W2A(szChina); fputs(p, fd); } fclose(fd); }
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
文章名称:MFC读写文件-创新互联
文章路径:http://pwwzsj.com/article/jdgic.html