如何设置CFileDialog的默认文件类型?

时间:2011-01-20 11:34:42

标签: c++ visual-c++ mfc file-type cfiledialog

我正在使用CFileDialog来显示打开的文件对话框。我已按如下方式设置过滤器:

static TCHAR BASED_CODE szFilter[] = _T("Chart Files (*.xlc)|*.xlc|")
                                     _T("Worksheet Files (*.xls)|*.xls|Data Files (*.xlc;*.xls)|")
                                     _T("*.xlc; *.xls|All Files (*.*)|*.*||");

每当我DoModal对话框时,我都需要将默认文件类型设置为“Worksheet Files”。我无法弄清楚如何做到这一点。 MS Paint正在执行,它在我们打开打开文件对话框时选择“所有图片文件”。

请让我知道怎么做。

2 个答案:

答案 0 :(得分:0)

您正在寻找SetDefExt function这允许您为打开/保存文件对话框指定默认文件扩展名。请记住,您指定的字符串包含句点(。)。

当然,您也可以在constructor中指定此内容。第二个参数是默认扩展名(lpszDefExt)。

答案 1 :(得分:0)

您应该读写 此代码将在程序运行时执行此工作。为了能够在下次运行程序时显示上一次使用的选择,可以将LastIndex的值存储在注册表中。

// A dialog box with several filters for various media file types
static int LastIndex = -1;          // Holds the last used filter. You can store it in the Registry to use it during next run.

const TCHAR szFilter[] = _T("Video Files (*.mpg, *.mov, *.mp4)|*.mpg;*.mov;*.mp4|Audio Files (*.wav, *.mp3, *.m4a, *.flac)|*.wav;*.mp3;*.m4a;*.flac|MXF Files (*.mxf)|*.mxf|All Files (*.*)|*.*||");

CFileDialog dlg(TRUE, _T("Select Media File"), NULL, OFN_HIDEREADONLY | OFN_FILEMUSTEXIST, szFilter, this);

if(LastIndex != -1) dlg.m_ofn.nFilterIndex = LastIndex; // restore last used index 
                                                        // from last time

if (dlg.DoModal() == IDOK)
{
    LastIndex = dlg.m_ofn.nFilterIndex; // Store last used index for next time
    CString sFilePath = dlg.GetPathName();
}