9
estoy usando ifstream::read
para leer un archivo,ifstream :: read no dice cuántos bytes realmente lee?
ifstream ifs("a.txt");
char buf[1024];
ifs.read(buf, 1024);
Pero el tamaño de a.txt podría ser inferior a 1000 bytes
, así que ¿cómo se supone que voy a saber cuántos bytes se han leído en ifs
?