Nelson T Joseph
Nelson T Joseph

Reputation: 2763

How to create and save a file in vc++

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

Answers (1)

Andrey Atapin
Andrey Atapin

Reputation: 7945

CreateFile - opens and creates files.
WriteFile - writes into file.

If you use MFC, check this stuff.

Upvotes: 1

Related Questions