<br><br><div class="gmail_quote">On 14 October 2010 07:12,  <span dir="ltr">&lt;<a href="mailto:delegbede@dudupay.com">delegbede@dudupay.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

Does window os have a zip command for python like linux and unix.<br>
If yes, please what is it.<br>
If no, please what does it use to create a zip folder.<br>
I am working on an example in byte of python but the zip command is from linux but I use windows.<br>
Thank you.<br></blockquote></div><br>Windows does not have a command line wrapper for it&#39;s zipped folders functionality (which as you probably know should more properly be called zip files as that&#39;s what they are, notwithstanding the fact that Windows Explorer makes them look like folders in the UI.)  Several third party command line versions exist however, including proprietary ones like Winzip and open source ones. (Google yielded for example this: <a href="http://www.pcreview.co.uk/forums/thread-103518.php">http://www.pcreview.co.uk/forums/thread-103518.php</a> )<br>
<br>However, you should perhaps have a look at Python&#39;s &quot;zipfile&quot; module which should be able to create zip files as well.  See e.g. <a href="http://docs.python.org/release/2.5.2/lib/module-zipfile.html">http://docs.python.org/release/2.5.2/lib/module-zipfile.html</a><br>
<br>Walter<br>