User1801501748 posted
is there anyway we can use windows xp builtin functionality to compress(zip) and expand(unzip) files and folders., using C# or any .net language.?? is there a way to access windows, like "win api" in the past.?? thanks, prasad
User-1087604911 posted
Theres very little need to go to the Win32 API as the BCL with 9800 managed classes is so feature rich that you can do virtually everything in managed code. That being said, I am not aware of any zip/unzip classes off the top of my head. If you must go to the
Windows API, you use Platform Invoke (P/Invoke) a topic too complex for this topic. Search MSDN on P/Invoke.