//C++:
//
get the length of file. // char * holder; int length = 0; int hav = 0; int not = 0; int counter = 0; int sumit = 0; //create the ifstream('examplefile') to load the data from the .res 'fname' location: ifstream resexamplefile; resexamplefile.open (fname, ios::binary);//.res file path in "fname": // get length of file: resexamplefile.seekg (0, ios::end); length = resexamplefile.tellg(); log_file.seekg(-long(max_filesize), ios::end);//move back 65535 from end; resexamplefile.seekg (0, ios::beg);//then move back to the beginning // allocate memory per the size of the file: holder = new char [length];

log_file.read(buffer, length); //read bytes to buffer array.

相关文章:

  • 2022-12-23
  • 2021-08-20
  • 2021-11-08
  • 2022-12-23
  • 2022-12-23
  • 2021-07-04
  • 2021-11-21
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-30
  • 2022-12-23
相关资源
相似解决方案