1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxFFile documentation
4 %% Author: Vadim Zeitlin
6 %% Created: 14.01.02 (extracted from file.tex)
8 %% Copyright: (c) Vadim Zeitlin
9 %% License: wxWindows license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxFFile
}}\label{wxffile
}
14 wxFFile implements buffered file I/O. This is a very small class designed to
15 minimize the overhead of using it - in fact, there is hardly any overhead at
16 all, but using it brings you automatic error checking and hides differences
17 between platforms and compilers. It wraps inside it a
{\tt FILE *
} handle used
18 by standard C IO library (also known as
{\tt stdio
}).
20 \wxheading{Derived from
}
24 \wxheading{Include files
}
29 \begin{twocollist
}\itemsep=
0pt
%
30 \twocolitem{{\bf wxFromStart
}}{Count offset from the start of the file
}
31 \twocolitem{{\bf wxFromCurrent
}}{Count offset from the current position of the file pointer
}
32 \twocolitem{{\bf wxFromEnd
}}{Count offset from the end of the file (backwards)
}
35 \latexignore{\rtfignore{\wxheading{Members
}}}
37 \membersection{wxFFile::wxFFile
}\label{wxffileconstr
}
39 \func{}{wxFFile
}{\void}
43 \func{}{wxFFile
}{\param{const char*
}{ filename
},
\param{const char*
}{ mode = "r"
}}
45 Opens a file with the given mode. As there is no way to return whether the
46 operation was successful or not from the constructor you should test the
47 return value of
\helpref{IsOpened
}{wxffileisopened
} to check that it didn't
50 \func{}{wxFFile
}{\param{FILE*
}{ fp
}}
52 Opens a file with the given file pointer, which has already been opened.
54 \wxheading{Parameters
}
56 \docparam{filename
}{The filename.
}
58 \docparam{mode
}{The mode in which to open the file using standard C strings.
59 Note that you should use
{\tt "b"
} flag if you use binary files under Windows
60 or the results might be unexpected due to automatic newline conversion done
63 \docparam{fp
}{An existing file descriptor, such as stderr.
}
65 \membersection{wxFFile::
\destruct{wxFFile
}}
67 \func{}{\destruct{wxFFile
}}{\void}
69 Destructor will close the file.
71 NB: it is not virtual so you should
{\it not
} derive from wxFFile!
73 \membersection{wxFFile::Attach
}\label{wxffileattach
}
75 \func{void
}{Attach
}{\param{FILE*
}{ fp
}}
77 Attaches an existing file pointer to the wxFFile object.
79 The descriptor should be already opened and it will be closed by wxFFile
82 \membersection{wxFFile::Close
}\label{wxffileclose
}
84 \func{bool
}{Close
}{\void}
86 Closes the file and returns true on success.
88 \membersection{wxFFile::Detach
}\label{wxffiledetach
}
90 \func{void
}{Detach
}{\void}
92 Get back a file pointer from wxFFile object - the caller is responsible for closing the file if this
93 descriptor is opened.
\helpref{IsOpened()
}{wxffileisopened
} will return false after call to Detach().
95 \membersection{wxFFile::fp
}\label{wxffilefp
}
97 \constfunc{FILE *
}{fp
}{\void}
99 Returns the file pointer associated with the file.
101 \membersection{wxFFile::Eof
}\label{wxffileeof
}
103 \constfunc{bool
}{Eof
}{\void}
105 Returns true if the an attempt has been made to read
{\it past
}
108 Note that the behaviour of the file descriptor based class
109 \helpref{wxFile
}{wxfile
} is different as
\helpref{wxFile::Eof
}{wxfileeof
}
110 will return true here as soon as the last byte of the file has been
113 \membersection{wxFFile::Flush
}\label{wxffileflush
}
115 \func{bool
}{Flush
}{\void}
117 Flushes the file and returns true on success.
119 \membersection{wxFFile::IsOpened
}\label{wxffileisopened
}
121 \constfunc{bool
}{IsOpened
}{\void}
123 Returns true if the file has been opened.
125 \membersection{wxFFile::Length
}\label{wxffilelength
}
127 \constfunc{size
\_t}{Length
}{\void}
129 Returns the length of the file.
131 \membersection{wxFFile::Open
}\label{wxffileopen
}
133 \func{bool
}{Open
}{\param{const char*
}{ filename
},
\param{const char*
}{ mode = "r"
}}
135 Opens the file, returning true if successful.
137 \wxheading{Parameters
}
139 \docparam{filename
}{The filename.
}
141 \docparam{mode
}{The mode in which to open the file.
}
143 \membersection{wxFFile::Read
}\label{wxffileread
}
145 \func{size
\_t}{Read
}{\param{void*
}{ buffer
},
\param{off
\_t}{ count
}}
147 Reads the specified number of bytes into a buffer, returning the actual number read.
149 \wxheading{Parameters
}
151 \docparam{buffer
}{A buffer to receive the data.
}
153 \docparam{count
}{The number of bytes to read.
}
155 \wxheading{Return value
}
157 The number of bytes read.
159 \membersection{wxFFile::Seek
}\label{wxffileseek
}
161 \func{bool
}{Seek
}{\param{long
}{ofs
},
\param{wxSeekMode
}{mode = wxFromStart
}}
163 Seeks to the specified position and returns true on success.
165 \wxheading{Parameters
}
167 \docparam{ofs
}{Offset to seek to.
}
169 \docparam{mode
}{One of
{\bf wxFromStart
},
{\bf wxFromEnd
},
{\bf wxFromCurrent
}.
}
171 \membersection{wxFFile::SeekEnd
}\label{wxffileseekend
}
173 \func{bool
}{SeekEnd
}{\param{long
}{ofs =
0}}
175 Moves the file pointer to the specified number of bytes before the end of the file
176 and returns true on success.
178 \wxheading{Parameters
}
180 \docparam{ofs
}{Number of bytes before the end of the file.
}
182 \membersection{wxFFile::Tell
}\label{wxffiletell
}
184 \constfunc{size
\_t}{Tell
}{\void}
186 Returns the current position.
188 \membersection{wxFFile::Write
}\label{wxffilewrite
}
190 \func{size
\_t}{Write
}{\param{const void*
}{ buffer
},
\param{size
\_t}{ count
}}
192 Writes the specified number of bytes from a buffer.
194 \wxheading{Parameters
}
196 \docparam{buffer
}{A buffer containing the data.
}
198 \docparam{count
}{The number of bytes to write.
}
200 \wxheading{Return value
}
202 Number of bytes written.
204 \membersection{wxFFile::Write
}\label{wxffilewrites
}
206 \func{bool
}{Write
}{\param{const wxString\&
}{s
},
\param{wxMBConv\&
}{ conv = wxConvUTF8
}}
208 Writes the contents of the string to the file, returns true on success.
210 The second argument is only meaningful in Unicode build of wxWindows when
211 {\it conv
} is used to convert
{\it s
} to multibyte representation.