<?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[Dateien mit fstream kopieren]]></title><description><![CDATA[<p>Hallo Leute,<br />
ich bin dabei Dateien zu kopieren. Eigentlich ist das ganz einfach, doch ich habe ein Problem:</p>
<pre><code>std::fstream file((LPSTR)TEXTo, std::ios::in);
			std::fstream funf((LPSTR)TEXTo2, std::ios::out);
			char h;
			while(file.get(h))

				funf.put(h);
			}
			funf.close();
			file.close();
</code></pre>
<p>Undzwar ich kann txt Dateien super einfach z.b mit einer Größe von 60Byte kopiere,<br />
doch wenn ich eine .exe Datei kopieren möchte, welche z.b ein Megabyte groß ist wird dann komischer Weise nur 6Byte kopiert.</p>
<p>Vielen Dank schonmal im Voraus</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/323474/dateien-mit-fstream-kopieren</link><generator>RSS for Node</generator><lastBuildDate>Thu, 16 Jul 2026 05:24:24 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/323474.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 31 Jan 2014 21:02:24 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:02:24 GMT]]></title><description><![CDATA[<p>Hallo Leute,<br />
ich bin dabei Dateien zu kopieren. Eigentlich ist das ganz einfach, doch ich habe ein Problem:</p>
<pre><code>std::fstream file((LPSTR)TEXTo, std::ios::in);
			std::fstream funf((LPSTR)TEXTo2, std::ios::out);
			char h;
			while(file.get(h))

				funf.put(h);
			}
			funf.close();
			file.close();
</code></pre>
<p>Undzwar ich kann txt Dateien super einfach z.b mit einer Größe von 60Byte kopiere,<br />
doch wenn ich eine .exe Datei kopieren möchte, welche z.b ein Megabyte groß ist wird dann komischer Weise nur 6Byte kopiert.</p>
<p>Vielen Dank schonmal im Voraus</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380892</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380892</guid><dc:creator><![CDATA[Der, der VIELE FRAGEN HAT]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:02:24 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:09:24 GMT]]></title><description><![CDATA[<p>Vielleicht hilft ios::binary.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380894</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380894</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:09:24 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:13:47 GMT]]></title><description><![CDATA[<p>Du solltest eine Executable mit binary öffnen, wenn sie nach dem Kopieren noch funktionieren soll, aber das erklärt den Fehler nicht.</p>
<p>Mein erster Instinkt war ja, dass du eines der get benutzt hast, die den Zeichenwert anstatt des Streams zurück geben (wodurch die Schleife dann bei der ersten \0 enden würde), aber die Überladung, die du hier benutzt gibt eigentlich den Stream zurück, sollte also passen.</p>
<p>Ist das wirklich 1:1 der Code? Falls ja: Zeig mal ein vollständiges Minimalbeispiel (siehe Link in meiner Signatur zu Codebeispielen). Falls nein: <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
<p>Ist das eventuell irgendein uralt-Compiler den du nutzt?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380895</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380895</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:13:47 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:15:03 GMT]]></title><description><![CDATA[<p>Ja das ist die 1 zu 1 Kopie.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380896</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380896</guid><dc:creator><![CDATA[Typ mit vielen Fragen]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:15:03 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:17:50 GMT]]></title><description><![CDATA[<p>Das ios::binary hats auch nicht getan.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380897</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380897</guid><dc:creator><![CDATA[Typ mi vielen Fragen]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:17:50 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:19:06 GMT]]></title><description><![CDATA[<p>Das wäre der ganze Code(Ich habe in mit WinApi gemacht):</p>
<pre><code>// GT_HelloWorldWin32.cpp
// compile with: /D_UNICODE /DUNICODE /DWIN32 /D_WINDOWS /c

#include &lt;windows.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;string.h&gt;
#include &lt;tchar.h&gt;
#include &lt;fstream&gt;

// Global variables
HWND hwndLabel, hwndLabel2, hwndLabel3;
	LPSTR TEXTo[256], TEXTo2[256];
#define ID_BNLAU 600
#define ID_BNLAU2 601
// The main window class name.
static TCHAR szWindowClass[] = _T(&quot;win32app&quot;);

// The string that appears in the application's title bar.
static TCHAR szTitle[] = _T(&quot;Win32 Guided Tour Application&quot;);

HINSTANCE hInst;

// Forward declarations of functions included in this code module:
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

int WINAPI WinMain(HINSTANCE hInstance,
                   HINSTANCE hPrevInstance,
                   LPSTR lpCmdLine,
                   int nCmdShow)
{
    WNDCLASSEX wcex;

    wcex.cbSize = sizeof(WNDCLASSEX);
    wcex.style          = CS_HREDRAW | CS_VREDRAW;
    wcex.lpfnWndProc    = WndProc;
    wcex.cbClsExtra     = 0;
    wcex.cbWndExtra     = 0;
    wcex.hInstance      = hInstance;
    wcex.hIcon          = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_APPLICATION));
    wcex.hCursor        = LoadCursor(NULL, IDC_ARROW);
    wcex.hbrBackground  = (HBRUSH)(COLOR_WINDOW+1);
    wcex.lpszMenuName   = NULL;
    wcex.lpszClassName  = szWindowClass;
    wcex.hIconSm        = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_APPLICATION));

    if (!RegisterClassEx(&amp;wcex))
    {
        MessageBox(NULL,
            _T(&quot;Call to RegisterClassEx failed!&quot;),
            _T(&quot;Win32 Guided Tour&quot;),
            NULL);

        return 1;
    }

    hInst = hInstance; // Store instance handle in our global variable

    // The parameters to CreateWindow explained:
    // szWindowClass: the name of the application
    // szTitle: the text that appears in the title bar
    // WS_OVERLAPPEDWINDOW: the type of window to create
    // CW_USEDEFAULT, CW_USEDEFAULT: initial position (x, y)
    // 500, 100: initial size (width, length)
    // NULL: the parent of this window
    // NULL: this application does not have a menu bar
    // hInstance: the first parameter from WinMain
    // NULL: not used in this application
    HWND hWnd = CreateWindow(
        szWindowClass,
        szTitle,
        WS_OVERLAPPEDWINDOW,
        CW_USEDEFAULT, 0,
        500, 300,
        NULL,
        NULL,
        hInstance,
        NULL
    );

    if (!hWnd)
    {
        MessageBox(NULL,
            _T(&quot;Call to CreateWindow failed!&quot;),
            _T(&quot;Win32 Guided Tour&quot;),
            NULL);

        return 1;
    }

	hwndLabel = CreateWindow(&quot;EDIT&quot;,
							&quot;Wie heißt die Datei?&quot;,
							WS_VISIBLE | WS_CHILD | WS_BORDER,
							0,5,
							300,20,
							hWnd,
							NULL,
							hInstance,
							NULL);

	hwndLabel2 = CreateWindow(&quot;Edit&quot;,
							&quot;Wohin soll sie kopiert werden&quot;,
							WS_VISIBLE | WS_CHILD | WS_BORDER,
							0,40,
							300,20,
							hWnd,
							NULL,
							hInstance,
							NULL);

	hwndLabel3 = CreateWindow(&quot;Button&quot;,
							&quot;Kopieren&quot;,
							WS_VISIBLE | WS_CHILD | WS_BORDER,
							30,200,
							100,20,
							hWnd,
							(HMENU)ID_BNLAU,
							hInstance,
							NULL);

    // The parameters to ShowWindow explained:
    // hWnd: the value returned from CreateWindow
    // nCmdShow: the fourth parameter from WinMain
    ShowWindow(hWnd,
        nCmdShow);
    UpdateWindow(hWnd);

    // Main message loop:
    MSG msg;
    while (GetMessage(&amp;msg, NULL, 0, 0))
    {
        TranslateMessage(&amp;msg);
        DispatchMessage(&amp;msg);
    }

    return (int) msg.wParam;
}

