up vote 5 down vote favorite
share [g+] share [fb]

Should I create two CFile objects and copy one into the other character by character? Or is there something in the library that will do this for me?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 9 down vote accepted

I would just use the CopyFile Win32 API function, but the example code in the CFile::Open documentation shows how to copy files with CFile (using pretty much the method you suggest).

link|improve this answer
3  
+1 Don't forget that MFC is just a Win32 wrapper. When doing simple, low-level actions it's often most efficient to call the API directly. – Aidan Ryan Oct 10 '08 at 22:13
feedback

It depends on what you want to do. There are a number of ways to copy files:

  • CopyFile()
  • CopyFileEx()
  • SHFileOperation()
  • IFileOperation (replaces SHFileOperation() in Vista)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.