调出windows search
BOOL SearchFile(CString path)
{
if(path.Right(1).Compare("
\\")!=0)
path+="\\";
SHELLEXECUTEINFO ss;
ZeroMemory(&ss,sizeof(ss));
ss.cbSize = sizeof(ss);
ss.hwnd = GetSafeHwnd();
ss.nShow = SW_SHOW;
ss.fMask = 0;
ss.lpVerb = _T("find");
CString sPath=path;
ss.lpFile = (LPCTSTR)sPath;
return ShellExecuteEx(&ss);
}