<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://xceed.com/CS/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Xceed Zip for .NET</title><link>http://xceed.com/CS/forums/64/ShowForum.aspx</link><description>Questions and Answers Relating to Xceed Zip for .NET</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP2 (Debug Build: 61120.2)</generator><item><title>How do I open a folder using the SfxExecuteAfter property?</title><link>http://xceed.com/CS/forums/thread/28299.aspx</link><pubDate>Fri, 10 Oct 2008 15:46:34 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28299</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28299.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28299</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;To open a folder with the SfxExecuteAfter property (ExecuteAfter for Xceed Zip for .NET), you need to separate the executable name from the folder name with a pipe (|). For example:&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;&lt;strong&gt;Xceed Zip ActiveX :&lt;br/&gt;&lt;/strong&gt;XceedZip1.SfxExecuteAfter = "explorer.exe|d:\test"&lt;br/&gt;&lt;br/&gt;&lt;/font&gt;&lt;font size="1"&gt;&lt;strong&gt;Xceed Zip for .NET and Xceed Zip for .NET Compact Framework&lt;br/&gt;&lt;/strong&gt;//sfx is of type XceedSfxPrefix&lt;br/&gt;sfx.ExecuteAfter.Add( "explorer.exe|d:\\test" );&lt;/font&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;/body&gt;</description></item><item><title>Can the Self-Extractor Dialogs be disabled?</title><link>http://xceed.com/CS/forums/thread/28295.aspx</link><pubDate>Fri, 10 Oct 2008 15:26:41 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28295</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28295.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28295</wfw:commentRss><description>&lt;span&gt;If you use the SfxClearMessages method when creating your executable zip file, then ALL dialogs are disabled. The only way to display a dialog, or several dialogs, is to use the SfxMessages property. For example, if you want to display the "Success Dialog" then you need to use the following code:&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;XceedZip1.SfxMessages(xsmSuccess) = "Unzip successful."&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br/&gt;With Xceed Zip for .NET and Xceed Zip for .NET Compact Framework, the messages can be disabled using the following code:&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;sfxPrefix.DialogMessages.Clear();&lt;/font&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;</description></item><item><title>How do I caculate the CRC of a group of bytes (For example 04 01 00 47) using the CalculateCrc32 method?</title><link>http://xceed.com/CS/forums/thread/28301.aspx</link><pubDate>Fri, 10 Oct 2008 13:59:45 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28301</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28301.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28301</wfw:commentRss><description>&lt;body&gt;&lt;body&gt;&lt;span&gt;The following example demonstrates how to calcuate the CRC for a group if bytes:&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;Dim data() As Byte = {&amp;H4, &amp;H1, &amp;H0, &amp;H47}&lt;br/&gt;&lt;br/&gt;' When we wish to calculate a CRC32 in multiple calls to&lt;br/&gt;' CalculateCrc32, we simply need to provide the&lt;br/&gt;' "up to now" crc32 as the fourth parameter.&lt;br/&gt;' On the first call, we pass zero.&lt;br/&gt;Dim crc32 As Long&lt;br/&gt;crc32 = ChecksumStream.CalculateCrc32(data, 0, data.Length, 0)&lt;br/&gt;&lt;br/&gt;' To fold a crc32 to a crc16, we XOR the two halves&lt;br/&gt;' of the crc32. In VB.NET, there is no "shift" operator.&lt;br/&gt;' But everytime we shift one bit to the right, we divide&lt;br/&gt;' by two. So shifting 16 bits to the right is the same&lt;br/&gt;' as dividing by 2^16 (65536).&lt;br/&gt;Dim crc16 As Integer&lt;br/&gt;crc16 = (crc32 \ 65536) Xor (crc32 And &amp;HFFFF)&lt;br/&gt;&lt;br/&gt;Console.WriteLine("0x{0:X8} -&amp;gt; 0x{1:X4}", crc32, crc16)&lt;/font&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;/body&gt;&lt;/body&gt;</description></item><item><title>Is it possible to create a zip file in memory using Xceed Zip?</title><link>http://xceed.com/CS/forums/thread/28298.aspx</link><pubDate>Fri, 10 Oct 2008 13:58:51 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28298</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28298.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28298</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;With the ActiveX version of the Xceed Zip Compression Library, it is not possible to create a zip file in memory.&lt;br/&gt;&lt;br/&gt;As of version 2.0 of Xceed Zip for .NET, you simply need to use an instance of the MemoryFile class in the constructor of your ZipArchive class to create a zip file in memory. For example:&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;Dim folder As New DiskFolder( "c:\windows\fonts" )&lt;br/&gt;Dim zip As New ZipArchive( New MemoryFile( "RAM_File", "fonts.zip" ) )&lt;br/&gt;&lt;br/&gt;folder.CopyFilesTo( zip, false, true )&lt;/font&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;/body&gt;</description></item><item><title>How do I read data from a stream to a zip file?</title><link>http://xceed.com/CS/forums/thread/28302.aspx</link><pubDate>Fri, 10 Oct 2008 13:50:08 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28302</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28302.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28302</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;Yes. The best way to do it would be to create a StreamFile around your stream and call the StreamFile's CopyTo method. For example:&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;byte[] data = System.Text.Encoding.Default.GetBytes( "This is the data in the sql db" );&lt;br/&gt;&lt;br/&gt;using( MemoryStream stream = new MemoryStream( data ) )&lt;br/&gt;{&lt;br/&gt;    StreamFile file = new StreamFile( stream );&lt;br/&gt;    file.Name = "file.ext";&lt;br/&gt;&lt;br/&gt;    ZipArchive zip = new ZipArchive( new DiskFile( @"d:\test.exe" ) );&lt;br/&gt;    zip.BeginUpdate();&lt;br/&gt;&lt;br/&gt;    XceedSfxPrefix sfx = new XceedSfxPrefix( new DiskFile( @"C:\Program Files\Xceed Components\Xceed Zip Compression Library 5.0\Sfx\xcdsfx32.bin" ) );&lt;br/&gt;&lt;br/&gt;    zip.SfxPrefix = sfx;&lt;br/&gt;&lt;br/&gt;    file.CopyTo( zip, true );&lt;br/&gt;    zip.EndUpdate();&lt;br/&gt;}&lt;/font&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;/body&gt;</description></item><item><title>How do I get the progress of the entire zip operation?</title><link>http://xceed.com/CS/forums/thread/28300.aspx</link><pubDate>Fri, 05 Sep 2008 18:53:37 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28300</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28300.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28300</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;In order to get the progress of the entire zip operation, you need to handle the ByteProgression, BuildingZipByteProgression and GatheringZipContentByteProgression events.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>Which compression option requires less CPU usage?</title><link>http://xceed.com/CS/forums/thread/28297.aspx</link><pubDate>Fri, 05 Sep 2008 18:15:50 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28297</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28297.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28297</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;The format you use has no impact on what % of the CPU we use. If two processes try to use the CPU at 100%, one won't win over the other. They will share 50% of it, the system slicing their respective threads equally.&lt;br/&gt;&lt;br/&gt;What you should consider instead is time to compress, and memory usage. That way, you will avoid pagefile swapping and use the CPU less often.&lt;br/&gt;&lt;br/&gt;The best choice would be to use the XceedStandardCompressionFormat, with the XceedDeflateCompressionMethod, with CompressionLevel at 1. You won't compress as much as using level 9, or using XceedBWTCompressionMethod, but "deflate" uses much less memory than "BWT", and level 1 compression does not fall too short from level 9 in term of size.&lt;br/&gt;&lt;br/&gt;As for choosing XceedStandardCompressionFormat over GZipCompressionFormat, the later one has a bigger header, and requires some more processing. It also uses a standard CRC32 checksum calculation, as opposed to the faster XceedStandardCompressionFormat's Adler32 checksum.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>How can I unzip a zip file using the CompressedStream class?</title><link>http://xceed.com/CS/forums/thread/28296.aspx</link><pubDate>Fri, 05 Sep 2008 17:57:10 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28296</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28296.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28296</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;The CompressedStream class can only handle Streams and not zip files. If you want to read the contents of a file contained within a zip file, then you will need to create a ZippedFile object around the file in question and use the OpenRead method to read the contents. You can then write the read contents to the text file.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>Does Xceed Zip for .NET support ASP.NET?</title><link>http://xceed.com/CS/forums/thread/28294.aspx</link><pubDate>Fri, 05 Sep 2008 17:39:20 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28294</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28294.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28294</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;Xceed Zip for .NET supports both version 1.1 and 2.0 of the .NET Framework (thus ASP.NET).&lt;/span&gt;&lt;/body&gt;</description></item><item><title>What languages can the Self-Extractor dialog boxes display?</title><link>http://xceed.com/CS/forums/thread/28293.aspx</link><pubDate>Fri, 05 Sep 2008 17:31:02 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28293</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28293.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28293</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;Unfortunately, the Self-extracting library does not support any other language other than English. For the meantime, there is no other way to add any other language for this module.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>ItemDoesNotExistException</title><link>http://xceed.com/CS/forums/thread/28292.aspx</link><pubDate>Fri, 05 Sep 2008 17:30:19 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28292</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28292.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28292</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;Since a zip file is case sensitive, you must use the appropriate case when specifying the name of the zipped file.&lt;br/&gt;&lt;br/&gt;If you are viewing the contents of the zip file with Winzip, make sure that the "Allow all upper case file names" option in the "Options\Configuration" menu is checked so that you can view the actual file names in the case where they are all in upper case.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>Icon for the Self-Extractor dialog looks distorted.</title><link>http://xceed.com/CS/forums/thread/28291.aspx</link><pubDate>Fri, 05 Sep 2008 17:29:08 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28291</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28291.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28291</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;You can fix this by making sure that your icon specification size is not more than 32x32 and set to 16 colors.&lt;br/&gt;&lt;br/&gt;When using the self-extractor module with Xceed Zip for .NET Compact Framework, it is not possible to modify the icon displayed by the self-extracting zip file.&lt;br/&gt;&lt;br/&gt;&lt;b&gt;This limitation also applies to Absolute Packager.&lt;/b&gt;&lt;/span&gt;&lt;/body&gt;</description></item><item><title>Does Xceed Zip have any limitations in regards to the number/size of files that will be added to the zip file and the actual size of the zip file itself?</title><link>http://xceed.com/CS/forums/thread/28290.aspx</link><pubDate>Fri, 05 Sep 2008 17:18:52 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28290</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28290.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28290</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;Version 4.x and LOWER of the ActiveX version of Xceed Zip has a limitation of 4 gigs and 65535 files.&lt;br/&gt;&lt;br/&gt;Even if you use the SplitSize property to create multiple parts, the limitation remains the same. If the split zip file surpasses the limitation, Xceed Zip will not be able to unzip the contents.&lt;br/&gt;&lt;br/&gt;As of version 5.0, Xceed Zip supports the Zip64 format. The Zip64 zip file format is the 64-bit counterpart of the zip file format that is used by PKZIP 4.5 and up. It supports up to 2^64 -1files within a zip archive as well as files that have a size greater than 4GB for a zip file size that can reach up to about 18 million terrabytes ( more precisely, 264 -1bits).&lt;br/&gt;&lt;br/&gt;Xceed Zip for .NET and Xceed Zip for .NET Compact Framework also supports Zip64.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>If I use the Xceed Zip Compression Library, Xceed Zip for .NET or Xceed Zip for .NET Compact Framework in a project, do I need an Export License?</title><link>http://xceed.com/CS/forums/thread/28289.aspx</link><pubDate>Fri, 05 Sep 2008 17:18:32 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28289</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28289.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28289</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;Neither the Xceed Zip Compression Library, Xceed Zip for .NET nor Xceed Zip for .NET Compact Framework has no strong encryption at all. It only has password-scrambling that is 100% compatible with the PKZip 2.04g Zip file format. This is 'light' protection that will not protect against any determined users. At best, you can consider it has 32-bits of protection.&lt;br/&gt;&lt;br/&gt;The Wassenaar agreement (http://www.wassenaar.org) stipulates that anything under 64-bits of protection for a REAL symetrical algorithm is freely exportable. The password-scrambling built into Xceed Zip is not even real symetrical encryption, it is more a CRC-based password-scrambler, considered as light protection only.&lt;br/&gt;&lt;br/&gt;If you need strong encryption, with real protection, then you may need to be careful about exporting, like if you use the Xceed Encryption Library or any component that supports the AES (Rijndael) or other 128-bit+ encryption algorithms.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>I created a zip file using Xceed Zip from my Active Server Page, however the call to Reponse.Redirect fails. Why?</title><link>http://xceed.com/CS/forums/thread/28288.aspx</link><pubDate>Fri, 05 Sep 2008 17:15:50 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28288</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28288.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28288</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;In most cases, this error occurs because of the permissions granted to the internet guest account (IUSER_MACHINE) or to the internet account trying to download the file.&lt;br/&gt;&lt;br/&gt;Double check the permissions to make sure that they are sufficient to access and download the file.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>I created an SFX zip file using Xceed Zip. Is it possible to extract the contents using command line parameters?</title><link>http://xceed.com/CS/forums/thread/28287.aspx</link><pubDate>Fri, 05 Sep 2008 17:02:14 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28287</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28287.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28287</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;Unfortunatley, it is not possible to pass command line parameters to the self-extracting zip file.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>What type of encryption does Xceed Zip use/support?</title><link>http://xceed.com/CS/forums/thread/28286.aspx</link><pubDate>Fri, 05 Sep 2008 16:56:28 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28286</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28286.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28286</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;The encryption algorithm used by the Xceed Zip Compression Library, Xceed Zip for .NET, Xceed Zip for .NET Compact Framework, Xceed Backup and Absolute Packager is the same one used by the PKZip 2.04g program.&lt;br/&gt;&lt;br/&gt;This type of encryption can resist attacks by amateurs if the password is well chosen and long enough (at least 16 characters) but it will probably not resist attacks by determined users or experts. Therefore, we suggest that you always use long passwords, and when possible, do not rely solely on this encryption system to protect sensitive data.&lt;br/&gt;&lt;br/&gt;Xceed Zip Compression library 6.0 also supports AES encryption. Xceed Zip for .NET will support AES encryption in the May 2006 release.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>I need to be able to add a specialized header to the beginning of the zip file that I am creating. Is this possible with Xceed Zip?</title><link>http://xceed.com/CS/forums/thread/28285.aspx</link><pubDate>Fri, 05 Sep 2008 16:55:25 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28285</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28285.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28285</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;The ActiveX version of Xceed Zip does not allow for custom headers to be added to the zip file. You can use the "comment" section for each file (or the one for the entire zip file) to add custom info.&lt;br/&gt;&lt;br/&gt;As of version 2.0 of Xceed Zip for .NET, custom zip file headers are supported via the SfxPrefix class.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>I found a zip file that Xceed Zip cannot unzip but that WinZip can. Is this a bug?</title><link>http://xceed.com/CS/forums/thread/28284.aspx</link><pubDate>Fri, 05 Sep 2008 16:22:51 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28284</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28284.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28284</wfw:commentRss><description>&lt;span&gt;For over 7 years as of this writing, the PKZip v2.0 zip file format has been available and in widespread use. That's the format Xceed Zip uses to read and write Zip files. The reason Xceed Zip won't unzip that file is because Xceed Zip is not backwards compatible with old Zip files made with PKZip v1.x. The extra code required in order to unzip these older Zip files is not required by most developers and was intentionally left out in order to provide lighter components.&lt;/span&gt;</description></item><item><title>You claim that Xceed Zip is 100% compatible with the PKZIP 2.04g zip file format. However, I have files that can be unzipped by PKZIP 2.04g (or up) but will not be unzipped by Xceed Zip. Why?</title><link>http://xceed.com/CS/forums/thread/28283.aspx</link><pubDate>Fri, 05 Sep 2008 16:21:57 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28283</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28283.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28283</wfw:commentRss><description>&lt;span&gt;Keep in mind that Xceed Zip is compatible with the 2.04g file format - not the actual 2.04g application itself. In other words, any Zip file created by PKZIP 2.04g can be unzipped by Xceed Zip, and any Zip file created with Xceed Zip can be unzipped by PKZIP 2.04g. However, some zip files made with versions of PKZIP before 2.0 (over 7 years old) would compress files with older, less efficient algorithms. Xceed Zip is not backwards compatible with these old zip files. The PKZIP application retains backwards compatibility.&lt;/span&gt;</description></item><item><title>I have .GZ files that I would like to unzip. Is it possible with Xceed Zip?</title><link>http://xceed.com/CS/forums/thread/28281.aspx</link><pubDate>Fri, 05 Sep 2008 16:15:13 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28281</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28281.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28281</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;Xceed Zip for .NET supports TAR and GZip.&lt;br/&gt;&lt;br/&gt;Xceed Zip Compression Library (activex) does not however, support .TAR. It is however possible to decompress GZip files using Xceed Streaming Compression library.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>Is it possible to write a zip file to a CD-R or CD-RW?</title><link>http://xceed.com/CS/forums/thread/28280.aspx</link><pubDate>Fri, 05 Sep 2008 16:12:56 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28280</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28280.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28280</wfw:commentRss><description>&lt;span&gt;In order to write to a CD-R or CD-RW, you will need to do the following:&lt;br/&gt;&lt;br/&gt;1- You will need DirectCD (or a similar application)&lt;br/&gt;2- Format the CD to be able to access it through a drive letter&lt;br/&gt;3- Let DirectCD take "control" of the CD before starting the backup&lt;br/&gt;4- Start the backup&lt;br/&gt;&lt;br/&gt;Once the first disk has been filled, you will need to let DirectCD unlock the CD and relock the new one before you confirm that a new CD has been provided via the InsertMedia event.&lt;/span&gt;</description></item><item><title>Is XceedCompression compatible with ZLib?</title><link>http://xceed.com/CS/forums/thread/28282.aspx</link><pubDate>Fri, 05 Sep 2008 16:11:49 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28282</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28282.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28282</wfw:commentRss><description>&lt;span&gt;The compressed data returned by the XceedCompression object (Xceed Zip ActiveX) or the XceedCompressedStream class (Xceed Streaming Compression for .NET and Xceed Zip for .NET Compact Framework) contains a custom header, consisting of a single byte at the beginning, and four bytes (An Adler-32 checksum) at the end.&lt;br/&gt;&lt;br/&gt;That is why ZLib is not able to uncompress the data correctly.&lt;br/&gt;&lt;br/&gt;For ZLib compatiblity, use the Xceed Streaming Compression Library or the ZLibCompressedStream class of Xceed Streaming Compression for .NET or Xceed Zip for .NET Compact Framework.&lt;/span&gt;</description></item><item><title>Can the Xceed Backup Library or the Xceed Zip Compression Library write to tape drives?</title><link>http://xceed.com/CS/forums/thread/28279.aspx</link><pubDate>Fri, 05 Sep 2008 15:54:14 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28279</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28279.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=64&amp;PostID=28279</wfw:commentRss><description>The Xceed Backup Library, Xceed Zip Compression Library, and Xceed Zip for .NET are only capable of writing to random-access devices such as CDR or zip/jazz drives. They are not capable of writing to a tape drive.</description></item></channel></rss>