File Pointers

13,483 views 12 slides Aug 21, 2007
Slide 1
Slide 1 of 12
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

About This Presentation

No description available for this slideshow.


Slide Content

FILE HANDLING IN
C++

STREAMS
A Stream is a general name given to flow of
data.
Different streams are used to represent
different kinds of data flow.
Each stream is associated with a particular
class, which contains member functions and
definitions for dealing with that particular
kind of data flow.

The Stream Class Hierarchy
ios
istream
get()
getline()
read()
>>
ostream
put()
write()
<<
fstreambase
iostream
Ifstream
Open()
Tellg()
Seekg()
Ofstream
Open()
Tellp()
Seekp()
fstream
NOTE : UPWARD ARROWS INDICATE
THE BASE CLASS

DIFFERENT FILE OPERATIONS
4OPENING A FILE
4CLOSING A FILE
4READING FROM A FILE
4WRITING ON A FILE
4CHECKING FOR END OF FILE

File Mode Parameters
PARAMETERMEANING
4Ios::app Append to end-of file
4Ios::ate goto end of file on opening
4Ios::binary binary file
4Ios::in
4Ios::nocreateopen fails if file doesn’t exist
4Ios::noreplaceopen fails if file already exists
4Ios::out
4Ios::trunc Deletes contents if it exists

FILE POINTERS

FILE POINTERS
4Each file object has two integer values
associated with it :
–get pointer
–put pointer
4These values specify the byte number in the
file where reading or writing will take
place.

File pointers…..
4By default reading pointer is set at the
beginning and writing pointer is set at the
end (when you open file in ios::app mode)
4There are times when you must take control
of the file pointers yourself so that you can
read from and write to an arbitrary location
in the file.

Functions associated with file
pointers :
4The seekg() and tellg() functions allow you
to set and examine the get pointer.
4The seekp() and tellp() functions allow you
to set and examine the put pointer.

seekg() function :
4With one argument :
seekg(k) where k is absolute position from
the beginning. The start of the file is byte 0
Begin
File
End
k bytes^
File pointer
The seekg() function with one argument

seekg() function :
4With two arguments :
–the first argument represents an offset from a
particular location in the file.
–the second specifies the location from which the
offset is measured.
Begin End
^
Offset from Begin
The seekg() function with two argument

seekg() function :
4With two arguments :
Begin
End
^
Offset from Begin
The seekg() function with two argument
^
^
Offset from end
Offset from current
position
Tags