]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/file.tex
Cured some small doc typos; some WIN16 fixes; transferred DLL WinMain to
[wxWidgets.git] / docs / latex / wx / file.tex
CommitLineData
a660d684
KB
1\section{\class{wxFile}}\label{wxfile}
2
247aba10
VZ
3A wxFile performs raw file I/O. This is a very small class designed to
4minimize the overhead of using it - in fact, there is hardly any overhead at
5all, but using it brings you automatic error checking and hides differences
6between platforms and compilers.
a660d684
KB
7
8\wxheading{Derived from}
9
10None.
11
247aba10
VZ
12\wxheading{Constants}
13
14wx/file.h defines the following constants:
6be663cf 15
247aba10
VZ
16{\small
17\begin{verbatim}
18#define wxS_IRUSR 00400
19#define wxS_IWUSR 00200
20#define wxS_IXUSR 00100
21
22#define wxS_IRGRP 00040
23#define wxS_IWGRP 00020
24#define wxS_IXGRP 00010
25
26#define wxS_IROTH 00004
27#define wxS_IWOTH 00002
28#define wxS_IXOTH 00001
29
30// default mode for the new files: corresponds to umask 022
31#define wxS_DEFAULT (wxS_IRUSR | wxS_IWUSR | wxS_IRGRP | wxS_IWGRP | wxS_IROTH | wxS_IWOTH)
32\end{verbatim}
33}
34
35These constants define the file access rights and are used with
36\helpref{wxFile::Create}{wxfilecreate} and \helpref{wxFile::Open}{wxfileopen}.
37
38The {\it OpenMode} enumeration defines the different modes for opening a file,
6be663cf
JS
39it's defined inside wxFile class so its members should be specified with {\it wxFile::} scope
40resolution prefix. It is also used with \helpref{wxFile::Access}{wxfileaccess} function.
247aba10 41
6be663cf
JS
42\twocolwidtha{7cm}
43\begin{twocollist}\itemsep=0pt%
247aba10
VZ
44\twocolitem{{\bf wxFile::read}}{Open file for reading or test if it can be opened for reading with Access()}
45\twocolitem{{\bf wxFile::write}}{Open file for writing deleting the contents of the file if it already exists
46or test if it can be opened for writing with Access()}
47\twocolitem{{\bf wxFile::read\_write}}{Open file for reading and writing; can not be used with Access()}
48\twocolitem{{\bf wxFile::write\_append}}{Open file for appending: the file is opened for writing, but the old
49contents of the file is not erased and the file pointer is initially placed at the end of the file;
50can not be used with Access()}
51\end{twocollist}
52
53Other constants defined elsewhere but used by wxFile functions are wxInvalidOffset which represents an
54invalid value of type {\it off\_t} and is returned by functions returning {\it off\_t} on error and the seek
55mode constants used with \helpref{Seek()}{wxfileseek}:
56
57\twocolwidtha{7cm}
6be663cf 58\begin{twocollist}\itemsep=0pt%
247aba10
VZ
59\twocolitem{{\bf wxFromStart}}{Count offset from the start of the file}
60\twocolitem{{\bf wxFromCurrent}}{Count offset from the current position of the file pointer}
61\twocolitem{{\bf wxFromEnd}}{Count offset from the end of the file (backwards)}
62\end{twocollist}
63
a660d684
KB
64\latexignore{\rtfignore{\wxheading{Members}}}
65
66\membersection{wxFile::wxFile}\label{wxfileconstr}
67
68\func{}{wxFile}{\void}
69
70Default constructor.
71
72\func{}{wxFile}{\param{const char*}{ filename}, \param{wxFile::OpenMode}{ mode = wxFile::read}}
73
247aba10
VZ
74Opens a file with the given mode. As there is no way to return whether the
75operation was successful or not from the constructor you should test the
76return value of \helpref{IsOpened}{wxfileisopened} to check that it didn't
77fail.
a660d684
KB
78
79\func{}{wxFile}{\param{int}{ fd}}
80
81Opens a file with the given file descriptor, which has already been opened.
82
83\wxheading{Parameters}
84
85\docparam{filename}{The filename.}
86
87\docparam{mode}{The mode in which to open the file. May be one of {\bf wxFile::read}, {\bf wxFile::write} and {\bf wxFile::read\_write}.}
88
247aba10 89\docparam{fd}{An existing file descriptor (see \helpref{Attach()}{wxfileattach} for the list of predefined descriptors)}
a660d684
KB
90
91\membersection{wxFile::\destruct{wxFile}}
92
93\func{}{\destruct{wxFile}}{\void}
94
247aba10 95Destructor will close the file.
a660d684 96
247aba10
VZ
97NB: it is not virtual so you should {\it not} derive from wxFile!
98
99\membersection{wxFile::Access}\label{wxfileaccess}
6be663cf
JS
100
101\func{static bool}{Access}{\param{const char *}{ name}, \param{OpenMode}{ mode}}
a660d684 102
247aba10
VZ
103This function verifies if we may access the given file in specified mode. Only
104values of wxFile::read or wxFile::write really make sense here.
105
106\membersection{wxFile::Attach}\label{wxfileattach}
6be663cf 107
a660d684
KB
108\func{void}{Attach}{\param{int}{ fd}}
109
247aba10
VZ
110Attaches an existing file descriptor to the wxFile object. Example of predefined
111file descriptors are 0, 1 and 2 which correspond to stdin, stdout and stderr (and
112have symbolic names of wxFile::fd\_stdin, wxFile::fd\_stdout and wxFile::fd\_stderr).
113
114The descriptor should be already opened and it will be closed by wxFile
115object.
a660d684
KB
116
117\membersection{wxFile::Close}\label{wxfileclose}
118
119\func{void}{Close}{\void}
120
121Closes the file.
122
123\membersection{wxFile::Create}\label{wxfilecreate}
124
247aba10 125\func{bool}{Create}{\param{const char*}{ filename}, \param{bool}{ overwrite = FALSE}, \param{int }{access = wxS\_DEFAULT}}
a660d684
KB
126
127Creates a file for writing. If the file already exists, setting {\bf overwrite} to TRUE
128will ensure it is overwritten.
129
247aba10 130\membersection{wxFile::Detach}\label{wxfiledetach}
6be663cf 131
247aba10
VZ
132\func{void}{Detach}{\void}
133
134Get back a file descriptor from wxFile object - the caller is responsible for closing the file if this
135descriptor is opened. \helpref{IsOpened()}{wxfileisopened} will return FALSE after call to Detach().
136
137\membersection{wxFile::fd}\label{wxfilefd}
6be663cf 138
247aba10
VZ
139\constfunc{int}{fd}{\void}
140
141Returns the file descriptor associated with the file.
142
a660d684
KB
143\membersection{wxFile::Eof}\label{wxfileeof}
144
145\constfunc{bool}{Eof}{\void}
146
147Returns TRUE if the end of the file has been reached.
148
149\membersection{wxFile::Exists}\label{wxfileexists}
150
151\func{static bool}{Exists}{\param{const char*}{ filename}}
152
247aba10 153Returns TRUE if the given name specifies an existing regular file.
a660d684
KB
154
155\membersection{wxFile::Flush}\label{wxfileflush}
156
157\func{bool}{Flush}{\void}
158
247aba10
VZ
159Flushes the file descriptor.
160
161Note that wxFile::Flush is not implemented on some Windows compilers
162due to a missing fsync function, which reduces the usefulness of this function
163(it can still be called but it will do nothing on unsupported compilers).
a660d684
KB
164
165\membersection{wxFile::IsOpened}\label{wxfileisopened}
166
167\constfunc{bool}{IsOpened}{\void}
168
169Returns TRUE if the file has been opened.
170
171\membersection{wxFile::Length}\label{wxfilelength}
172
173\constfunc{off\_t}{Length}{\void}
174
175Returns the length of the file.
176
177\membersection{wxFile::Open}\label{wxfileopen}
178
179\func{bool}{Open}{\param{const char*}{ filename}, \param{wxFile::OpenMode}{ mode = wxFile::read}}
180
181Opens the file, returning TRUE if successful.
182
183\wxheading{Parameters}
184
185\docparam{filename}{The filename.}
186
187\docparam{mode}{The mode in which to open the file. May be one of {\bf wxFile::read}, {\bf wxFile::write} and {\bf wxFile::read\_write}.}
188
189\membersection{wxFile::Read}\label{wxfileread}
190
191\func{off\_t}{Read}{\param{void*}{ buffer}, \param{off\_t}{ count}}
192
193Reads the specified number of bytes into a buffer, returning the actual number read.
194
195\wxheading{Parameters}
196
197\docparam{buffer}{A buffer to receive the data.}
198
199\docparam{count}{The number of bytes to read.}
200
201\wxheading{Return value}
202
247aba10 203The number of bytes read, or the symbol {\bf wxInvalidOffset} (-1) if there was an error.
a660d684
KB
204
205\membersection{wxFile::Seek}\label{wxfileseek}
206
207\func{off\_t}{Seek}{\param{off\_t }{ofs}, \param{wxFile::SeekMode }{mode = wxFile::FromStart}}
208
209Seeks to the specified position.
210
211\wxheading{Parameters}
212
213\docparam{ofs}{Offset to seek to.}
214
215\docparam{mode}{One of {\bf wxFile::FromStart}, {\bf wxFile::FromEnd}, {\bf wxFile::FromCurrent}.}
216
217\wxheading{Return value}
218
247aba10 219The actual offset position achieved, or wxInvalidOffset on failure.
a660d684
KB
220
221\membersection{wxFile::SeekEnd}\label{wxfileseekend}
222
223\func{off\_t}{SeekEnd}{\param{off\_t }{ofs = 0}}
224
225Moves the file pointer to the specified number of bytes before the end of the file.
226
227\wxheading{Parameters}
228
229\docparam{ofs}{Number of bytes before the end of the file.}
230
231\wxheading{Return value}
232
247aba10 233The actual offset position achieved, or wxInvalidOffset on failure.
a660d684
KB
234
235\membersection{wxFile::Tell}\label{wxfiletell}
236
237\constfunc{off\_t}{Tell}{\void}
238
247aba10
VZ
239Returns the current position or wxInvalidOffset if file is not opened or if another
240error occured.
a660d684
KB
241
242\membersection{wxFile::Write}\label{wxfilewrite}
243
244\func{bool}{Write}{\param{const void*}{ buffer}, \param{off\_t}{ count}}
245
246Writes the specified number of bytes from a buffer.
247
248\wxheading{Parameters}
249
250\docparam{buffer}{A buffer containing the data.}
251
252\docparam{count}{The number of bytes to write.}
253
254\wxheading{Return value}
255
256TRUE if the operation was successful.
257
247aba10 258\membersection{wxFile::Write}\label{wxfilewrites}
6be663cf 259
247aba10 260\func{bool}{Write}{\param{const wxString& }{s}}
a660d684 261
6be663cf
JS
262Writes the contents of the string to the file, returns TRUE on success.
263