I want to open a file for reading, the C++ way. I need to be able to do it for text files, which would involve some sort of read line function, and a way to do it for binary files, which would provide a way to read raw data into a char* buffer.
|
|
There are three ways to do this, depending on your needs. You could use the old-school C way and call fopen/fread/fclose, or you could use the C++ fstream facilities (ifstream/ofstream), or if you're using MFC, use the CFile class, which provides functions to accomplish actual file operations. All of these are suitable for both text and binary, though none have a specific readline functionality. What you'd most likely do instead in that case is use the fstream classes (fstream.h) and use the stream operators (<< and >>) or the read function to read/write blocks of text:
Note that, if you're using Visual Studio 2005 or higher, traditional fstream may not be available (there's a new Microsoft implementation, which is slightly different, but accomplishes the same thing). |
||
|
|
|
|
You need to use an To open a file in text mode, do the following:
To open a file in binary mode, you just need to add the "binary" flag.
Use the |
|||
|
|
|
fstream are great but I will go a little deeper and tell you about RAII. The problem with a classic example is that you are forced to close the file by yourself, meaning that you will have to bend your architecture to this need. RAII makes use of the automatic destructor call in C++ to close the file for you. Update: seems that std::fstream already implements RAII so the code above is useless. I'll keep it here for posterity and as an example of RAII.
You can now use this class in your code like this:
Learning how RAII works can save you some headaches and some major memory management bugs. |
|||
|
|
|
@Danny
The |
||
|
|
|
|
@Vincent
If you declare an |
||
|
|
|
@Derek Park: Thanks for that. I had no idea that a getline function existed. |
||
|
|
|
|
Anyone interested in RAII, should check out The Official Resource Management Page by Bartosz Milewski. |
||
|
|
|
|
If you want to read a line from your file, I would recommend using istream& getline (istream& is, string& str); from the |
||
|
