ホーム » MFC » ファイルを選択した状態で explorer.exe
カテゴリー
アーカイブ
explorer.exe /select,c:~exmple.txt
http://support.microsoft.com/kb/314853/ja
https://www.betaarchive.com/wiki/index.php?title=Microsoft_KB_Archive/314853
void CXxxxDoc::OnExecExplorer()
{
CString docName = GetPathName() ;
ShellExec se ;
se.SetNon2QMark(TRUE) ;
se.SetFile(_T("explorer.exe")) ;
se.SetParamaters(_T("/e,/select,")+docName) ;
se.Execute() ;
}
ShellExc.hxx , ShellExc.cxx
S_Exec.hxx
Is this 投稿 useful?
Useful
Useless
0 of 0 people say this 投稿 is useful.
関連