• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Copy and rename file using Visual C++ ?

larva

Member
Hi guys,

Anyone have the source code for copy ,rename and delete file using Visual C++ 6.0 ? Thanks !

regards,
Larva
 
Another API that you may want to look at is the SHFileOperation(...) function.

This function uses the Windows shell to do the copy/rename/delete operations, so you also get the progress bar displayed for free. Pretty useful if you are dealing with a lot of files (or a few very large ones), so you don't have to do the extra work to make your program not look like it is not responding during the operation.


🙂atwl
 
Back
Top