<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: FZip Alpha Release: Create And Modify ZIP Archives</title>
	<atom:link href="http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/feed/" rel="self" type="application/rss+xml" />
	<link>http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/</link>
	<description>Claus Wahlers on Application Development, Web Standards and what not</description>
	<lastBuildDate>Wed, 21 Jul 2010 15:22:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Parks</title>
		<link>http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/comment-page-1/#comment-45371</link>
		<dc:creator>Parks</dc:creator>
		<pubDate>Wed, 23 Sep 2009 01:55:26 +0000</pubDate>
		<guid isPermaLink="false">http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/#comment-45371</guid>
		<description>Nice library.

I&#039;m having one issue that I haven&#039;t been able to overcome. I&#039;m creating a zip file using your library. The resulting zip appears fine and can be opened with 7zip or through Windows with no problem. However, I&#039;m trying to read the file with python (2.5) and am getting a BadZipFile exception.

The curious thing is that this error occurs with your library or the nochump library...which leads me to wonder if its an issue either with python or the  underlying compress method in flex.

Any thoughts?  Thanks.</description>
		<content:encoded><![CDATA[<p>Nice library.</p>
<p>I&#8217;m having one issue that I haven&#8217;t been able to overcome. I&#8217;m creating a zip file using your library. The resulting zip appears fine and can be opened with 7zip or through Windows with no problem. However, I&#8217;m trying to read the file with python (2.5) and am getting a BadZipFile exception.</p>
<p>The curious thing is that this error occurs with your library or the nochump library&#8230;which leads me to wonder if its an issue either with python or the  underlying compress method in flex.</p>
<p>Any thoughts?  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kim Adams</title>
		<link>http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/comment-page-1/#comment-41463</link>
		<dc:creator>Kim Adams</dc:creator>
		<pubDate>Fri, 05 Jun 2009 15:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/#comment-41463</guid>
		<description>Great library! This is enormously useful. Thank you!

Here&#039;s a couple of things that I found confusing, hopefully the solutions that I found can help someone else.

1. How do you determine if the checksum has been properly embedded?
Install Python somewhere on your computer, navigate to the directory. Drag the zipped file that you want to use and the fzip-prepare.py script into the python directory. Right click fzip-prepare.py and select &quot;edit with IDLE&quot;. Run the console. Type these two lines:
    import os
    os.system(&quot;python fzip-prepare.py yourZip.zip&quot;)
If the console returns 0, you&#039;ve successfully added the checksum, any other number indicates some failure.

2. What should the directory structure inside the zip look like for fZip to work?
When you download the icons, the demo source code expects the zipped file to be the &#039;icons&#039; directory. To have the code immediately work either select the &#039;icons&#039; subdirectory and zip/embed the checksum into that. Or, edit the path to the icons in provided demo source code.</description>
		<content:encoded><![CDATA[<p>Great library! This is enormously useful. Thank you!</p>
<p>Here&#8217;s a couple of things that I found confusing, hopefully the solutions that I found can help someone else.</p>
<p>1. How do you determine if the checksum has been properly embedded?<br />
Install Python somewhere on your computer, navigate to the directory. Drag the zipped file that you want to use and the fzip-prepare.py script into the python directory. Right click fzip-prepare.py and select &#8220;edit with IDLE&#8221;. Run the console. Type these two lines:<br />
    import os<br />
    os.system(&#8220;python fzip-prepare.py yourZip.zip&#8221;)<br />
If the console returns 0, you&#8217;ve successfully added the checksum, any other number indicates some failure.</p>
<p>2. What should the directory structure inside the zip look like for fZip to work?<br />
When you download the icons, the demo source code expects the zipped file to be the &#8216;icons&#8217; directory. To have the code immediately work either select the &#8216;icons&#8217; subdirectory and zip/embed the checksum into that. Or, edit the path to the icons in provided demo source code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Njal Gjermundshaug</title>
		<link>http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/comment-page-1/#comment-37997</link>
		<dc:creator>Njal Gjermundshaug</dc:creator>
		<pubDate>Thu, 26 Mar 2009 17:41:44 +0000</pubDate>
		<guid isPermaLink="false">http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/#comment-37997</guid>
		<description>Vishal &amp; Mitesh: 

Turned out zipping folders was pretty straight forward :)

To place a file inside a folder in the zip file, just specify the foldername followed by &quot;/&quot; before the filename..:

zip.addFile(&quot;MyFolder/&quot; + inpFile.name, bArray);

Claus: Great work!! You saved my day!</description>
		<content:encoded><![CDATA[<p>Vishal &amp; Mitesh: </p>
<p>Turned out zipping folders was pretty straight forward :)</p>
<p>To place a file inside a folder in the zip file, just specify the foldername followed by &#8220;/&#8221; before the filename..:</p>
<p>zip.addFile(&#8220;MyFolder/&#8221; + inpFile.name, bArray);</p>
<p>Claus: Great work!! You saved my day!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Njal Gjermundshaug</title>
		<link>http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/comment-page-1/#comment-37994</link>
		<dc:creator>Njal Gjermundshaug</dc:creator>
		<pubDate>Thu, 26 Mar 2009 15:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/#comment-37994</guid>
		<description>Support for zipping folders would be great!</description>
		<content:encoded><![CDATA[<p>Support for zipping folders would be great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Claus Wahlers</title>
		<link>http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/comment-page-1/#comment-37665</link>
		<dc:creator>Claus Wahlers</dc:creator>
		<pubDate>Mon, 16 Mar 2009 15:59:06 +0000</pubDate>
		<guid isPermaLink="false">http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/#comment-37665</guid>
		<description>Guillermo, unfortunately that&#039;s not possible, as AIR generally doesn&#039;t support setting file permissions.</description>
		<content:encoded><![CDATA[<p>Guillermo, unfortunately that&#8217;s not possible, as AIR generally doesn&#8217;t support setting file permissions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guillermo</title>
		<link>http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/comment-page-1/#comment-37662</link>
		<dc:creator>Guillermo</dc:creator>
		<pubDate>Mon, 16 Mar 2009 15:50:10 +0000</pubDate>
		<guid isPermaLink="false">http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/#comment-37662</guid>
		<description>I am working with OSX.  Is there any way to maintain the file permissions?  If I extract a file using the OS or any tools the file permissions are maintained.  In this case it&#039;s an executable file.  When I use this lib, the permissions are lost when I decompress.  I used this tool to create the zip file to make sure it&#039;s zipped properly. I am working with Flex Builder 3 building an adobe air app.</description>
		<content:encoded><![CDATA[<p>I am working with OSX.  Is there any way to maintain the file permissions?  If I extract a file using the OS or any tools the file permissions are maintained.  In this case it&#8217;s an executable file.  When I use this lib, the permissions are lost when I decompress.  I used this tool to create the zip file to make sure it&#8217;s zipped properly. I am working with Flex Builder 3 building an adobe air app.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitesh dave</title>
		<link>http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/comment-page-1/#comment-35992</link>
		<dc:creator>Mitesh dave</dc:creator>
		<pubDate>Thu, 19 Feb 2009 14:32:51 +0000</pubDate>
		<guid isPermaLink="false">http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/#comment-35992</guid>
		<description>Hii even i have the same issue has Vishal has,can anyone gimme a idea how can i zip a whole folder</description>
		<content:encoded><![CDATA[<p>Hii even i have the same issue has Vishal has,can anyone gimme a idea how can i zip a whole folder</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vishal</title>
		<link>http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/comment-page-1/#comment-34714</link>
		<dc:creator>Vishal</dc:creator>
		<pubDate>Thu, 05 Feb 2009 09:49:11 +0000</pubDate>
		<guid isPermaLink="false">http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/#comment-34714</guid>
		<description>Can anyone suggest how to zip the whole folder?? Any sample for that?</description>
		<content:encoded><![CDATA[<p>Can anyone suggest how to zip the whole folder?? Any sample for that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hannes</title>
		<link>http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/comment-page-1/#comment-29678</link>
		<dc:creator>Hannes</dc:creator>
		<pubDate>Wed, 17 Dec 2008 11:08:33 +0000</pubDate>
		<guid isPermaLink="false">http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/#comment-29678</guid>
		<description>hi

your library is very cool. thank you!

i have one question:
how is it possible to extract an empty folder?

i&#039;m not able to do that. When the folder contains files it works and the folder is here.

thank you very much</description>
		<content:encoded><![CDATA[<p>hi</p>
<p>your library is very cool. thank you!</p>
<p>i have one question:<br />
how is it possible to extract an empty folder?</p>
<p>i&#8217;m not able to do that. When the folder contains files it works and the folder is here.</p>
<p>thank you very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: borf</title>
		<link>http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/comment-page-1/#comment-25841</link>
		<dc:creator>borf</dc:creator>
		<pubDate>Wed, 19 Nov 2008 21:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://wahlers.com.br/claus/blog/fzip-alpha-release-create-and-modify-zip-archives/#comment-25841</guid>
		<description>I am using your library to extract a zip file created with WinZip. The zip file is created with winzip 9.0 with normal compression. I then ran the zip file through your python script which only outp uts the following:

sys:1: DeprecationWarning: struct integer overflow masking is deprecated

The zip file is modified however so I assume that it worked. Once I run my AS3 program and use FZip to extract the zip file I get the following error below. Any assistance appreciated.

FZip.as line 514
Adler32 checksum not found
at deng.fzip::FZipFile/parseContent()[C:\Projects\fzip\trunk\src\deng\fzip\FZipFile.as:514]
at deng.fzip::FZipFile/parseFileContent()[C:\Projects\fzip\trunk\src\deng\fzip\FZipFile.as:413]
at deng.fzip::FZipFile/parse()[C:\Projects\fzip\trunk\src\deng\fzip\FZipFile.as:362]
at deng.fzip::FZip/parseLocalfile()[C:\Projects\fzip\trunk\src\deng\fzip\FZip.as:431]
at deng.fzip::FZip/parse()[C:\Projects\fzip\trunk\src\deng\fzip\FZip.as:392]
at deng.fzip::FZip/loadBytes()[C:\Projects\fzip\trunk\src\deng\fzip\FZip.as:179]</description>
		<content:encoded><![CDATA[<p>I am using your library to extract a zip file created with WinZip. The zip file is created with winzip 9.0 with normal compression. I then ran the zip file through your python script which only outp uts the following:</p>
<p>sys:1: DeprecationWarning: struct integer overflow masking is deprecated</p>
<p>The zip file is modified however so I assume that it worked. Once I run my AS3 program and use FZip to extract the zip file I get the following error below. Any assistance appreciated.</p>
<p>FZip.as line 514<br />
Adler32 checksum not found<br />
at deng.fzip::FZipFile/parseContent()[C:\Projects\fzip\trunk\src\deng\fzip\FZipFile.as:514]<br />
at deng.fzip::FZipFile/parseFileContent()[C:\Projects\fzip\trunk\src\deng\fzip\FZipFile.as:413]<br />
at deng.fzip::FZipFile/parse()[C:\Projects\fzip\trunk\src\deng\fzip\FZipFile.as:362]<br />
at deng.fzip::FZip/parseLocalfile()[C:\Projects\fzip\trunk\src\deng\fzip\FZip.as:431]<br />
at deng.fzip::FZip/parse()[C:\Projects\fzip\trunk\src\deng\fzip\FZip.as:392]<br />
at deng.fzip::FZip/loadBytes()[C:\Projects\fzip\trunk\src\deng\fzip\FZip.as:179]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
