void CWireLessDlg::CreatePakcetFile()
{
 CString   strFolderPath;
 strFolderPath = _T("D:\\无线通信板报文存储文件夹");
 if(!PathIsDirectory(strFolderPath))//判断路径是否存在     
    CreateDirectory(strFolderPath,NULL);//新建文件夹
 strFolderPath = _T("D:\\无线通信板报文存储文件夹\\UDP");
 if(!PathIsDirectory(strFolderPath))//判断路径是否存在     
    CreateDirectory(strFolderPath,NULL);//新建文件夹
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-04
  • 2022-01-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-17
  • 2021-08-09
  • 2022-12-23
  • 2021-08-09
  • 2022-12-23
  • 2021-08-09
  • 2022-12-23
相关资源
相似解决方案