<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Unzip zip files]]></title><description><![CDATA[<p dir="auto">I try to use   qzipreader_p.h, qzipwriter_p.h and qzip.cpp from qt/src/gui/text on Macx  for unzip files.</p>
<p dir="auto">When I add this files to project i see error :-1: error: symbol(s) not found for architecture x86_64</p>
<p dir="auto">How i can fix this?</p>
]]></description><link>https://forum.qt.io/topic/56169/unzip-zip-files</link><generator>RSS for Node</generator><lastBuildDate>Tue, 21 Apr 2026 18:25:50 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/56169.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 08 Jul 2015 13:25:33 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Unzip zip files on Wed, 08 Jul 2015 15:17:29 GMT]]></title><description><![CDATA[<p dir="auto">I found example for unarchive</p>
<pre><code>ZipReader cZip(QLatin1String("/Volumes/Macintosh 2/1.zip"));
  if (cZip.exists()) {
      qDebug() &lt;&lt; "Number of items in the zip archive =" &lt;&lt; cZip.count();
      foreach (ZipReader::FileInfo info, cZip.fileInfoList()) {
          if(info.isFile)
              qDebug() &lt;&lt; "File:" &lt;&lt; info.filePath &lt;&lt; info.size;
          else if (info.isDir)
              qDebug() &lt;&lt; "Dir:" &lt;&lt; info.filePath;
          else
              qDebug() &lt;&lt; "SymLink:" &lt;&lt; info.filePath;
      }
      cZip.extractAll("/Volumes/Macintosh 2/1/");
  }
</code></pre>
<p dir="auto">I see list of files in console, but the files is not extracts :((((((</p>
<p dir="auto">What is wrong?</p>
]]></description><link>https://forum.qt.io/post/281568</link><guid isPermaLink="true">https://forum.qt.io/post/281568</guid><dc:creator><![CDATA[sashapont]]></dc:creator><pubDate>Wed, 08 Jul 2015 15:17:29 GMT</pubDate></item><item><title><![CDATA[Reply to Unzip zip files on Wed, 08 Jul 2015 14:12:30 GMT]]></title><description><![CDATA[<p dir="auto">I'd guess you're missing the x64 version of the library. Either you're missing the file, or you're missing the linker option to use the lib when creating the binary.</p>
]]></description><link>https://forum.qt.io/post/281552</link><guid isPermaLink="true">https://forum.qt.io/post/281552</guid><dc:creator><![CDATA[JohanSolo]]></dc:creator><pubDate>Wed, 08 Jul 2015 14:12:30 GMT</pubDate></item></channel></rss>