摘要: int WriteFile(string& strPath, char* pBuf, int iLen){ //数据写入文件 if (pBuf == NULL) { return FALSE; } if (_access(strPath.c_str(), 0x00) == 0) { _unlink( 阅读全文
posted @ 2020-10-19 22:06 龙马8586 阅读(589) 评论(0) 推荐(0) 编辑