How do I invoke the shell “file copy dialog” to report the progress of a copy in Win32?

前端 未结 3 1275
無奈伤痛
無奈伤痛 2020-12-18 08:52

How can I copy files by invoking windows \"copy files\" dialog to do it?

SHFileOperation seems like a option, but it is inside our process.

By t

3条回答
  •  梦毁少年i
    2020-12-18 09:05

    Yes, this is what the SHFileOperation function is designed for. It accepts an SHFILEOPSTRUCT structure as its only parameter, which you can use to specify the options that you want.

    However, it has been replaced in Windows Vista and later versions with the IFileOperation interface.

提交回复
热议问题