码迷,mamicode.com
首页 > 其他好文 > 详细

CFileDialog 打开文件夹文件 保存文件夹文件

时间:2014-08-10 15:21:50      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:des   style   http   color   使用   os   io   strong   

 

 

格式说明:

 

 

explicit CFileDialog(
   BOOL bOpenFileDialog,                         //TRUE 为打开, FALSE 为保存        


   LPCTSTR lpszDefExt = NULL,                 // 默认文件扩展名

 


   LPCTSTR lpszFileName = NULL,            //文件对话框中 初始的文件名称


   DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,         //设定对话框功能

 


   LPCTSTR lpszFilter = NULL,                   //文件过滤

 


   CWnd* pParentWnd = NULL,


   DWORD dwSize = 0,                            // The size of theOPENFILENAME structure, 默觉得0 ,表示自己主动确定正确的大小


   BOOL bVistaStyle = TRUE
);

 

 

參数含义具体说明:

 

[in] bOpenFileDialog

The parameter that specifies what type of dialog box to create. Set it to TRUE to construct a File Open dialog box. Set it to FALSE to construct aFile Save As dialog box.

 

[in] lpszDefExt

The default file name extension. If the user does not include an extension in the Filename box, the extension specified bylpszDefExt is automatically appended to the file name. If this parameter isNULL, no extension is appended.

 

[in] lpszFileName

The initial file name that appears in the Filename box. If NULL, no initial file name appears.

 

[in] dwFlags

A combination of one or more flags that you can use to customize the dialog box. For a description of these flags, see theOPENFILENAME structure in the Windows SDK. If you modify them_ofn.Flags structure member, use a bitwise-OR operator in your changes to keep the default behavior intact.

 

[in] lpszFilter

A series of string pairs that specify filters you can apply to the file. If you specify file filters, only files that match filter criteria will appear in the Files list. See the Remarks section for more information about how to work with file filters.

 

[in] pParentWnd

A pointer to the parent or owner window of the file dialog box.

 

[in] dwSize

The size of the OPENFILENAME structure. This value depends on the operating system version. MFC used this parameter to determine the appropriate kind of dialog box to create (for example, new Windows 2000 dialog boxes instead of NT4 dialog boxes). The default size of 0 means that the MFC code will determine the correct dialog box size to use based on the operating system version on which the program is run.

 

[in] bVistaStyle

Note   This parameter is applicable only if you are compiling in Windows Vista.

The parameter that specifies the style of the file dialog. Set it to TRUE to use the new Vista style file dialogs. Otherwise, the old style of dialog boxes will be used. See the Remarks section for more information about compiling under Vista.

 

       Either a File Open or File Save As dialog box is constructed, depending on the value ofbOpenFileDialog.

 

To enable the user to select multiple files, set the OFN_ALLOWMULTISELECT flag before you callDoModal.

 

You must supply your own file name buffer to store the returned list of multiple file names. Do this by replacing

 

m_ofn.lpstrFile with a pointer to a buffer you have allocated, after you construct theCFileDialog, but before you call

 

DoModal. Additionally, you must set m_ofn.nMaxFile with the number of characters in the buffer pointed to by

 

m_ofn.lpstrFile. If you set the maximum number of files to be selected ton, the necessary buffer size isn*

 

(_MAX_PATH + 1) + 1.

 

 

实例1 打开文件:

 

 

 

 

实例2 打开文件:

 

 

实例3 打开文件:

 

 

 实例4 打开文件,并设置对话框标题

	CFileDialog nFileDlg(TRUE,L"xml",L"",OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,L"XML文件(*.xml)|*.xml||");
	nFileDlg.m_pOFN->lpstrTitle=L"打开空白任务"; //文件对话框标题
	if(nFileDlg.DoModal()==IDOK)
	{
		m_PicFolder=L"Blank";
		m_XMLFolder=L"Blank";

		CString szXmlFilePath;
		CString szXmlParentPath;
		CString nXMLFileName;

		szXmlFilePath=nFileDlg.GetPathName();  //  绝对路径文件名称
		nXMLFileName=nFileDlg.GetFileName();   //  不带路径的文件名称
		szXmlParentPath=szXmlFilePath.Left(szXmlFilePath.GetLength()-nXMLFileName.GetLength()-1);  //文件所在的父文件夹


	}




 

 

实例5  保存文件:

 

 

 

 

 以上是使用 CFileDialog打开文件,以下是使用SHBrowseForFolder打开路径:


OnBnClickedButton1()
{
	BROWSEINFO bi;
	ZeroMemory(&bi,sizeof(BROWSEINFO));
	LPMALLOC pMalloc;
	LPITEMIDLIST pidl = SHBrowseForFolder(&bi);

	if (pidl==NULL)
		return;

	if(pidl != NULL)
	{
		TCHAR * path = new TCHAR[MAX_PATH];	

		SHGetPathFromIDList(pidl,path);
		//		MessageBox(NULL,path,TEXT("Choose"),MB_OK);
		if(SUCCEEDED(SHGetMalloc(&pMalloc)))//pidl指向的对象用完应该释放,之前忽略了
		{
			pMalloc->Free(pidl);
			pMalloc->Release();
		}
		m_Path=path;
		UpdateData(FALSE);	

		delete [] path;
	}





}


CFileDialog 打开文件夹文件 保存文件夹文件,布布扣,bubuko.com

CFileDialog 打开文件夹文件 保存文件夹文件

标签:des   style   http   color   使用   os   io   strong   

原文地址:http://www.cnblogs.com/hrhguanli/p/3902723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!