- 博客(5)
- 收藏
- 关注
原创 CString、string
CString StrToCStr(const string & strInput){ int len = strlen(strInput.c_str())+1; WCHAR * wChar = new WCHAR[len+4]; memset(wChar, 0, (len+4)*2); MultiByteToWideChar(CP_UTF8, 0, strInput.c_str(), len, wChar, len); CString strRtn(wCha
2023-04-21 20:17:02 75 1
原创 C++读取二进制文件大小
fopen_s(&pFile,strFilePath.c_str(),"rb+")) // 打开一个二进制文件。函数: int fseek(FILE *stream, long int offset, int whence);SEEK_SET、SEEK_CUR、SEEK_END分别表示开头位置,当前位置,结尾位置。stdio中的库函数,获取功能为当前文件读写的位置;是stdio中的库函数,功能为设定文件指针的位置。返回值是当前读写位置偏离文件头部的字节数。参数stream:需要读取的文件流;
2023-04-10 21:12:21 490 1
原创 “fatal error C1083: ”无法打开包括文件
例如:Test01.sln文件在“D:\zmh”路径下,则“$(SolutionDir)\Common\Include”就表示实际路径“D:\zmh\Common\Include”,这样代码复制到别的电脑或者别的文件夹,不会因为绝对路径不同了而提示“。fatal error C1083: 无法打开包括文件:“DataStruct.h”: No such file or directory”。步骤1:定位报“fatal error C1083: ”错误的文件,找到它所在的目录。步骤2:添加该项目的附加路径。
2023-04-10 19:39:30 6550 1
空空如也
MFC 调用HTTP接口问题
2023-11-08
使用libcurl库上传sftp服务器,上传.txt文件成功,但大小变成1k了
2023-05-16
libcurl sftp 新建文件夹失败
2023-05-12
TA创建的收藏夹 TA关注的收藏夹
TA关注的人