Binärdaten in Puffer speichern

ifstream input(fileName, ios::binary);
vector<byte> buffer(istreambuf_iterator<char>(input), {});
Fair Flatworm