1

I would like to remove a section and also key values under the section from an INI file using Win32 API.

Can somebody tell me how can I do that?

Raveendra M Pai
  • 445
  • 2
  • 10
  • 27

1 Answers1

9

To delete the section and all the entries you will use the somewhat counter-intuitive function named WritePrivateProfileString with the lpKeyName parameter set to NULL. This will delete the entire section stored in the lpAppName field, including all the entries.