File handling in c++

BaabtraMentoringPartner 4,390 views 20 slides Jan 02, 2015
Slide 1
Slide 1 of 20
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16
Slide 17
17
Slide 18
18
Slide 19
19
Slide 20
20

About This Presentation

No description available for this slideshow.


Slide Content

FILE HANDLING IN C++ Nikhil Dev S.B [email protected] www.facebook.com/nikhildevsb Twitter Profile www.linkedin.com/nikhildevsb Typing speed : 22 wpm.

Disclaimer: This presentation is prepared by trainees of baabtra.com as a part of mentoring program. This is not official document of baabtra.com – Mentoring Partner

What is a File? A file is a collection of information, usually stored on a computer’s disk. Information can be saved to files and then later reused. Computers store files to secondary storage so that the contents of files remain intact when a computer shuts down. When a computer reads a file, it copies the file from the storage device to memory; when it writes to a file, it transfers data from memory to the storage device. All files are assigned a name that is used for identification purposes by the operating system and the user.

Files Used to transfer data to and from disk

Steps in Processing a File Using a file in a program is a simple three-step process The file must be opened. If the file does not yet exits, opening it means creating it. Information is then saved to the file, read from the file, or both. When the program is finished using the file, the file must be closed.

File streams in c++ The following classes in c++ have access to file input and output functions: i fstream - This data type represents the input file stream and is used to read information from files ofstream - This data type represents the output file stream and is used to create files and to write information to files. f stream - This data type represents the file stream generally, and has the capabilities of both ofstream and ifstream which means it can create files, write information to files, and read information from files .

Opening Files Using Constructor ofstream - output file stream File access requires the inclusion of header file fstream.h Before data can be written to or read from a file, the file must be opened. Use ofstream for output stream. ofstream objectname ( “ filename ”); E.g. // ofstream constructor opens file named “customer” for output(write). fout as ofstream object. void main() { ofstream fout ( "customer”); //open file to write string str_name =“John”; fout << string_name ; //write to file ……. }

ifstream – input file stream ifstream for input stream. E.g. Void main() { ….. ….. ifstream fin( “customer”); fin>> string_name ; //read from file ……. ……. }

Opening Files using open() Open multiple files using same stream object. syntax: file-stream-class stream-object; stream- object.open (“ filename”,filemode ); Example: ofstream fout ; fout.open (“customer1”); ........... ........... fout.close (); fout.open (“customer2”); ......... ......... fout.close (); optional

File Open Modes ios :: in - (input) open a file to read ios ::out - (output) open a file to write ios :: app - append to end-of-file. ios : trunc -(truncate) delete the file contents if it exists. ios:nocreate – open fails if the file doesn’t exist. ios:noreplace – open fails if file already exists.

Example for ios ::out mode #include < fstream.h > int main(void) { //opens a file named file1.txt in write mode ofstream outFile ("file1.txt", ios ::out); //constructor type outFile << “it’s a file"; //write to file outFile.close (); //file is closed return 0; }

fstream – input and ouput file stream fstream object can handle both the input and output(read and write) simultaneously. void main() { string name=“John”; fstream f; //created object f for fstream ; f.open (“TEXT”, ios :: in | ios :: out ); //opens file TEXT in read & write mode f<<name; // write name to file f>>name; // read name from file cout <<name; }

Closing a File When we finish with a mode, we need to close the file before ending the program or beginning another mode with that same file. To close a file, we use close using the object: f. close ();

Function for Manipulation of File Pointer If we want to move desired position on the file we use certain built in functions: seekg () : seekget , moves getpointer (read) to specified location. syntax: seekg ( offset,refposition ); E.g. f1.seekg(0, ios ::beg); - go to start. f1.seekg(0,ios::cur); - stay at the current position f1.seekg(0,ios::end); - go to end of file. f1.seekg( m,ios ::beg); - move to (m+1) th byte in the file. f1.seekg( m,ios ::cur) ; - go forward by m byte from current position

seekp () : seekput , move putpointer (write) to desired position. syntax: seekp ( offset,refposition ); tellg () : gives the current position of getpointer . tellp () : gives the current position of putpointer . Eg . ofstream fout ; // outstream object fout fout.open (“ hellow”,ios ::app); //open append mode and fout points last postion int p= fout.tellp (); //return number of bytes in file

Thank you...

Want to learn more about programming or Looking to become a good programmer?   Are you wasting time on searching so many contents online? Do you want to learn things quickly? Tired of spending huge amount of money to become a Software professional? Do an online course @  baabtra.com We put industry standards to practice. Our structured, activity based courses are so designed to make a quick, good software professional out of anybody who holds a passion for coding.

Follow us @  twitter.com/ baabtra Like us @ facebook.com/ baabtra Subscribe to us @ youtube.com/ baabtra Become a follower @ slideshare.net/ BaabtraMentoringPartner Connect to us @ in.linkedin.com/in/ baabtra Give a feedback @ massbaab.com/ baabtra Thanks in advance    www.baabtra.com  |  www.massbaab.com  | www.baabte.com

Emarald Mall (Big Bazar Building) Mavoor Road, Kozhikode, Kerala, India. Ph: + 91 – 495 40 25 550 NC Complex, Near Bus Stand Mukkam , Kozhikode, Kerala, India. Ph: + 91 – 495 40 25 550 Cafit Square, Hilite Business Park, Near Pantheerankavu , Kozhikode Start up Village Eranakulam , Kerala, India. Email: [email protected] Contact Us
Tags