hi guys...my code works fine, just when i want to put a longer path as input my programm chrashed... maybe the buffer for my string path; is too small? how can i handle this? C:\test.txt works fine but when the input is like that C:\Dokumente und Einstellungen\xxxxx\Desktop\test.txt it will chrash every time...
.
.
.
string path;
cout<<"Bitte geben Sie den Quellpfad der Text Datei an:\n\n";
cin>>path;
getchar();
.
.
.