<?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[von txt datei 1 nach 2]]></title><description><![CDATA[<p>Hallo Leute, vieleicht könnt ihr mir helfen</p>
<p>ich suche nach ein codeschnippsel (für win_api nicht console!!! ) der folgendes macht</p>
<p>er öffnet eine txt datei von ka woher und speichert den inhalt in der datei:</p>
<p>c:// name.txt</p>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f576.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--sunglasses"
      title=":sunglasses:"
      alt="🕶"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/topic/186351/von-txt-datei-1-nach-2</link><generator>RSS for Node</generator><lastBuildDate>Sun, 05 Jul 2026 11:00:33 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/186351.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 07 Jul 2007 19:56:15 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to von txt datei 1 nach 2 on Sat, 07 Jul 2007 19:56:15 GMT]]></title><description><![CDATA[<p>Hallo Leute, vieleicht könnt ihr mir helfen</p>
<p>ich suche nach ein codeschnippsel (für win_api nicht console!!! ) der folgendes macht</p>
<p>er öffnet eine txt datei von ka woher und speichert den inhalt in der datei:</p>
<p>c:// name.txt</p>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f576.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--sunglasses"
      title=":sunglasses:"
      alt="🕶"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1320387</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1320387</guid><dc:creator><![CDATA[pokêmon]]></dc:creator><pubDate>Sat, 07 Jul 2007 19:56:15 GMT</pubDate></item><item><title><![CDATA[Reply to von txt datei 1 nach 2 on Sat, 07 Jul 2007 20:38:31 GMT]]></title><description><![CDATA[<p>ne Datei kopieren? CopyFile()</p>
<p>Datei öffnen/erzeugen: CreateFile()<br />
In Datei reinschreiben: WriteFile()<br />
Lesen: ReadFile()<br />
In der Datei rumwandern. SetFilePointer()</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1320404</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1320404</guid><dc:creator><![CDATA[geeky]]></dc:creator><pubDate>Sat, 07 Jul 2007 20:38:31 GMT</pubDate></item><item><title><![CDATA[Reply to von txt datei 1 nach 2 on Sat, 07 Jul 2007 21:00:46 GMT]]></title><description><![CDATA[<p>also: ich will das das programm meine ip adresse in eine txt datei schreib ich weis aber nicht wie ich das machen soll</p>
<p>[/cpp] if (IDOK == iAntwort)<br />
{<br />
MessageBox(NULL, &quot;:) danke, das sie mich geöffnet haben :D&quot;,&quot;&quot;,</p>
<p>MB_ICONINFORMATION | MB_OK | MB_DEFBUTTON1);</p>
<p>FILE *pfile;<br />
char buf[BUFLEN];</p>
<p>pfile = fopen(FILENAME, &quot;w&quot;);<br />
if(!pfile) {<br />
printf(&quot;Datei konnte nicht geoeffnet werden&quot;);<br />
return 0;<br />
}</p>
<p>fprintf(pfile, &quot;Ihre IP nummer lautet:&quot;);</p>
<p>fclose(pfile);</p>
<p>fscanf(pfile, &quot;%s&quot;, buf); printf(&quot;%s\n&quot;, buf);<br />
fscanf(pfile, &quot;%s&quot;, buf); printf(&quot;%s\n&quot;, buf);<br />
fscanf(pfile, &quot;%s&quot;, buf); printf(&quot;%s\n&quot;, buf);</p>
<p>fclose(pfile);</p>
<p>}</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1320419</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1320419</guid><dc:creator><![CDATA[pokêmon]]></dc:creator><pubDate>Sat, 07 Jul 2007 21:00:46 GMT</pubDate></item><item><title><![CDATA[Reply to von txt datei 1 nach 2 on Sat, 07 Jul 2007 23:08:01 GMT]]></title><description><![CDATA[<p>Ich denke mal du weist nicht wie du die IP herausfinden sollst, stimmts?</p>
<p>Guck dir mal WinSockets an. <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="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1320461</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1320461</guid><dc:creator><![CDATA[gosha16]]></dc:creator><pubDate>Sat, 07 Jul 2007 23:08:01 GMT</pubDate></item><item><title><![CDATA[Reply to von txt datei 1 nach 2 on Sun, 08 Jul 2007 01:15:50 GMT]]></title><description><![CDATA[<p>Es gibt viele &quot;eigene IPs&quot;. Zum einen localhost: 127.0.0.1, dann noch die interne Netzwerk IP: 192.168.x.x, und die globale Internet IP. Das alles geht, wiegesagt, mit <a href="http://www.c-worker.ch/tuts/wstut_op.php" rel="nofollow">WinSock.</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1320493</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1320493</guid><dc:creator><![CDATA[mikey]]></dc:creator><pubDate>Sun, 08 Jul 2007 01:15:50 GMT</pubDate></item><item><title><![CDATA[Reply to von txt datei 1 nach 2 on Sun, 08 Jul 2007 08:25:38 GMT]]></title><description><![CDATA[<p>mikey schrieb:</p>
<blockquote>
<p>dann noch die interne Netzwerk IP: 192.168.x.x</p>
</blockquote>
<p>Diese gibt es nicht immer. Nicht jeder hat ein Netzwerk ...<br />
Und 192.168.x.x ist fürs LAN auch kein muss.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1320535</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1320535</guid><dc:creator><![CDATA[ipsy]]></dc:creator><pubDate>Sun, 08 Jul 2007 08:25:38 GMT</pubDate></item></channel></rss>