Important points for doing an io operation in binary mode:
- The file has to be opened in output and binary mode using the flags ios::out (output mode) and ios::binary( binary mode)
- The function write takes two parameters. The first parameter is of type char* for the data to be written and the second is of type int asking for the size of data to be written to the binary file.
File has to be closed at the end.
void write_to_binary_file(WebSites p_Data) { fstream binary_file("c:\test.dat",ios::out|ios::binary|ios::app)binary_file("c:\\test.dat",ios::out|ios::binary|ios::app); binary_file.write(reinterpret_cast(&p_Data),sizeof(WebSites)); <char *>(&p_Data),sizeof(WebSites)); binary_file.close(); }This I/O binary function writes some data to the function.
The file is opened in output and binary mode with ios::out and ios::binary. There's one more specifier ios::app, which tells the Operating system that the file is also opened in append mode. This means any new set of data will be appended to the end of file.
The write function used above, needs the parameter as a character pointer type. So we use a type converter reinterpret_cast to typecast the structure into char* type.
