012
04.07.2005, 10:11 Uhr
countless
|
[quote ~Janosch]Wie baue ich rein, wenn ich mich zum Beispiel verschreibe und der File nicht existiert das dann sowas kommt wie. cout<<"Falsche Fileangabe"<<endl; Was natuerlich noch eleganter waere, waere eine graphische oberflaeche wo man die datei direkt suchen kann. aber das waere zu kompliziert, gell? Thx nochmal[/quote]
ich denke das müsste dann so oder so ähnlich aussschauen:
#include <fstream>
ifstream file("test.dat", ios::in);
if (!file){ cout<<"Falsche Fileangabe"<<endl; }
und was die graf. oberfläche angeht... unter qt wärs dann wohl sowas wie qfiledialog oder ähnliches auszug aus der manpage: "QFileDialog - Dialogs that allow users to select files or directories" -- "I'm here..... yeah,.. I'm here.......... it's not that big of a deal......... i won't have to return to that shitty world.... this is....... not that bad." .hack//sign (tsukasa) |