<?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[Wie in Dateicontainer schreiben?]]></title><description><![CDATA[<p>Es weiß ja sicherlich jeder was eine zip oder eine rar Datei ist. Es gibt aber auch Software die ihre eigenen Container benutzt, wo dann alle möglichen Dateien drinn abgelegt werden.<br />
Meine Frage lautet, wie erstellt man so einen Container (ohne Kompression)? Geht das überhaupt mit Standard C++ oder ist das Betriebssystem abhängig?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/306493/wie-in-dateicontainer-schreiben</link><generator>RSS for Node</generator><lastBuildDate>Fri, 07 Aug 2026 16:40:11 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/306493.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 30 Jul 2012 15:00:04 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 15:00:04 GMT]]></title><description><![CDATA[<p>Es weiß ja sicherlich jeder was eine zip oder eine rar Datei ist. Es gibt aber auch Software die ihre eigenen Container benutzt, wo dann alle möglichen Dateien drinn abgelegt werden.<br />
Meine Frage lautet, wie erstellt man so einen Container (ohne Kompression)? Geht das überhaupt mit Standard C++ oder ist das Betriebssystem abhängig?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2236962</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2236962</guid><dc:creator><![CDATA[Keksschleuder]]></dc:creator><pubDate>Mon, 30 Jul 2012 15:00:04 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 15:12:18 GMT]]></title><description><![CDATA[<p>Keksschleuder schrieb:</p>
<blockquote>
<p>Meine Frage lautet, wie erstellt man so einen Container (ohne Kompression)?</p>
</blockquote>
<p>Du überlegst dir ein Format (oder schaust dir eines ab) und implementierst es (oder benutzt eine fertige Implementierung).</p>
<blockquote>
<p>Geht das überhaupt mit Standard C++ oder ist das Betriebssystem abhängig?</p>
</blockquote>
<p>Das geht so portabel wie deine Implementierung. In der Regel solltest du nichts benötigen, was betriebssystemabhängig wäre.</p>
<p>Die Antwort ist unbefriedigend? Das liegt da dran, dass die Frage in einer solchen Allgemeinheit gestellt ist, dass sie nur schwer zu beantworten ist.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2236968</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2236968</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Mon, 30 Jul 2012 15:12:18 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 16:12:08 GMT]]></title><description><![CDATA[<p>Du willst also mehrere Dateien in eine einzige reinschaufeln? Das einfachste waere moeglicherweise einfach binaer hintereinander in eine Datei schreiben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2236997</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2236997</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Mon, 30 Jul 2012 16:12:08 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 16:17:26 GMT]]></title><description><![CDATA[<p>Sone schrieb:</p>
<blockquote>
<p>Du willst also mehrere Dateien in eine einzige reinschaufeln? Das einfachste waere moeglicherweise einfach binaer hintereinander in eine Datei schreiben.</p>
</blockquote>
<p>Und wie findest du den Anfang bzw. das Ende einer Datei oder eine bestimmte Datei? Ein bisschen weniger trivial ist das schon. Bloß mögliche Lösungswege gibt es viele, die zahle ich nicht alle auf, da müsste man eben Details kennen. ein sehr einfaches Format wäre <a href="http://en.wikipedia.org/wiki/Tar_%28file_format%29" rel="nofollow">tar</a>, das gibt es auch schon in zahlreichen fertigen Implementierungen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2236998</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2236998</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Mon, 30 Jul 2012 16:17:26 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 16:34:46 GMT]]></title><description><![CDATA[<p>SeppJ schrieb:</p>
<blockquote>
<p>Und wie findest du den Anfang bzw. das Ende einer Datei oder eine bestimmte Datei?</p>
</blockquote>
<p><em>Echte Hacker</em> riechen das! <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f4a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--light_bulb"
      title=":bulb:"
      alt="💡"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237004</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237004</guid><dc:creator><![CDATA[Swordfish]]></dc:creator><pubDate>Mon, 30 Jul 2012 16:34:46 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 16:36:00 GMT]]></title><description><![CDATA[<p>SeppJ schrieb:</p>
<blockquote>
<p>Sone schrieb:</p>
<blockquote>
<p>Du willst also mehrere Dateien in eine einzige reinschaufeln? Das einfachste waere moeglicherweise einfach binaer hintereinander in eine Datei schreiben.</p>
</blockquote>
<p>Und wie findest du den Anfang bzw. das Ende einer Datei oder eine bestimmte Datei?</p>
</blockquote>
<p>Tabelle. Boost serialization. XML. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/8250">@Swordfish</a>: schon wieder arbeitslos, oder wieso bist du so stinkig?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237005</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237005</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Mon, 30 Jul 2012 16:36:00 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 16:43:07 GMT]]></title><description><![CDATA[<p>Sone schrieb:</p>
<blockquote>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/8250">@Swordfish</a>: schon wieder arbeitslos, oder wieso bist du so stinkig?</p>
</blockquote>
<p>... sprach der Schüler ohne Praktikum in den Ferien *lol*</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237007</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237007</guid><dc:creator><![CDATA[Swordfish]]></dc:creator><pubDate>Mon, 30 Jul 2012 16:43:07 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 21:40:28 GMT]]></title><description><![CDATA[<p>Swordfish schrieb:</p>
<blockquote>
<p>Sone schrieb:</p>
<blockquote>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/8250">@Swordfish</a>: schon wieder arbeitslos, oder wieso bist du so stinkig?</p>
</blockquote>
<p>... sprach der Schüler ohne Praktikum in den Ferien *lol*</p>
</blockquote>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /><br />
Also ja?</p>
<p>Mein Vorschlag (Die <strong>Strafe</strong> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> fuer die &quot;Initiative&quot; des Fragestellers) :</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &lt;fstream&gt;
#include &lt;sstream&gt;
#include &lt;string&gt;
#include &lt;unordered_map&gt;
#include &lt;stdexcept&gt;
#include &lt;vector&gt;

class BaseFileMixer
{
    std::unordered_map&lt;std::string, std::string&gt; mData;

public:

    std::unordered_map&lt;std::string, std::string&gt;::const_iterator getIterator() const
    {
        return mData.begin();
    }

    std::unordered_map&lt;std::string, std::string&gt;::iterator getIterator()
    {
        return mData.begin();
    }

    std::unordered_map&lt;std::string, std::string&gt;::const_iterator getEndIterator() const
    {
        return mData.end();
    }

    bool add(std::string const&amp; filename, std::string const&amp; bytedata)
    {
        return mData.insert( std::make_pair(filename, bytedata) ).second;
    }

    virtual ~BaseFileMixer() {}
};

class OFileMixer : public virtual BaseFileMixer
{
public:

    void add(std::string const&amp; file)
    {
        std::ostringstream strstream;
        strstream &lt;&lt; std::ifstream(file).rdbuf();

        BaseFileMixer::add(file, strstream.str());
    }

    bool writeTo(std::string const&amp; file)
    {
        std::ofstream stream(file, std::ios::trunc);

        for(auto iter = getIterator();iter != getEndIterator(); ++iter)
        {
            if(iter != getIterator())
                stream &lt;&lt; ',';
            stream &lt;&lt; iter-&gt;first &lt;&lt; '|' &lt;&lt; iter-&gt;second.length();
        }

        stream &lt;&lt; ';';

        for(auto iter = getIterator();iter != getEndIterator(); ++iter)
            stream &lt;&lt; iter-&gt;second;

        return stream;
    }
};

class IFileMixer : public virtual BaseFileMixer
{
    bool mIsOpen;

public:

    IFileMixer(std::string const&amp; file = std::string())
    {
        if(file.empty())
            return;

        open(file);
    }

    void open(std::string const&amp; file)
    {
        std::ifstream stream(file);

        if(!stream)
            throw std::invalid_argument(&quot;IFileMixer::open Error with opening file &quot; + file + &quot;!&quot;);

        std::vector&lt;std::pair&lt;std::string, size_t&gt;&gt; byteAmount;

        for(std::pair&lt;std::string, size_t&gt; temp; stream ;)
        {
            std::getline(stream, temp.first, '|');
            stream &gt;&gt; temp.second;
            byteAmount.push_back(temp);

            if(stream.get() == ';')
                break;
        }

        if(!stream)
            throw std::logic_error(&quot;IFileMixer::open Error with parsing file &quot; + file + &quot;!&quot;);

        for(auto pair : byteAmount)
        {
            std::pair&lt;std::string, std::string&gt; temp;
            temp.first = pair.first;

            while(pair.second--)
                temp.second += stream.get();

            add( temp.first, temp.second );
        }

        if(!stream)
            throw std::logic_error(&quot;IFileMixer::open Error with parsing file &quot; + file + &quot;!&quot;);

        mIsOpen = true;
    }

    void extractTo(std::string const&amp; dir = std::string())
    {
        if( !mIsOpen )
            throw std::logic_error(&quot;IFileMixer::extractTo called but the class didn't open a file yet!&quot;);

        for(auto iter = getIterator();iter != getEndIterator();++iter)
        {
            std::ofstream stream( (( dir.length() )? dir + ((dir[dir.length() - 1] != '/')? &quot;/&quot; : &quot;&quot;) : &quot;&quot;) + iter-&gt;first, std::ios::trunc);

            if(!stream)
                throw std::logic_error(&quot;IFileMixer::extractTo stream for extraction of &quot; + iter-&gt;first + &quot; couldn't be opened!&quot;);

            stream &lt;&lt; iter-&gt;second;
        }
    }
};

class FileMixer : public OFileMixer, public IFileMixer
{
public:

    FileMixer(std::string const&amp; file = std::string()):
    IFileMixer(file) {}
};
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2237025</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237025</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Mon, 30 Jul 2012 21:40:28 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 17:37:48 GMT]]></title><description><![CDATA[<p>Sone schrieb:</p>
<blockquote>
<p>&quot;Initiative&quot;</p>
</blockquote>
<p>Ich fand die gar nicht so niedrig, die Strafe ist also viel zu hoch.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237027</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237027</guid><dc:creator><![CDATA[Strafe]]></dc:creator><pubDate>Mon, 30 Jul 2012 17:37:48 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 17:55:06 GMT]]></title><description><![CDATA[<p>Keksschleuder schrieb:</p>
<blockquote>
<p>Es weiß ja sicherlich jeder was eine zip oder eine rar Datei ist. Es gibt aber auch Software die ihre eigenen Container benutzt, wo dann alle möglichen Dateien drinn abgelegt werden.<br />
Meine Frage lautet, wie erstellt man so einen Container (ohne Kompression)? Geht das überhaupt mit Standard C++ oder ist das Betriebssystem abhängig?</p>
</blockquote>
<p>Öh.</p>
<p>Dir ist hoffentlich klar dass ein Archiv mit einem &quot;eigenen Format&quot; einfach nur eine Datei ist, in die die Inhalte anderer Dateien reingeschrieben wurden. Halt irgendwie mit Inhaltsverzeichnis, damit das Archivprogramm auch weiss wie die Dateien alle heissen, wo sie anfangen etc.</p>
<p>Und wenn man das voraussetzt ist mMn. auch klar, dass das natürlich mit C++ umsetzbar ist. Wobei man vermutlich bei einigen Dingen plattformspezifische APIs wird verwenden müssen. z.B. kannst du mit ausschliesslich Standard C++ Funktionen nichtmal ein Verzeichnis enumerieren. Wenn du das für dein Archivprogramm brauchst (z.B. weil es Verzeichnisse mitsamt allen Dateien/Unterverzeichnissen aufnehmen können soll) -&gt; plattformspezifische APIs.</p>
<p>Der &quot;eigentlich&quot; Archiv-Code kann aber vermutlich 100% plattformunabhängig gehalten werden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237034</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237034</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Mon, 30 Jul 2012 17:55:06 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 20:47:04 GMT]]></title><description><![CDATA[<p>hustbaer schrieb:</p>
<blockquote>
<p>Wenn du das für dein Archivprogramm brauchst (z.B. weil es Verzeichnisse mitsamt allen Dateien/Unterverzeichnissen aufnehmen können soll) -&gt; plattformspezifische APIs.</p>
</blockquote>
<p>Ginge das nicht theoretisch mit Boost.Filesystem?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237092</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237092</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Mon, 30 Jul 2012 20:47:04 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 20:50:35 GMT]]></title><description><![CDATA[<p>Sone schrieb:</p>
<blockquote>
<p>hustbaer schrieb:</p>
<blockquote>
<p>Wenn du das für dein Archivprogramm brauchst (z.B. weil es Verzeichnisse mitsamt allen Dateien/Unterverzeichnissen aufnehmen können soll) -&gt; plattformspezifische APIs.</p>
</blockquote>
<p>Ginge das nicht theoretisch mit Boost.Filesystem?</p>
</blockquote>
<p>Und Boost.Filesystem funktioniert mit Magie?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237096</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237096</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Mon, 30 Jul 2012 20:50:35 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 20:57:17 GMT]]></title><description><![CDATA[<p>Du legst die Dateien + Metadaten in eine Datei (Endung relativ egal).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237100</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237100</guid><dc:creator><![CDATA[IrgendeinName]]></dc:creator><pubDate>Mon, 30 Jul 2012 20:57:17 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 20:57:34 GMT]]></title><description><![CDATA[<p>Sone schrieb:</p>
<blockquote>
<p>hustbaer schrieb:</p>
<blockquote>
<p>Wenn du das für dein Archivprogramm brauchst (z.B. weil es Verzeichnisse mitsamt allen Dateien/Unterverzeichnissen aufnehmen können soll) -&gt; plattformspezifische APIs.</p>
</blockquote>
<p>Ginge das nicht theoretisch mit Boost.Filesystem?</p>
</blockquote>
<p>Ja, Boost.Filesystem kann das. Und auch viele andere Libs (Qt, POCO, ...).</p>
<p>Wenn du den Satz der davor steht auch gelesen hast, sollte dir aber klar sein wie es gemeint war: man braucht plattformspezifischen Code um das zu erreichen, ODER eben Libraries die wiederum plattformspezifischen Code enthalten.<br />
Die C++ Standard Library bietet auf jeden Fall nichts an mit dem man es machen könnte.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237101</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237101</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Mon, 30 Jul 2012 20:57:34 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 20:58:30 GMT]]></title><description><![CDATA[<p>hustbaer schrieb:</p>
<blockquote>
<p>man braucht plattformspezifischen Code um das zu erreichen, ODER eben Libraries die wiederum plattformspezifischen Code enthalten.</p>
</blockquote>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f4a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--light_bulb"
      title=":bulb:"
      alt="💡"
    /> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /><br />
Dachte, du meinst, man muss selbst plattformspezifischen Code fabrizieren.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237102</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237102</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Mon, 30 Jul 2012 20:58:30 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Mon, 30 Jul 2012 21:06:39 GMT]]></title><description><![CDATA[<p>Sone schrieb:</p>
<blockquote>
<p>hustbaer schrieb:</p>
<blockquote>
<p>man braucht plattformspezifischen Code um das zu erreichen, ODER eben Libraries die wiederum plattformspezifischen Code enthalten.</p>
</blockquote>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f4a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--light_bulb"
      title=":bulb:"
      alt="💡"
    /> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /><br />
Dachte, du meinst, man muss selbst plattformspezifischen Code fabrizieren.</p>
</blockquote>
<p>Naja ... er ... nö. So war es nicht gemeint. So eine Behauptung wäre auch reichlich doof bzw. gewagt.<br />
Ich kann ja nicht alle Libraries kennen die es irgendwo gibt die irgendwas machen und auf mehr als einer Plattform lauffähig sind.</p>
<p>Allerdings gibt es vermutlich auch keine Library die für sämtliche Plattformen verfügbar ist, wo auch eine halbwegs vollständige und standardkonforme C++ Implementierung verfügbar ist.</p>
<p>D.h. es wird Fälle geben, wo man mit Boost.Filesystem nicht weiter kommt, und auch mit Qt/POCO/... nicht. Die Standard C++ Library hätte man in diesen Fällen trotzdem, nur wie gesagt: die &quot;kann&quot; eben keine Verzeichnisse.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237108</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237108</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Mon, 30 Jul 2012 21:06:39 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Wed, 01 Aug 2012 02:20:50 GMT]]></title><description><![CDATA[<p>Na gut, ich versuche es einfacher auszudrücken. Im Grunde will ich nur mehrere Dateien in eine Datei zusammen fassen und auf diese natürlich auch zugreifen können. Keine kompriemierung, kein Passwortschutz, gar nichts.</p>
<p>Einfach nur z.B. <strong>text1.txt</strong> und <strong>text2.txt</strong> in <strong>container.con</strong></p>
<p>Und dem Programm will ich dann &quot;nur noch&quot; sagen müssen öffne text2.txt in container.con</p>
<p>Wäre sowas mit Boost möglich?</p>
<p>€: Achja, es müsste unter Windows funktionieren.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237488</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237488</guid><dc:creator><![CDATA[Keksschleuder]]></dc:creator><pubDate>Wed, 01 Aug 2012 02:20:50 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Wed, 01 Aug 2012 02:30:12 GMT]]></title><description><![CDATA[<p>Genau das hat man dir doch schon auf Seite 1 vorgekaut?!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237489</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237489</guid><dc:creator><![CDATA[Swordfish]]></dc:creator><pubDate>Wed, 01 Aug 2012 02:30:12 GMT</pubDate></item><item><title><![CDATA[Reply to Wie in Dateicontainer schreiben? on Wed, 01 Aug 2012 02:49:10 GMT]]></title><description><![CDATA[<p>Keksschleuder schrieb:</p>
<blockquote>
<p>Na gut, ich versuche es einfacher auszudrücken. Im Grunde will ich nur (...)</p>
</blockquote>
<p>Ja. OK. Was hält dich davon ab? Was ist deine Frage?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2237495</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2237495</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Wed, 01 Aug 2012 02:49:10 GMT</pubDate></item></channel></rss>