博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vc写csv文件
阅读量:6374 次
发布时间:2019-06-23

本文共 631 字,大约阅读时间需要 2 分钟。

void WriteCVS(CString testStr)
{
  CStdioFile   clsFile;
  CString filepath;  //  得到存文件的路径
  CTime m_Time = CTime::GetCurrentTime(); // 获取当前时间
  CString m_str = m_Time.Format("%Y%m%d");//
  CFileDialog cfile(false,NULL,m_str,OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT|OFN_EXPLORER ,".csv");
  if(IDOK==cfile.DoModal())
  {
filepath=cfile.GetPathName();//得到文件的路径名字
  }
  filepath.AppendFormat(".csv");//设置扩展名是csv格式
 
  if(!clsFile.Open(filepath,CFile::modeCreate|CFile::modeWrite|CFile::typeText))   
  {   
  AfxMessageBox("文件创建失败!");   
  return; 
  } 
 
  clsFile.WriteString(testStr); //把文件写到硬盘上
  clsFile.Close();   
}

转载于:https://www.cnblogs.com/lxshanye/archive/2013/05/24/3096320.html

你可能感兴趣的文章
飘雪代码2枚
查看>>
linux crontab详解
查看>>
HTTP 请求头 WIKI 地址
查看>>
ASP.NET CORE中使用Cookie身份认证
查看>>
Dynamics CRM 2016 Web API 消息列表
查看>>
项目微管理3 - 面试
查看>>
RecyclerView的点击事件
查看>>
友元函数和友元类
查看>>
SpringMVC中CRUD实例
查看>>
java-jmx使用
查看>>
Win8Metro(C#)数字图像处理--2.15图像霓虹效果
查看>>
Expo大作战(十七)--expo结合哨兵(sentry)进行错误异常记录
查看>>
vue.js入门学习
查看>>
第8件事 3步打造产品的独特气质
查看>>
debug-stripped.ap_' specified for property 'resourceFile' does not exist
查看>>
利用MapReduce计算平均数
查看>>
scala-05-map映射
查看>>
Spring Boot - how to configure port
查看>>
右键添加复制路径选项
查看>>
DocFetcher 本机文件搜索工具
查看>>