如何将文件保存到指定的路径

如何将文件保存到指定的路径

本文介绍了如何将文件保存到指定的路径?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,



i希望使用CStdioFile和CFileDialog的概念将文件保存到指定的路径。



i就像



CFileDialog * dlg =新的CFileDialog(FALSE,Ltxt); //打开保存文件对话框

dlg-> DoModal();

CStdioFile fle;

fle.Open(dlg-> GetFileName(),CFile :: modeCreate | CFile :: modeWrite);



但是当我更改savedialog中的路径时,它仍然只保存在我的项目文件夹中。



所以如何使用我的fle.open()中的路径?





谢谢...

Hello,

i want to save the file to the specified path using the concept of CStdioFile and CFileDialog.

i am doing like

CFileDialog *dlg = new CFileDialog(FALSE,L"txt"); // open the save file dialog
dlg->DoModal();
CStdioFile fle;
fle.Open(dlg->GetFileName(),CFile::modeCreate|CFile::modeWrite);

but when i am changing the path in the savedialog, it still save in my project folder only.

so how to use the path in my fle.open() ?


Thanks...

推荐答案


这篇关于如何将文件保存到指定的路径?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 11:58