File Handling in C
File Handling in C
File Handling concept in C++ language is used for store a data permanently in computer. Using file
The transfer of input - data or output - data from one computer to another can be easily
For read and write from a file you need another standard C++ library called fstream, which defines three
Datatype Description
fstream This is used to both read and write data from/to files
How to achieve File Handling
Naming a file
Opening a file
Closing a file
Function Operation
The function open() can be used to open multiple files that use the same stream object.
Syntax
file-stream-class stream-object;
stream-object.open("filename");
Example
A file must be close after completion of all operation related to file. For closing file we need close() function.
Syntax
outfile.close();
Both ios :: app and ios :: ate take us to the end of the file when it is opened. The difference between the two
parameters is that the ios :: app allows us to add data to the end of file only, while ios :: ate mode permits us
to add data or to modify the existing data any where in the file.
The mode can combine two or more parameters using the bitwise OR operator (symbol |)
Example
fstream file;
file.Open("data . txt", ios :: out | ios :: in);
File pointer
Each file have two associated pointers known as the file pointers. One of them is called the input pointer (or
get pointer) and the other is called the output pointer (or put pointer). The input pointer is used for reading
the contents of a given file location and the output pointer is used for writing to a given file location.
Function for manipulation
of file pointer
When we want to move file pointer to desired position then use these function for manage the file pointers.
Function Operation
fout . seekg(m, ios :: cur) go forward by m bytes from the current position
fout . seekg(-m, ios :: cur) go backward by m bytes from the current position
The function put() write a single character to the associated stream. Similarly, the function get() reads a
These function take two arguments. The first is the address of the variable V , and the second is the length
of that variable in bytes. The address of variable must be cast to type char * (i.e pointer to character type).
Example
#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#include<stdlib.h>
#include<fstream.h>
class student
{
public:
int roll;
char name[15],f_name[20];
void put();
void get();
void switch_case();
}; student s;
void student::put()
{
clrscr();
fstream file;
cout<<"Enter roll no: ";
cin>>roll;
cout<<"Enter name: ";
gets(name);
cout<<"Enter father name: ";
gets(f_name);
file.open("stu.dat",ios::out|ios::app);
// file.seekp(0,ios::beg);
file.write((char *)this,sizeof(student));
file.close();
getch();
s.switch_case();
}
void student::get()
{
int temp;
clrscr();
cout<"Enter roll no: ";
cin>>temp;
fstream file;
file.open("stu.dat",ios::in);
file.seekg(0,ios::beg);
while(file.read((char *)this,sizeof(student)));
{
if(roll==temp)
{
cout<<"roll no. "<<roll<<endl;
cout<<"stu name: "<<name<<endl;
cout<<"father name: "<<f_name;
}
}
file.close();
getch();
s.switch_case();
}
void student::switch_case()
{
int i;
cout<<"Enter your choice (1-Read, 2-Write, 3-exit): ";
cin>>i;
switch(i)
{
case 1:
s.put();
break;
case 2:
s.get();
break;
case 3:
exit(0);
default:
cout<<"wrong choice ";
}
}
void main()
{
clrscr();
s.switch_case();
}
Download Code
Output
Enter roll_no: 1
Enter roll_no.: 1
roll no.: 1