Click here to Skip to main content
15,891,777 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,

how can i check if winzip is running(compressing files)?
Posted
Comments
bbirajdar 16-Apr-12 5:10am    
Look at the monitor when you are compressing the files with winzip. The winzip 'compressing' window is displayed with the percentage of task completed.
Sergey Alexandrovich Kryukov 10-Jul-12 23:10pm    
I notice that you got a trend, or a way of thinking, to solve all problem by running some code as a separate process. This is a really bad idea...
--SA

1 solution

Please see my comment to the question. In noticed it from this and other answers. What typically try to do is based on a big misconception. Processes are well isolated, so trying to "integrate" some existing code by just running it is a wrong idea. Developers of OS tried hard to prevent it, why pushing the limits for the needs of regular applications, not complicated system utilities?

You really need to learn using libraries, not applications.

Take ZIP compression/decompression. Here is the right approach: consider using one of the following the following alternatives:



I would also add SevenZipSharp, a .NET wrapper of the famous 7-Zip:
http://en.wikipedia.org/wiki/7-Zip[^],
http://sevenzipsharp.codeplex.com/[^].

Good luck,
—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900