zoukankan      html  css  js  c++  java
  • CFileDialog 打开文件夹文件 保存文件夹文件

    格式说明:

    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;
    	}
    
    
    
    
    
    }
    


  • 相关阅读:
    Python深浅拷贝&垃圾回收&with语句
    面向对象
    三器(装饰器,生成器,迭代器)
    Redis数据类型&优缺点&持久化方式
    localStroge和sessionStorge
    redis哨兵&codis
    Redis分布式锁
    技术点剖析
    【牛客网】牛客练习赛4 A Laptop【树状数组+离散化】
    组合数有关的公式及常用求和【数学--排列组合】
  • 原文地址:https://www.cnblogs.com/hrhguanli/p/3902723.html
Copyright © 2011-2022 走看看