Zdravím, mám takový problém.
Snažím se otevřít soubor, soubor se otevře, ale nepřečte se celý. Nevím v čem je chyba.
Tady je kód:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
ifstream fileInput;
string fileContent;
fileInput.open("image.jpg", ios::in | ios::binary);
if(fileInput) {
cout << "Soubor pro čtení otevřen." << "\n";
} else {
cout << "Soubor pro čtení nelze otevřít." << "\n";
}
fileInput >> fileContent;
cout << fileContent;
fileInput.close();
}
Díky za případnou pomoc. :)