复制 CFileDialog 文件

发布于 2024-11-24 01:23:19 字数 246 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

单身狗的梦 2024-12-01 01:23:19

文件对话框不复制文件。返回后,您将获得选定的文件,然后使用常规文件复制 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文