Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (WinAPI, Konsole) » Cpp

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
13.12.2006, 21:27 Uhr
Cpp



Hi,
ich habe glaube ich eine ganz einfache Frage und zwar, wie kann ich jetzt zum beipspiel durch programmcode eine datei (nehmen wir einfach an die compiler-datei) irgendwo abspeichern?
Vielen Dank!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
13.12.2006, 21:32 Uhr
Pler
Einer von Vielen
(Operator)


Ganz einfach Antwort:
Ja.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
13.12.2006, 21:34 Uhr
Cpp



Und wie genau geht der source code jetzt?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
13.12.2006, 22:26 Uhr
xXx
Devil


was für ne Compiler-Datei?

Du kannst halt nen File-Stream odg. nutzen?! Muss man deine Frage verstehen?!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
13.12.2006, 22:29 Uhr
Cpp



Sry wenn ich mich falsch ausgedrückt habe, ich will sagen wir einfach nur ein simples textfile in einen anderen speicherort kopieren^^
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
005
14.12.2006, 10:47 Uhr
Th



s. CopyFile
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
006
14.12.2006, 12:38 Uhr
0xdeadbeef
Gott
(Operator)



C++:
#include <algorithm>
#include <fstream>
#include <iterator>

int main(int argc, char *argv[]) {
  if(argc != 3) return -1;

  std::ifstream in (argv[1]);
  if(!in ) return -1;
  std::ofstream out(argv[2]);
  if(!out) return -1;

  in.unsetf(std::ios::skipws);
  std::copy(std::istream_iterator<char>(in),
            std::istream_iterator<char>(),
            std::ostream_iterator<char>(out));
}


--
Einfachheit ist Voraussetzung für Zuverlässigkeit.
-- Edsger Wybe Dijkstra

Dieser Post wurde am 14.12.2006 um 12:39 Uhr von 0xdeadbeef editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (WinAPI, Konsole) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: