void CWireLessDlg::CreatePakcetFile()
{
CString strFolderPath;
strFolderPath = _T("D:\\無線通信板報文存儲文件夾");
if(!PathIsDirectory(strFolderPath))//判斷路徑是否存在
CreateDirectory(strFolderPath,NULL);//新建文件夾
strFolderPath = _T("D:\\無線通信板報文存儲文件夾\\UDP");
if(!PathIsDirectory(strFolderPath))//判斷路徑是否存在
CreateDirectory(strFolderPath,NULL);//新建文件夾
}
