0

I want to use this function to zip up a folder from a C++ console application. No examples are given in the article of how to use the function from C++, just C# or VB, and I can't find any other code samples anywhere.

The article doesn't really even clarify whether the function is available in C++. Is this function supported in C++? And if so, how do I call it?

Thanks.

Bill Walton
  • 811
  • 1
  • 16
  • 31

1 Answers1

0

This doesn't answer your specific question of calling that .NET method you requested, but, if you want to compress some files using native C++, look at using Zlib and there is a contribution app called minizip which you can use for opening / creating zip archives.

Mark Ingram
  • 71,849
  • 51
  • 176
  • 230