MFC中打开指定文件夹并默认选中该文件夹中的某个文件


相关代码如下:

CString strParam(_T("/select,"));
strParam += m_strLastFilePath;
ShellExecute(0,_T("open"),_T("Explorer.exe"),m_strLastFilePath,0,SW_NORMAL);

其中:  m_strLastFilePath是指定的文件名(包含全路径)

你可能感兴趣的:(MFC中打开指定文件夹并默认选中该文件夹中的某个文件)