Posted on 2013-03-29 17:26
盛胜 阅读(252)
评论(0) 编辑 收藏 引用
if (PathFileExists(path))
{
CString tempStr;
tempStr.Format("shell32.dll,OpenAs_RunDLL %s",path);
int isError=(int)ShellExecute(NULL, "open", "rundll32.exe ", tempStr, "", SW_SHOW);
if (isError<32)
{
MessageBox("相应文件打开失败","提示");
}
}
else
{
MessageBox("文件路径有误!");
}