vc得到当前目录和系统目录,从字符串中提取数字

  1.得到当前目录
   char  CurPath[MAX_PATH];
  DWORD size=MAX_PATH;
  GetCurrentDirectory(size,CurPath);
  AfxMessageBox(CurPath);

2.得到系统目录,用函数GetSystemDirectory)
3.从字符串中提取数字
  CString strNum;
  CString str("测试125各国87kk");
  strNum = GetStr(str);
  AfxMessageBox(strNum);

你可能感兴趣的:(vc得到当前目录和系统目录,从字符串中提取数字)