- C++ Course Basics
- C++ Tutorial
- C++ Basic Syntax
- C++ Identifiers
- C++ Character Set
- C++ Input/Output Operator
- C++ Variables
- C++ Data Types
- C++ Formatting Output
- C++ Operators
- C++ Assignment Operator
- C++ Type Conversion
- C++ Program Control
- C++ if and if-else
- C++ switch
- C++ loops
- C++ break and continue
- C++ Functions
- C++ Functions
- C++ Prototype and Definition
- C++ Function Call
- C++ Function Types
- C++ Friend Function
- C++ Function Overloading
- C++ Arrays and Strings
- C++ Arrays
- C++ One-Dimensional Arrays
- C++ Strings
- C++ String Functions
- C++ Structures
- C++ Structures
- C++ Nested Structure
- C++ Structure Array
- C++ Pass Structure to Function
- C++ Pointers
- C++ Pointers
- C++ Memory Map
- C++ Declare Initialize Pointers
- C++ Pointers and Structures
- C++ Object-Oriented
- C++ Object-Oriented
- C++ Classes and Objects
- C++ Constructors and Destructors
- C++ Objects as Function Arguments
- C++ Pointers and Objects
- C++ Data Structure
- C++ Linked List
- C++ Stack
- C++ Queues
- C++ File Handling
- C++ File Handling
- C++ Opening and Closing Files
- C++ Steps to Process Files
- C++ Sequential I/O Operations
- C++ Detecting EOF
- C++ File Pointers Random Access
- C++ Binary Files Operations
- C++ Error Handling
- C++ Misc
- C++ typedef
- C++ #define
- C++ Date and Time
- C++ Examples
- C++ Examples
C++ File Handling
It is sometimes necessary to save the user's information in a file for later use. You can later retrieve the information after saving it in a file. A file aids in the permanent storage of information.
A file is a collection of bytes stored on a storage device such as tape, magnetic disc, or hard disc. File input and output operations in C++ are handled by the C++ standard library's component header file "fstream".
A file is a type of object in C++.
- At its lowest level, it is interpreted as a sequence or stream of bytes.
- At the user level, it is a mix of different kinds of data, like characters, numbers, and class objects.
The "fstream" library includes a set of operations for dealing with file-related input and output. It defines several classes that aid in file input and output operations.
To store, retrieve, or delete data from or into a file, you must first understand how to handle it. As a result, in this section, I'll try to explain as much as possible to help you become a better C++ file handler.
The following is a list of topics that will be covered in the section "File Handling in C++."
- File streams in C++
- Data files in C++
- C++ file opening and closing
- C++ File Processing Steps
- C++ File Sequential Input/Output Operations
- End-of-File Detection in C++
- File Pointers in C++: Random Access (RA)
- Binary File Operations in C++
- Error Handling in C++ During File Operations
From the nine sub-topics of "file handling in C++," the first two will be covered in this post: "File streams in C++" and "Data files in C++." The remaining topics will be covered in a separate post beginning with the next post.
File streams in C++
At the most basic level, a stream is the name given to a data flow. At its most basic, data is just binary data with no concept of data type. Various streams are used to represent various types of data flow, such as whether data is flowing into or out of memory.
Each stream is associated with a specific class containing the member functions and definitions for managing that specific type of data flow. The "ifstream" class, for instance, represents the input disc files.
Input stream refers to the stream that provides data to the program. It reads the file and transfers the data to the program. Output stream refers to the stream which receives data from the program. It stores the received data in the specified file.
The C++ file I/O system includes a collection of classes that are responsible for defining the file handling methods. These classes are declared in the header file known as "fstream". Its purpose is to manage the files that are stored on the disc. Because of this, we need to incorporate this file into a program that is capable of working with files.
The list below briefly describes all three "header files" that are most commonly and widely used in C++ file handling programs.
- ofstream: a stream that creates and writes files
- ifstream: Reads file contents.
- fstream: A combination of ofstream and ifstream, fstream reads, writes, and creates files.
Here's a simple example program using C++ file streams. This program only requires you to enter the file name and a line to store the line in this file.
#include <iostream> #include <fstream> #include <string> using namespace std; int main() { string inform, fname; cout << "Enter file name: "; getline(cin, fname); ofstream fout(fname); if (!fout) { cout << "Error creating the file!\n"; return 0; } cout << "Enter a line to store in the file: "; getline(cin, inform); fout << inform << "\n"; cout << "\nThe information you entered was successfully saved!\n"; fout.close(); return 0; }
The following snapshot shows the initial output produced by the above program:
Now enter the input, that is, type the name of the file to be created, for example, "myfile.txt," and press the ENTER key to save it in the current directory. Then type "Hello there" and press the ENTER key again to save this text in the newly created file. The snapshot below depicts the sample run with these inputs:
The "current directory" refers to the location of the above C++ source code. Because I saved the preceding C++ source code in the directory "C:\Users\DEV\Documents\fresherearth," a new file named "myfile.txt" will be created. The following snapshot was taken from the current directory and includes the newly opened file:
Now, let me explain the above code to you so you understand how the program works. I'll only go over the file handling code fragments. Other code fragments used in the preceding program have been discussed in previous posts.
- To perform the file processing task, I included the "fstream" header file.
- I included it at the beginning of the program because I needed to use the "ofstream" class and create an object of its type in order to use it and create a new file.
- Now, during program execution, I received the filename from the user. Always try to enter the file name and extension, such as "fresherearth.txt," "fresherearth.html," and so on.
- Then I used the "ofstream" class in conjunction with the "fout()" object to create a new file and open it in order to insert or store data into it.
- During program execution, I received a line of text from the user. I then saved the entered data to a file using the "file" object.
- Finally, I used the "close()" method to close the file stream.
Data files in C++
Files are required to permanently store any information for future use. The same is true for data files.
Data files are files that store information about a specific application for later use. The data files can be saved in one of two ways:
Text file
Information is stored in a text file using ASCII characters. To denote the end of a line of text in a text file, the End of Line (EOF) character is used.
Binary file
There is no line delimiter present in a binary file's data structure. In addition, translations do not take place within a binary file. As a consequence of this, a program can read and write binary files significantly more quickly and easily compared to text files. The best way to store program information is in a binary file, provided that the file does not need to be read by people or ported to a different type of system.
C++ File Handling Program
Before we conclude this post's discussion, let me provide an example of file handling in C++. As a result, I wrote the following program, which will receive the file name from the user at program runtime, then receive the content to store in the file, and finally allow the user to view the file's content on the output console.
#include <iostream> #include <fstream> #include <string> using namespace std; int main() { ifstream ifile; string inform, fname; char ch; cout << "Enter file name: "; getline(cin, fname); ifile.open(fname); if (ifile) { cout << "The entered file already exists. Please try again.\n"; return 0; } else { ifile.close(); ofstream fout(fname); if (!fout) { cout << "Error creating the file!\n"; return 0; } cout << "Enter a line to store in the file: "; getline(cin, inform); fout << inform << "\n"; cout << "\nThe information you entered was successfully saved!\n"; fout.close(); cout << "\nDo you want to read the file \"" << fname << "\"? (y/n): "; cin >> ch; if (ch == 'y' || ch == 'Y') { string myline; ifstream ifile(fname); while (getline(ifile, myline)) { cout << myline; } ifile.close(); } } cout << endl; return 0; }
The following box shows the sample run of the above program with user inputs: "fresherearth.txt" as the name of the file, "Learning file handling in C++ programming is enjoyable." as the line of text to store in the newly created file, and "y" as the choice to read the newly created file back on the output console.
Enter file name: fresherearth.txt Enter a line to store in the file: Learning file handling in C++ programming is enjoyable. The information you entered was successfully saved! Do you want to read the file "fresherearth.txt"? (y/n): y Learning file handling in C++ programming is enjoyable. Process returned 0 (0x0) execution time : 9.583 s
More Examples
- Read a File
- Write into the File
- File Reading and Display
- Copy File
- Merge two files
- Delete File
- Encrypt and decrypt files
« Previous Tutorial Next Tutorial »