CMFCShellListCtrl 类的 GetItemPath 方法用于获取列表控件中特定项的路径。这个方法的签名通常是:
CString CMFCShellListCtrl::GetItemPath(int nIndex) const;

其中,nIndex 参数表示要获取路径的项的索引。这个方法返回一个 CString 对象,表示指定项的路径。

使用示例:
CMFCShellListCtrl mfcShellListCtrl;

// 假设你已经填充了列表控件项

int nIndex = 0; // 要获取路径的项的索引
CString strItemPath = mfcShellListCtrl.GetItemPath(nIndex);

// 现在 strItemPath 包含了指定项的路径

请确保在调用该方法之前已经填充了列表控件的项,否则可能会导致不确定的行为。


转载请注明出处:http://www.zyzy.cn/article/detail/20053/MFC/CMFCShellListCtrl