//
//  FUNCTION: WndProc(HWND, UINT, WPARAM, LPARAM)
//
//  PURPOSE:  Processes messages for the main window.
//
//  WM_PAINT    - Paint the main window
//  WM_DESTROY  - post a quit message and return
//
//
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
	if(LOWORD(wParam) == ID_BNLAU)
	{
		GetWindowText(hwndLabel, (LPSTR)TEXTo, 256);
			GetWindowText(hwndLabel2, (LPSTR)TEXTo2, 256);

			std::fstream file((LPSTR)TEXTo, std::ios::in, std::ios::binary);
			std::fstream funf((LPSTR)TEXTo2, std::ios::out, std::ios::binary);
			char h;
			while(file.get(h))
			{

				funf.put(h);
			}
			funf.close();
			file.close();

	}

    PAINTSTRUCT ps;
    HDC hdc;
    TCHAR greeting[] = _T(&quot;&quot;);

    switch (message)
    {
	case ID_BNLAU:
		{

			break;
		}
    case WM_PAINT:
        hdc = BeginPaint(hWnd, &amp;ps);

        // Here your application is laid out.
        // For this introduction, we just print out &quot;Hello, World!&quot;
        // in the top left corner.
        TextOut(hdc,
            5, 5,
            greeting, _tcslen(greeting));
        // End application-specific layout section.

        EndPaint(hWnd, &amp;ps);
        break;
    case WM_DESTROY:
        PostQuitMessage(0);
        break;
    default:
        return DefWindowProc(hWnd, message, wParam, lParam);
        break;
    }

    return 0;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2380898</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380898</guid><dc:creator><![CDATA[Der Typ mit vielen Fragen]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:19:06 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:22:32 GMT]]></title><description><![CDATA[<p>volkard schrieb:</p>
<blockquote>
<p>Vielleicht hilft ios::binary.</p>
</blockquote>
<p>Um Volkards Tipp zu erklären: Es gibt system-spezifische Konvertierungen, die automatisch an den Zeichen vorgenommen werden, die du aus einer Datei liest (zum Beispiel bei CRLF und LF). Mit <code>ios_base::binary</code> werden diese Konvertierungen unterdrückt, und du liest die Datei Byte für Byte genauso wie es auch in ihr steht.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380899</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380899</guid><dc:creator><![CDATA[Columbo]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:22:32 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:23:48 GMT]]></title><description><![CDATA[<p>SeppJ schrieb:</p>
<blockquote>
<p>Du solltest eine Executable mit binary öffnen, wenn sie nach dem Kopieren noch funktionieren soll, aber das erklärt den Fehler nicht.</p>
</blockquote>
<p>Naja, vielleicht doch, das ASCII-Zeichen EOF (26, ^Z) könnte im Textmodus dazu führen, daß der Stream sich als beendet fühlt. Uih, ist das lange her, daß ich Binardateien im Textmodus gelesen hatte, darum weiß ich die Details nicht mehr auswendig. Naja, es wäre eine einfache Erkklärung, sicherlich den Test wert.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380900</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380900</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:23:48 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:28:29 GMT]]></title><description><![CDATA[<p>ICH HABS ja jetzt mit Binary gemacht es funktioniert immer noch nicht!!!!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380903</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380903</guid><dc:creator><![CDATA[Typ mit vielen Fragen]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:28:29 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:30:06 GMT]]></title><description><![CDATA[<p>Der Typ mit vielen Fragen schrieb:</p>
<blockquote>
<p>Das wäre der ganze Code(Ich habe in mit WinApi gemacht):</p>
</blockquote>
<p>Das ist eben genau das, was man <strong>nicht</strong> unter einem Minimalbeispiel vorstellt. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_down"
      title=":-1:"
      alt="👎"
    /><br />
Was interessieren hier 200 Zeilen Codebloat, mit denen du irgendwelche Fenster öffnest? Mach daraus ein vollständiges Programm von 10-20 Zeilen, das eine bestimmte Datei kopiert oder meinetwegen vorher auf der Konsole nach dem Dateinamen fragt. Wenn beim Erstellen dieses Beispiels der Fehler schon von alleine verschwindet, dann weißt du schon, dass er höchstwahrscheinlich woanders liegt. Wenn er noch da ist, können wir den Fehler leicht nachvollziehen und dir helfen.<br />
<strong>Du</strong> willst hier Hilfe. da ist Eigeninitiative angesagt und nicht einfach nur ein unmotiviertes Kopieren des ganzen Codes.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380904</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380904</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:30:06 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:29:14 GMT]]></title><description><![CDATA[<blockquote>
<p>std::fstream file((LPSTR)TEXTo, std::ios::in, std::ios::binary);</p>
</blockquote>
<p>Ähm, liest sich das nicht eher<br />
std::fstream file((LPSTR)TEXTo, std::ios::in <strong>|</strong> std::ios::binary);<br />
?<br />
Was macht nochmal der dritte Parameter?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380905</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380905</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:29:14 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:33:12 GMT]]></title><description><![CDATA[<p>volkard schrieb:</p>
<blockquote>
<p>Was macht nochmal der dritte Parameter?</p>
</blockquote>
<p>Es gibt keinen, Schatz.</p>
<p>Außerdem möchte er wahrscheinlich nicht <code>fstream</code> , sondern <code>if</code> / <code>ofstream</code> .</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380906</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380906</guid><dc:creator><![CDATA[Columbo]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:33:12 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:32:15 GMT]]></title><description><![CDATA[<p>Arcoth schrieb:</p>
<blockquote>
<p>volkard schrieb:</p>
<blockquote>
<p>Was macht nochmal der dritte Parameter?</p>
</blockquote>
<p>Es gibt keinen, Schatz.</p>
</blockquote>
<p>Gibt es tatsächlich nicht. Dann kann das ohne weitere Klammern aber nicht compiliert haben. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380907</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380907</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:32:15 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:34:30 GMT]]></title><description><![CDATA[<p>SeppJ schrieb:</p>
<blockquote>
<p>oder meinetwegen vorher auf der Konsole nach dem Dateinamen fragt.</p>
</blockquote>
<p>Ja, bitte immer (möglichst kleine) <strong>Konsole</strong>-Anwendungen posten, die kann ich dann auch unter Linux testen und rumfummeln. Will ja immer gerne helfen, aber für kleine Fragen nach Windows umbooten, das mag ich dann doch nur selten.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380908</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380908</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:34:30 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:42:49 GMT]]></title><description><![CDATA[<p>Arcoth schrieb:</p>
<blockquote>
<p>volkard schrieb:</p>
<blockquote>
<p>Was macht nochmal der dritte Parameter?</p>
</blockquote>
<p>Es gibt keinen, Schatz.</p>
</blockquote>
<p>Das ist fatal.<br />
Wenn sein Compiler das durchgelassen hat, dann stinkt was.</p>
<p>Ich würde drauf tippen, daß er mal auf &quot;Oh, ein Fehler, willste lieber die alte Version ausführen?&quot; mal &quot;Janu, mach mal, ist ja egal.&quot; geklickt hat und das tödliche Häkchen &quot;Frag mich nicht wieder sowas!&quot; dabei an war.<br />
Kann man retten, wenn man ein wenig rumsucht, aber bei kleinem Projekten schneller isses, ein neues Projekt anzulegen und den Quellcode reinzukopieren.</p>
<p>MSVC fragt wirklich danach und tut dann wirklich jedesmal ohne weitere Nachfrage die alte Version benutzen. Kein Witz. Großes Ärgernis.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380910</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380910</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:42:49 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 21:59:06 GMT]]></title><description><![CDATA[<p>Arcoth schrieb:</p>
<blockquote>
<p>volkard schrieb:</p>
<blockquote>
<p>Was macht nochmal der dritte Parameter?</p>
</blockquote>
<p>Es gibt keinen, Schatz.</p>
</blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/8et8s826.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/8et8s826.aspx</a></p>
<p>:p</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380915</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380915</guid><dc:creator><![CDATA[EinGast]]></dc:creator><pubDate>Fri, 31 Jan 2014 21:59:06 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 22:08:01 GMT]]></title><description><![CDATA[<blockquote>
<p>Ich würde drauf tippen, daß er mal auf &quot;Oh, ein Fehler, willste lieber die alte Version ausführen?&quot; mal &quot;Janu, mach mal, ist ja egal.&quot; geklickt hat und das tödliche Häkchen &quot;Frag mich nicht wieder sowas!&quot; dabei an war.</p>
</blockquote>
<p>Sowas gibt es nicht. Wer kommt auf die Idee, ein &quot;Frag mich nicht nochmal&quot;-Häkchen bei sowas hinzuzufügen?</p>
<p>Sekunde, ich habe deinen Post nicht zu Ende gelesen!</p>
<blockquote>
<p>MSVC fragt wirklich danach und tut dann wirklich jedesmal ohne weitere Nachfrage die alte Version benutzen. Kein Witz. Großes Ärgernis.</p>
</blockquote>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f62e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_open_mouth"
      title=":open_mouth:"
      alt="😮"
    /> Das ist ja der Wahnsinn! (Perfekte Gelegenheit um VC++ in Misskredit zu bringen.. hihi)</p>
<p>Übrigens, wo war noch mal dein Post, wo du davon erzählt hast, dass dich Tunten besser frisieren? Kann ihn nicht finden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380917</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380917</guid><dc:creator><![CDATA[Columbo]]></dc:creator><pubDate>Fri, 31 Jan 2014 22:08:01 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Fri, 31 Jan 2014 22:37:40 GMT]]></title><description><![CDATA[<p>Arcoth schrieb:</p>
<blockquote>
<p>Übrigens, wo war noch mal dein Post, wo du davon erzählt hast, dass dich Tunten besser frisieren? Kann ihn nicht finden.</p>
</blockquote>
<p><a href="http://www.c-plusplus.net/forum/314329-full" rel="nofollow">http://www.c-plusplus.net/forum/314329-full</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380918</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380918</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Fri, 31 Jan 2014 22:37:40 GMT</pubDate></item><item><title><![CDATA[Reply to Dateien mit fstream kopieren on Sat, 01 Feb 2014 08:15:21 GMT]]></title><description><![CDATA[<p>volkard schrieb:</p>
<blockquote>
<blockquote>
<p>std::fstream file((LPSTR)TEXTo, std::ios::in, std::ios::binary);</p>
</blockquote>
<p>Ähm, liest sich das nicht eher<br />
std::fstream file((LPSTR)TEXTo, std::ios::in <strong>|</strong> std::ios::binary);<br />
?<br />
Was macht nochmal der dritte Parameter?</p>
</blockquote>
<p>DANKE vielmals es hat geklappt,<br />
indem ich das &quot;,&quot; zu einem &quot;|&quot; gemacht habe.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2380945</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2380945</guid><dc:creator><![CDATA[Der Typ mit vielen Fragen]]></dc:creator><pubDate>Sat, 01 Feb 2014 08:15:21 GMT</pubDate></item></channel></rss>