copy.cc
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:47:59 +0200
changeset 29 7abf6146898e
parent 28 54addf5893ef
child 63 5a82f89d607e
permissions -rw-r--r--
indent -bad changed to -nbad: See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=485764 committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * Kopierprogramm für Dateien in C++
 * Copyright (C) 2008 Markus Bröker
 */

#include <iostream>
#include <fstream>
#include <cstdlib>

int main (int argc, char **argv)
{
    std::ifstream in;
    std::ofstream out;

    char c;

    if (argc != 3) {
        std::cout << "Benutzung: " << argv[0] << " <datei> <datei>" << std::endl;
        return EXIT_SUCCESS;
    }

    in.open (argv[1], std::ios::binary);
    if (!in) {
        std::cerr << "Fehler: Kann Datei " << argv[1] << " nicht lesen!" << std::endl;
    }

    out.open (argv[2]);
    if (!out) {
        std::cerr << "Fehler: Kann Datei " << argv[2] << " nicht beschreiben!" << std::endl;
    }

    while (in.get (c)) {
        out << c;
    }

    in.close ();
    out.close ();

    return EXIT_SUCCESS;
}