]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/dir.tex
better documentation for wxWindow::SetSizerAndFit()
[wxWidgets.git] / docs / latex / wx / dir.tex
CommitLineData
35332784
VZ
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: dir.tex
3%% Purpose: wxDir documentation
4%% Author: Vadim Zeitlin
5%% Modified by:
6%% Created: 04.04.00
7%% RCS-ID: $Id$
8%% Copyright: (c) Vadim Zeitlin
8795498c 9%% License: wxWindows license
35332784 10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4afd7529
VZ
11
12\section{\class{wxDir}}\label{wxdir}
13
14wxDir is a portable equivalent of Unix {open/read/close}dir functions which
154b6b0f
VZ
15allow enumerating of the files in a directory. wxDir allows to enumerate files
16as well as directories.
4afd7529 17
35332784
VZ
18wxDir also provides a flexible way to enumerate files recursively using
19\helpref{Traverse}{wxdirtraverse} or a simpler
20\helpref{GetAllFiles}{wxdirgetallfiles} function.
21
4afd7529
VZ
22Example of use:
23
24\begin{verbatim}
25 wxDir dir(wxGetCwd());
26
27 if ( !dir.IsOpened() )
28 {
29 // deal with the error here - wxDir would already log an error message
30 // explaining the exact reason of the failure
31 return;
32 }
33
34 puts("Enumerating object files in current directory:");
35
36 wxString filename;
37
38 bool cont = dir.GetFirst(&filename, filespec, flags);
39 while ( cont )
40 {
41 printf("%s\n", filename.c_str());
42
43 cont = dir.GetNext(&filename);
44 }
45\end{verbatim}
46
47\wxheading{Derived from}
48
49No base class
50
51\wxheading{Constants}
52
e00a5d3c
JS
53These flags define what kind of filename is included in the list of files
54enumerated by GetFirst/GetNext.
4afd7529
VZ
55
56{\small
57\begin{verbatim}
58enum
59{
60 wxDIR_FILES = 0x0001, // include files
61 wxDIR_DIRS = 0x0002, // include directories
62 wxDIR_HIDDEN = 0x0004, // include hidden files
63 wxDIR_DOTDOT = 0x0008, // include '.' and '..'
64
65 // by default, enumerate everything except '.' and '..'
85ec2f26 66 wxDIR_DEFAULT = wxDIR_FILES | wxDIR_DIRS | wxDIR_HIDDEN
4afd7529
VZ
67}
68\end{verbatim}
69}
70
71\wxheading{Include files}
72
73<wx/dir.h>
74
a7af285d
VZ
75\wxheading{Library}
76
77\helpref{wxBase}{librarieslist}
78
4afd7529
VZ
79\latexignore{\rtfignore{\wxheading{Members}}}
80
4afd7529
VZ
81\membersection{wxDir::wxDir}\label{wxdirwxdir}
82
83\func{}{wxDir}{\void}
84
85Default constructor, use \helpref{Open()}{wxdiropen} afterwards.
86
87\func{}{wxDir}{\param{const wxString\& }{dir}}
88
89Opens the directory for enumeration, use \helpref{IsOpened()}{wxdirisopened}
90to test for errors.
91
55427034 92
4afd7529
VZ
93\membersection{wxDir::\destruct{wxDir}}\label{wxdirdtor}
94
95\func{}{\destruct{wxDir}}{\void}
96
2edb0bde 97Destructor cleans up the associated resources. It is not virtual and so this
4afd7529
VZ
98class is not meant to be used polymorphically.
99
4afd7529 100
55427034 101\membersection{wxDir::Exists}\label{wxdirexists}
4afd7529 102
55427034 103\func{static bool}{Exists}{\param{const wxString\& }{dir}}
4afd7529 104
55427034 105Test for existence of a directory with the given name
4afd7529 106
4afd7529 107
55427034
VZ
108\membersection{wxDir::GetAllFiles}\label{wxdirgetallfiles}
109
110\func{static size\_t}{GetAllFiles}{\param{const wxString\& }{dirname}, \param{wxArrayString *}{files}, \param{const wxString\& }{filespec = wxEmptyString}, \param{int }{flags = wxDIR\_DEFAULT}}
111
112The function appends the names of all the files under directory {\it dirname}
43e8916f 113to the array {\it files} (note that its old content is preserved). Only files
55427034
VZ
114matching the {\it filespec} are taken, with empty spec matching all the files.
115
116The {\it flags} parameter should always include {\tt wxDIR\_FILES} or the array
117would be unchanged and should include {\tt wxDIR\_DIRS} flag to recurse into
118subdirectories (both flags are included in the value by default).
119
120See also: \helpref{Traverse}{wxdirtraverse}
121
4afd7529 122
d1af8e2d
VZ
123\membersection{wxDir::FindFirst}\label{wxdirfindfirst}
124
125\func{static wxString}{FindFirst}{\param{const wxString\& }{dirname}, \param{const wxString\& }{filespec}, \param{int }{flags = wxDIR\_DEFAULT}}
126
127The function returns the path of the first file matching the given \arg{filespec}
128or an empty string if there are no files matching it.
129
130The \arg{flags} parameter may or may not include {\tt wxDIR\_FILES}, the
131function always behaves as if it were specified. By default, \arg{flags}
132includes {\tt wxDIR\_DIRS} and so the function recurses into the subdirectories
133but if this flag is not specified, the function restricts the search only to
134the directory \arg{dirname} itself.
135
136See also: \helpref{Traverse}{wxdirtraverse}
137
138
4afd7529
VZ
139\membersection{wxDir::GetFirst}\label{wxdirgetfirst}
140
141\constfunc{bool}{GetFirst}{\param{wxString* }{filename}, \param{const wxString\& }{filespec = wxEmptyString}, \param{int }{flags = wxDIR\_DEFAULT}}
142
143Start enumerating all files matching {\it filespec} (or all files if it is
23b8a262 144empty) and {\it flags}, return \true on success.
4afd7529 145
55427034
VZ
146
147\membersection{wxDir::GetName}\label{wxdirgetname}
148
149\constfunc{wxString}{GetName}{\void}
150
151Returns the name of the directory itself. The returned string does not have the
152trailing path separator (slash or backslash).
153
154
4afd7529
VZ
155\membersection{wxDir::GetNext}\label{wxdirgetnext}
156
157\constfunc{bool}{GetNext}{\param{wxString* }{filename}}
158
154b6b0f
VZ
159Continue enumerating files which satisfy the criteria specified by the last
160call to \helpref{GetFirst}{wxdirgetfirst}.
23b8a262
JS
161
162
163\membersection{wxDir::GetTotalSize}\label{wxdirgettotalsize}
164
165\func{static wxULongLong}{GetTotalSize}{\param{const wxString\& }{dir}, \param{wxArrayString* }{filesSkipped = NULL}}
166
167Returns the size (in bytes) of all files recursively found in {\tt dir} or
168{\tt wxInvalidSize} in case of error.
169
170In case it happens that while traversing folders a file's size can not be read,
171that file is added to the {\tt filesSkipped} array, if not \NULL, and then
172skipped.
173This usually happens with some special folders which are locked by the operating system
174or by another process. Remember that when {\tt filesSkipped->GetCount()} is not zero,
175then the returned value is not 100\% accurate and, if the skipped files were big, it could be
176far from real size of the directory.
177
178See also: \helpref{wxFileName::GetHumanReadableSize}{wxfilenamegethumanreadablesize},
179\helpref{wxGetDiskSpace}{wxgetdiskspace}
4afd7529 180
55427034 181
d9ff0f91
VZ
182\membersection{wxDir::HasFiles}\label{wxdirhasfiles}
183
7af3ca16 184\func{bool}{HasFiles}{\param{const wxString\& }{filespec = wxEmptyString}}
d9ff0f91 185
cc81d32f 186Returns {\tt true} if the directory contains any files matching the given
d9ff0f91
VZ
187{\it filespec}. If {\it filespec} is empty, look for any files at all. In any
188case, even hidden files are taken into account.
189
55427034 190
d9ff0f91
VZ
191\membersection{wxDir::HasSubDirs}\label{wxdirhassubdirs}
192
7af3ca16 193\func{bool}{HasSubDirs}{\param{const wxString\& }{dirspec = wxEmptyString}}
d9ff0f91 194
cc81d32f 195Returns {\tt true} if the directory contains any subdirectories (if a non
d9ff0f91
VZ
196empty {\it filespec} is given, only check for directories matching it).
197The hidden subdirectories are taken into account as well.
198
55427034
VZ
199
200\membersection{wxDir::IsOpened}\label{wxdirisopened}
201
202\constfunc{bool}{IsOpened}{\void}
203
204Returns true if the directory was successfully opened by a previous call to
205\helpref{Open}{wxdiropen}.
206
207
208\membersection{wxDir::Open}\label{wxdiropen}
209
210\func{bool}{Open}{\param{const wxString\& }{dir}}
211
154b6b0f
VZ
212Open the directory for enumerating, returns {\tt true} on success
213or {\tt false} if an error occurred.
55427034
VZ
214
215
94f562a2 216\membersection{wxDir::Traverse}\label{wxdirtraverse}
35332784 217
7af3ca16 218\func{size\_t}{Traverse}{\param{wxDirTraverser\& }{sink}, \param{const wxString\& }{filespec = wxEmptyString}, \param{int }{flags = wxDIR\_DEFAULT}}
35332784
VZ
219
220Enumerate all files and directories under the given directory recursively
221calling the element of the provided \helpref{wxDirTraverser}{wxdirtraverser}
222object for each of them.
223
224More precisely, the function will really recurse into subdirectories if
225{\it flags} contains {\tt wxDIR\_DIRS} flag. It will ignore the files (but
226still possibly recurse into subdirectories) if {\tt wxDIR\_FILES} flag is
227given.
228
229For each found directory, \helpref{sink.OnDir()}{wxdirtraverserondir} is called
230and \helpref{sink.OnFile()}{wxdirtraverseronfile} is called for every file.
231Depending on the return value, the enumeration may continue or stop.
232
233The function returns the total number of files found or {\tt (size\_t)-1} on
234error.
235
2e64ba46 236See also: \helpref{GetAllFiles}{wxdirgetallfiles}
35332784 237