Reputation: 2763
I have a file which is open and read the content of the file in vc++. Then it is encrypted. I need to save this encrypted data to another newly created file. How can I save this encrypted data to the newly created file?
Upvotes: 0
Views: 881
Reputation: 7945
CreateFile - opens and creates files.
WriteFile - writes into file.
If you use MFC, check this stuff.
Upvotes: 1