复制 CFileDialog 文件
我正在使用 CFileDialog 对话框在程序中打开文件。当这个文件被打开时,我还想将该文件的副本保存到我的程序的目录中。我该怎么做?
这就是我打开文件的方式:
CFileDialog fileDlg(TRUE, NULL, NULL, OFN_FILEMUSTEXIST | OFN_HIDEREADONLY, "All Files (*.*)|*.*||", this);
感谢您的帮助。
I'm using a CFileDialog dialog box to open a file in my program. When this file gets opened, I'd also like to save a copy of that file into the directory of my program. How can I do this?
This is how I' m opening the file:
CFileDialog fileDlg(TRUE, NULL, NULL, OFN_FILEMUSTEXIST | OFN_HIDEREADONLY, "All Files (*.*)|*.*||", this);
Thanks for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文件对话框不复制文件。返回后,您将获得选定的文件,然后使用常规文件复制 API 来复制文件。
The file dialog doesn't copy files. After it returns, you get the selected file, then use regular file copy API to copy the file.