]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/filename.tex
Remove use of GetVolumeInformation since it causes long delays on network drives.
[wxWidgets.git] / docs / latex / wx / filename.tex
CommitLineData
2569938d
VZ
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: filename.tex
3%% Purpose: wxFileName documentation
4%% Author: Vadim Zeitlin
5%% Modified by:
6%% Created: 30.11.01
7%% RCS-ID: $Id$
8%% Copyright: (c) 2001 Vadim Zeitlin
8795498c 9%% License: wxWindows license
2569938d
VZ
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12\section{\class{wxFileName}}\label{wxfilename}
13
14wxFileName encapsulates a file name. This class serves two purposes: first, it
15provides the functions to split the file names into components and to recombine
16these components in the full file name which can then be passed to the OS file
fc2171bd 17functions (and \helpref{wxWidgets functions}{filefunctions} wrapping them).
2569938d 18Second, it includes the functions for working with the files itself. Note that
95c00185 19to change the file data you should use \helpref{wxFile}{wxfile} class instead.
2569938d
VZ
20wxFileName provides functions for working with the file attributes.
21
22\wxheading{Derived from}
23
24No base class
25
93ab511d
VZ
26\wxheading{Include files}
27
28<wx/filename.h>
29
2569938d
VZ
30\wxheading{Data structures}
31
32Many wxFileName methods accept the path format argument which is by\rtfsp
33{\tt wxPATH\_NATIVE} by default meaning to use the path format native for the
34current platform.
35
36The path format affects the operation of wxFileName functions in several ways:
37first and foremost, it defines the path separator character to use, but it also
38affects other things such as whether the path has the drive part or not.
39
40\begin{verbatim}
41enum wxPathFormat
42{
43 wxPATH_NATIVE = 0, // the path format for the current platform
44 wxPATH_UNIX,
f363e05c 45 wxPATH_BEOS = wxPATH_UNIX,
2569938d
VZ
46 wxPATH_MAC,
47 wxPATH_DOS,
f363e05c
VZ
48 wxPATH_WIN = wxPATH_DOS,
49 wxPATH_OS2 = wxPATH_DOS,
2569938d
VZ
50 wxPATH_VMS,
51
f363e05c 52 wxPATH_MAX // Not a valid value for specifying path format
2569938d
VZ
53}
54\end{verbatim}
55
6f91bc33
VZ
56\latexignore{\rtfignore{\wxheading{Function groups}}}
57
5bb9aeb2 58
f0e8a2d0 59\membersection{File name format}\label{filenameformat}
6f91bc33
VZ
60
61wxFileName currently supports the file names in the Unix, DOS/Windows, Mac OS
62and VMS formats. Although these formats are quite different, wxFileName tries
2edb0bde 63to treat them all in the same generic way. It supposes that all file names
6f91bc33
VZ
64consist of the following parts: the volume (also known as drive under Windows
65or device under VMS), the path which is a sequence of directory names separated
66by the \helpref{path separators}{wxfilenamegetpathseparators} and the full
67filename itself which, in turn, is composed from the base file name and the
68extension. All of the individual components of the file name may be empty and,
69for example, the volume name is always empty under Unix, but if they are all
70empty simultaneously, the filename object is considered to be in an invalid
0894707e 71state and \helpref{IsOk}{wxfilenameisok} returns {\tt false} for it.
6f91bc33
VZ
72
73File names can be case-sensitive or not, the function\rtfsp
74\helpref{IsCaseSensitive}{wxfilenameiscasesensitive} allows to determine this.
75
47ce5c4a
VZ
76The rules for determining whether the file name is absolute or relative also
77depend on the file name format and the only portable way to answer this
78question is to use \helpref{IsAbsolute}{wxfilenameisabsolute} or\rtfsp
79\helpref{IsRelative}{wxfilenameisrelative} method. Note that on Windows, "X:"
80refers to the current working directory on drive X. Therefore, a wxFileName
81instance constructed from for example "X:dir/file.ext" treats the portion
82beyond drive separator as being relative to that directory.
83
84To ensure that the filename is absolute, you may use\rtfsp
85\helpref{MakeAbsolute}{wxfilenamemakeabsolute}. There is also an inverse
86function \helpref{MakeRelativeTo}{wxfilenamemakerelativeto} which undoes
87what \helpref{Normalize(wxPATH\_NORM\_DOTS)}{wxfilenamenormalize} does.
6f91bc33
VZ
88
89Other functions returning information about the file format provided by this
90class are \helpref{GetVolumeSeparator}{wxfilenamegetvolumeseparator},\rtfsp
2db991f4 91\helpref{IsPathSeparator}{wxfilenameispathseparator}.
6f91bc33 92
5bb9aeb2 93
f0e8a2d0 94\membersection{File name construction}\label{filenameconstruction}
6f91bc33
VZ
95
96TODO.
97
5bb9aeb2 98
f0e8a2d0 99\membersection{File tests}\label{filetests}
6f91bc33 100
47ce5c4a
VZ
101Before doing other tests, you should use \helpref{IsOk}{wxfilenameisok} to
102verify that the filename is well defined. If it is,\rtfsp
103\helpref{FileExists}{wxfilenamefileexists} can be used to test whether a file
104with such name exists and \helpref{DirExists}{wxfilenamedirexists} can be used
105to test for directory existence.
6f91bc33
VZ
106
107File names should be compared using \helpref{SameAs}{wxfilenamesameas} method
108or \helpref{$==$}{wxfilenameoperatorequal}.
109
5bb9aeb2 110
f0e8a2d0 111\membersection{File name components}\label{filenamecomponents}
6f91bc33 112
2458d90b
VZ
113These functions allow to examine and modify the individual directories of the
114path:
6f91bc33
VZ
115
116\helpref{AppendDir}{wxfilenameappenddir}\\
117\helpref{InsertDir}{wxfilenameinsertdir}\\
118\helpref{GetDirCount}{wxfilenamegetdircount}
119\helpref{PrependDir}{wxfilenameprependdir}\\
2458d90b
VZ
120\helpref{RemoveDir}{wxfilenameremovedir}\\
121\helpref{RemoveLastDir}{wxfilenameremovelastdir}
6f91bc33
VZ
122
123To change the components of the file name individually you can use the
124following functions:
125
126\helpref{GetExt}{wxfilenamegetext}\\
127\helpref{GetName}{wxfilenamegetname}\\
128\helpref{GetVolume}{wxfilenamegetvolume}\\
129\helpref{HasExt}{wxfilenamehasext}\\
130\helpref{HasName}{wxfilenamehasname}\\
131\helpref{HasVolume}{wxfilenamehasvolume}\\
132\helpref{SetExt}{wxfilenamesetext}\\
0b40f3d8
RR
133\helpref{ClearExt}{wxfilenameclearext}\\
134\helpref{SetEmptyExt}{wxfilenamesetemptyext}\\
6f91bc33
VZ
135\helpref{SetName}{wxfilenamesetname}\\
136\helpref{SetVolume}{wxfilenamesetvolume}\\
137
5bb9aeb2 138
f0e8a2d0 139\membersection{Operations}\label{filenameoperations}
6f91bc33
VZ
140
141These methods allow to work with the file creation, access and modification
6dbb903b
VZ
142times. Note that not all filesystems under all platforms implement these times
143in the same way. For example, the access time under Windows has a resolution of
144one day (so it is really the access date and not time). The access time may be
145updated when the file is executed or not depending on the platform.
6f91bc33
VZ
146
147\helpref{GetModificationTime}{wxfilenamegetmodificationtime}\\
148\helpref{GetTimes}{wxfilenamegettimes}\\
149\helpref{SetTimes}{wxfilenamesettimes}\\
150\helpref{Touch}{wxfilenametouch}
151
152Other file system operations functions are:
153
154\helpref{Mkdir}{wxfilenamemkdir}\\
155\helpref{Rmdir}{wxfilenamermdir}
156
2569938d
VZ
157\latexignore{\rtfignore{\wxheading{Members}}}
158
5bb9aeb2 159
6f91bc33 160\membersection{wxFileName::wxFileName}\label{wxfilenamewxfilename}
2569938d
VZ
161
162\func{}{wxFileName}{\void}
163
164Default constructor.
165
2569938d
VZ
166\func{}{wxFileName}{\param{const wxFileName\& }{filename}}
167
168Copy constructor.
169
2569938d
VZ
170\func{}{wxFileName}{\param{const wxString\& }{fullpath}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
171
95c00185 172Constructor taking a full filename. If it terminates with a '/', a directory path
2edb0bde 173is constructed (the name will be empty), otherwise a file name and
95c00185 174extension are extracted from it.
2569938d 175
2569938d
VZ
176\func{}{wxFileName}{\param{const wxString\& }{path}, \param{const wxString\& }{name}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
177
6f91bc33 178Constructor from a directory name and a file name.
2569938d
VZ
179
180\func{}{wxFileName}{\param{const wxString\& }{path}, \param{const wxString\& }{name}, \param{const wxString\& }{ext}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
181
95c00185 182Constructor from a directory name, base file name and extension.
81f25632
VZ
183
184\func{}{wxFileName}{\param{const wxString\& }{volume}, \param{const wxString\& }{path}, \param{const wxString\& }{name}, \param{const wxString\& }{ext}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
185
95c00185 186Constructor from a volume name, a directory name, base file name and extension.
2569938d 187
5bb9aeb2 188
2569938d
VZ
189\membersection{wxFileName::AppendDir}\label{wxfilenameappenddir}
190
191\func{void}{AppendDir}{\param{const wxString\& }{dir}}
192
5bb9aeb2
VZ
193Appends a directory component to the path. This component should contain a
194single directory name level, i.e. not contain any path or volume separators nor
195should it be empty, otherwise the function does nothing (and generates an
196assert failure in debug build).
197
2569938d
VZ
198
199\membersection{wxFileName::Assign}\label{wxfilenameassign}
200
201\func{void}{Assign}{\param{const wxFileName\& }{filepath}}
202
2569938d
VZ
203\func{void}{Assign}{\param{const wxString\& }{fullpath}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
204
dfecbee5
VZ
205\func{void}{Assign}{\param{const wxString\& }{volume}, \param{const wxString\& }{path}, \param{const wxString\& }{name}, \param{const wxString\& }{ext}, \param{bool }{hasExt}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
206
2569938d
VZ
207\func{void}{Assign}{\param{const wxString\& }{volume}, \param{const wxString\& }{path}, \param{const wxString\& }{name}, \param{const wxString\& }{ext}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
208
2569938d
VZ
209\func{void}{Assign}{\param{const wxString\& }{path}, \param{const wxString\& }{name}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
210
2569938d
VZ
211\func{void}{Assign}{\param{const wxString\& }{path}, \param{const wxString\& }{name}, \param{const wxString\& }{ext}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
212
95c00185 213Creates the file name from various combinations of data.
2569938d 214
5bb9aeb2 215
2569938d
VZ
216\membersection{wxFileName::AssignCwd}\label{wxfilenameassigncwd}
217
f363e05c 218\func{static void}{AssignCwd}{\param{const wxString\& }{volume = wxEmptyString}}
6f91bc33
VZ
219
220Makes this object refer to the current working directory on the specified
221volume (or current volume if {\it volume} is empty).
2569938d 222
6f91bc33 223\wxheading{See also}
2569938d 224
6f91bc33 225\helpref{GetCwd}{wxfilenamegetcwd}
2569938d 226
5bb9aeb2 227
2569938d
VZ
228\membersection{wxFileName::AssignDir}\label{wxfilenameassigndir}
229
230\func{void}{AssignDir}{\param{const wxString\& }{dir}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
231
95c00185 232Sets this file name object to the given directory name. The name and extension
81f25632 233will be empty.
2569938d 234
5bb9aeb2 235
2569938d
VZ
236\membersection{wxFileName::AssignHomeDir}\label{wxfilenameassignhomedir}
237
238\func{void}{AssignHomeDir}{\void}
239
95c00185 240Sets this file name object to the home directory.
2569938d 241
5bb9aeb2 242
2569938d
VZ
243\membersection{wxFileName::AssignTempFileName}\label{wxfilenameassigntempfilename}
244
df22f860 245\func{void}{AssignTempFileName}{\param{const wxString\& }{prefix}, \param{wxFile *}{fileTemp = {\tt NULL}}}
2569938d 246
ade35f11
VZ
247The function calls \helpref{CreateTempFileName}{wxfilenamecreatetempfilename} to
248create a temporary file and sets this object to the name of the file. If a
249temporary file couldn't be created, the object is put into the\rtfsp
250\helpref{invalid}{wxfilenameisok} state.
2569938d 251
5bb9aeb2 252
2569938d
VZ
253\membersection{wxFileName::Clear}\label{wxfilenameclear}
254
255\func{void}{Clear}{\void}
256
ade35f11
VZ
257Reset all components to default, uninitialized state.
258
5bb9aeb2 259
0b40f3d8
RR
260\membersection{wxFileName::ClearExt}\label{wxfilenameclearext}
261
262\func{void}{SetClearExt}{\void}
263
264Removes the extension from the file name resulting in a
265file name with no trailing dot.
266
267\wxheading{See also}
268
269\helpref{SetExt}{wxfilenamesetext}
270\helpref{SetEmptyExt}{wxfilenamesetemptyext}
271
02a3b391 272\membersection{wxFileName::CreateTempFileName}\label{wxfilenamecreatetempfilename}
ade35f11 273
df22f860 274\func{static wxString}{CreateTempFileName}{\param{const wxString\& }{prefix}, \param{wxFile *}{fileTemp = {\tt NULL}}}
ade35f11
VZ
275
276Returns a temporary file name starting with the given {\it prefix}. If
277the {\it prefix} is an absolute path, the temporary file is created in this
278directory, otherwise it is created in the default system directory for the
279temporary files or in the current directory.
2569938d 280
df22f860
VZ
281If the function succeeds, the temporary file is actually created. If\rtfsp
282{\it fileTemp} is not {\tt NULL}, this file will be opened using the name of
283the temporary file. When possible, this is done in an atomic way ensuring that
284no race condition occurs between the temporary file name generation and opening
285it which could often lead to security compromise on the multiuser systems.
286If {\it fileTemp} is {\tt NULL}, the file is only created, but not opened.
287
288Under Unix, the temporary file will have read and write permissions for the
289owner only to minimize the security problems.
290
291\wxheading{Parameters}
292
293\docparam{prefix}{Prefix to use for the temporary file name construction}
294
295\docparam{fileTemp}{The file to open or {\tt NULL} to just get the name}
ade35f11
VZ
296
297\wxheading{Return value}
298
299The full temporary file name or an empty string on error.
2569938d 300
5bb9aeb2 301
2569938d
VZ
302\membersection{wxFileName::DirExists}\label{wxfilenamedirexists}
303
8e41796c 304\constfunc{bool}{DirExists}{\void}
2569938d 305
8e41796c 306\func{static bool}{DirExists}{\param{const wxString\& }{dir}}
2569938d 307
f363e05c 308Returns {\tt true} if the directory with this name exists.
2569938d 309
5bb9aeb2 310
2569938d
VZ
311\membersection{wxFileName::DirName}\label{wxfilenamedirname}
312
520200fd
VZ
313\func{static wxFileName}{DirName}{\param{const wxString\& }{dir}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
314
315Returns the object corresponding to the directory with the given name.
316The {\it dir} parameter may have trailing path separator or not.
2569938d 317
95c00185 318
5bb9aeb2 319
2569938d
VZ
320\membersection{wxFileName::FileExists}\label{wxfilenamefileexists}
321
8e41796c 322\constfunc{bool}{FileExists}{\void}
2569938d 323
8e41796c 324\func{static bool}{FileExists}{\param{const wxString\& }{file}}
2569938d 325
f363e05c 326Returns {\tt true} if the file with this name exists.
2569938d 327
8e41796c
VZ
328\wxheading{See also}
329
330\helpref{DirExists}{wxfilenamedirexists}
331
520200fd 332
5bb9aeb2 333
2569938d
VZ
334\membersection{wxFileName::FileName}\label{wxfilenamefilename}
335
520200fd
VZ
336\func{static wxFileName}{FileName}{\param{const wxString\& }{file}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
337
338Returns the file name object corresponding to the given {\it file}. This
339function exists mainly for symmetry with \helpref{DirName}{wxfilenamedirname}.
2569938d 340
2569938d 341
5bb9aeb2 342
2569938d
VZ
343\membersection{wxFileName::GetCwd}\label{wxfilenamegetcwd}
344
f363e05c 345\func{static wxString}{GetCwd}{\param{const wxString\& }{volume = ""}}
6f91bc33 346
95c00185 347Retrieves the value of the current working directory on the specified volume. If
43e8916f 348the volume is empty, the program's current working directory is returned for the
6f91bc33
VZ
349current volume.
350
351\wxheading{Return value}
352
353The string containing the current working directory or an empty string on
354error.
2569938d 355
6f91bc33
VZ
356\wxheading{See also}
357
358\helpref{AssignCwd}{wxfilenameassigncwd}
2569938d 359
5bb9aeb2 360
2569938d
VZ
361\membersection{wxFileName::GetDirCount}\label{wxfilenamegetdircount}
362
363\constfunc{size\_t}{GetDirCount}{\void}
364
95c00185 365Returns the number of directories in the file name.
2569938d 366
5bb9aeb2 367
2569938d
VZ
368\membersection{wxFileName::GetDirs}\label{wxfilenamegetdirs}
369
370\constfunc{const wxArrayString\&}{GetDirs}{\void}
371
95c00185 372Returns the directories in string array form.
2569938d 373
5bb9aeb2 374
2569938d
VZ
375\membersection{wxFileName::GetExt}\label{wxfilenamegetext}
376
377\constfunc{wxString}{GetExt}{\void}
378
95c00185 379Returns the file name extension.
2569938d 380
5bb9aeb2 381
f363e05c
VZ
382\membersection{wxFileName::GetForbiddenChars}\label{wxfilenamegetforbiddenchars}
383
384\func{static wxString}{GetForbiddenChars}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
385
386Returns the characters that can't be used in filenames and directory names for the specified format.
387
5bb9aeb2 388
2569938d
VZ
389\membersection{wxFileName::GetFormat}\label{wxfilenamegetformat}
390
f363e05c 391\func{static wxPathFormat}{GetFormat}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 392
95c00185 393Returns the canonical path format for this platform.
2569938d 394
5bb9aeb2 395
2569938d
VZ
396\membersection{wxFileName::GetFullName}\label{wxfilenamegetfullname}
397
398\constfunc{wxString}{GetFullName}{\void}
399
95c00185 400Returns the full name (including extension but excluding directories).
2569938d 401
5bb9aeb2 402
2569938d
VZ
403\membersection{wxFileName::GetFullPath}\label{wxfilenamegetfullpath}
404
405\constfunc{wxString}{GetFullPath}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
406
95c00185 407Returns the full path with name and extension.
2569938d 408
5bb9aeb2 409
2569938d
VZ
410\membersection{wxFileName::GetHomeDir}\label{wxfilenamegethomedir}
411
f363e05c 412\func{static wxString}{GetHomeDir}{\void}
2569938d 413
95c00185 414Returns the home directory.
2569938d 415
5bb9aeb2 416
2569938d
VZ
417\membersection{wxFileName::GetLongPath}\label{wxfilenamegetlongpath}
418
419\constfunc{wxString}{GetLongPath}{\void}
420
421Return the long form of the path (returns identity on non-Windows platforms)
422
5bb9aeb2 423
2569938d
VZ
424\membersection{wxFileName::GetModificationTime}\label{wxfilenamegetmodificationtime}
425
426\constfunc{wxDateTime}{GetModificationTime}{\void}
427
95c00185 428Returns the last time the file was last modified.
2569938d 429
5bb9aeb2 430
2569938d
VZ
431\membersection{wxFileName::GetName}\label{wxfilenamegetname}
432
433\constfunc{wxString}{GetName}{\void}
434
4e43c815
VZ
435Returns the name part of the filename (without extension).
436
437\wxheading{See also}
438
439\helpref{GetFullName}{wxfilenamegetfullname}
440
2569938d 441
5bb9aeb2 442
2569938d
VZ
443\membersection{wxFileName::GetPath}\label{wxfilenamegetpath}
444
93fa67c0 445\constfunc{wxString}{GetPath}{\param{int }{flags = {\tt wxPATH\_GET\_VOLUME}}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 446
95c00185 447Returns the path part of the filename (without the name or extension). The
33b97389 448possible flags values are:
2569938d 449
d1853d47 450\twocolwidtha{5cm}
33b97389 451\begin{twocollist}\itemsep=0pt
d1853d47 452\twocolitem{{\bf wxPATH\_GET\_VOLUME}}{Return the path with the volume (does
93fa67c0
VZ
453nothing for the filename formats without volumes), otherwise the path without
454volume part is returned.}
d1853d47 455\twocolitem{{\bf wxPATH\_GET\_SEPARATOR}}{Return the path with the trailing
33b97389
VZ
456separator, if this flag is not given there will be no separator at the end of
457the path.}
458\end{twocollist}
459
5bb9aeb2 460
33b97389
VZ
461\membersection{wxFileName::GetPathSeparator}\label{wxfilenamegetpathseparator}
462
f363e05c 463\func{static wxChar}{GetPathSeparator}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
33b97389 464
95c00185 465Returns the usually used path separator for this format. For all formats but
33b97389
VZ
466{\tt wxPATH\_DOS} there is only one path separator anyhow, but for DOS there
467are two of them and the native one, i.e. the backslash is returned by this
468method.
469
470\wxheading{See also}
471
472\helpref{GetPathSeparators}{wxfilenamegetpathseparators}
2569938d 473
5bb9aeb2 474
2569938d
VZ
475\membersection{wxFileName::GetPathSeparators}\label{wxfilenamegetpathseparators}
476
f363e05c 477\func{static wxString}{GetPathSeparators}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 478
95c00185 479Returns the string containing all the path separators for this format. For all
33b97389 480formats but {\tt wxPATH\_DOS} this string contains only one character but for
7af3ca16 481DOS and Windows both {\tt '/'} and {\tt '\textbackslash'} may be used as
33b97389
VZ
482separators.
483
484\wxheading{See also}
2569938d 485
33b97389 486\helpref{GetPathSeparator}{wxfilenamegetpathseparator}
2569938d 487
5bb9aeb2 488
f1e77933
VZ
489\membersection{wxFileName::GetPathTerminators}\label{wxfilenamegetpathterminators}
490
491\func{static wxString}{GetPathTerminators}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
492
493Returns the string of characters which may terminate the path part. This is the
494same as \helpref{GetPathSeparators}{wxfilenamegetpathseparators} except for VMS
495path format where $]$ is used at the end of the path part.
496
497
8b4b9395
VZ
498\membersection{wxFileName::GetPathWithSep}\label{wxfilenamegetpathwithsep}
499
500\constfunc{wxString}{GetPathWithSep}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
501
502Returns the path with the trailing separator, useful for appending the name to
503the given path.
504
505This is the same as calling \helpref{GetPath}{wxfilenamegetpath}
506\texttt{(wxPATH\_GET\_VOLUME | wxPATH\_GET\_SEPARATOR, format)}.
507
508
2569938d
VZ
509\membersection{wxFileName::GetShortPath}\label{wxfilenamegetshortpath}
510
511\constfunc{wxString}{GetShortPath}{\void}
512
95c00185 513Return the short form of the path (returns identity on non-Windows platforms).
2569938d 514
5bb9aeb2 515
2569938d
VZ
516\membersection{wxFileName::GetTimes}\label{wxfilenamegettimes}
517
6dbb903b 518\constfunc{bool}{GetTimes}{\param{wxDateTime* }{dtAccess}, \param{wxDateTime* }{dtMod}, \param{wxDateTime* }{dtCreate}}
2569938d 519
95c00185 520Returns the last access, last modification and creation times. The last access
ebb39671
VZ
521time is updated whenever the file is read or written (or executed in the case
522of Windows), last modification time is only changed when the file is written
523to. Finally, the creation time is indeed the time when the file was created
524under Windows and the inode change time under Unix (as it is impossible to
525retrieve the real file creation time there anyhow) which can also be changed
526by many operations after the file creation.
2569938d 527
95c00185 528Any of the pointers may be {\tt NULL} if the corresponding time is not
ebb39671
VZ
529needed.
530
531\wxheading{Return value}
532
0894707e 533{\tt true} on success, {\tt false} if we failed to retrieve the times.
2569938d 534
5bb9aeb2 535
2569938d
VZ
536\membersection{wxFileName::GetVolume}\label{wxfilenamegetvolume}
537
538\constfunc{wxString}{GetVolume}{\void}
539
f70c0443 540Returns the string containing the volume for this file name, empty if it
ebb39671
VZ
541doesn't have one or if the file system doesn't support volumes at all (for
542example, Unix).
2569938d 543
5bb9aeb2 544
2569938d
VZ
545\membersection{wxFileName::GetVolumeSeparator}\label{wxfilenamegetvolumeseparator}
546
f363e05c 547\func{static wxString}{GetVolumeSeparator}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 548
95c00185 549Returns the string separating the volume from the path for this format.
2569938d 550
5bb9aeb2 551
2569938d
VZ
552\membersection{wxFileName::HasExt}\label{wxfilenamehasext}
553
554\constfunc{bool}{HasExt}{\void}
555
f363e05c 556Returns {\tt true} if an extension is present.
2569938d 557
5bb9aeb2 558
2569938d
VZ
559\membersection{wxFileName::HasName}\label{wxfilenamehasname}
560
561\constfunc{bool}{HasName}{\void}
562
f363e05c 563Returns {\tt true} if a name is present.
2569938d 564
5bb9aeb2 565
2569938d
VZ
566\membersection{wxFileName::HasVolume}\label{wxfilenamehasvolume}
567
568\constfunc{bool}{HasVolume}{\void}
569
f363e05c 570Returns {\tt true} if a volume specifier is present.
2569938d 571
5bb9aeb2 572
2569938d
VZ
573\membersection{wxFileName::InsertDir}\label{wxfilenameinsertdir}
574
2458d90b 575\func{void}{InsertDir}{\param{size\_t }{before}, \param{const wxString\& }{dir}}
2569938d 576
5bb9aeb2
VZ
577Inserts a directory component before the zero-based position in the directory
578list. Please see \helpref{AppendDir}{wxfilenameappenddir} for important notes.
579
2569938d
VZ
580
581\membersection{wxFileName::IsAbsolute}\label{wxfilenameisabsolute}
582
583\func{bool}{IsAbsolute}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
584
f363e05c 585Returns {\tt true} if this filename is absolute.
2569938d 586
5bb9aeb2 587
2569938d
VZ
588\membersection{wxFileName::IsCaseSensitive}\label{wxfilenameiscasesensitive}
589
f363e05c 590\func{static bool}{IsCaseSensitive}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 591
f363e05c 592Returns {\tt true} if the file names of this type are case-sensitive.
2569938d 593
5bb9aeb2 594
2569938d
VZ
595\membersection{wxFileName::IsOk}\label{wxfilenameisok}
596
597\constfunc{bool}{IsOk}{\void}
598
0894707e 599Returns {\tt true} if the filename is valid, {\tt false} if it is not
ade35f11
VZ
600initialized yet. The assignment functions and
601\helpref{Clear}{wxfilenameclear} may reset the object to the uninitialized,
602invalid state (the former only do it on failure).
2569938d 603
5bb9aeb2 604
2569938d
VZ
605\membersection{wxFileName::IsPathSeparator}\label{wxfilenameispathseparator}
606
f363e05c 607\func{static bool}{IsPathSeparator}{\param{wxChar }{ch}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 608
0894707e 609Returns {\tt true} if the char is a path separator for this format.
2569938d 610
5bb9aeb2 611
2569938d
VZ
612\membersection{wxFileName::IsRelative}\label{wxfilenameisrelative}
613
614\func{bool}{IsRelative}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
615
0894707e 616Returns {\tt true} if this filename is not absolute.
2569938d 617
5bb9aeb2 618
2db991f4 619\membersection{wxFileName::IsDir}\label{wxfilenameisdir}
2569938d 620
2db991f4 621\constfunc{bool}{IsDir}{\void}
2569938d 622
0894707e 623Returns {\tt true} if this object represents a directory, {\tt false} otherwise
2db991f4
VZ
624(i.e. if it is a file). Note that this method doesn't test whether the
625directory or file really exists, you should use
626\helpref{DirExists}{wxfilenamedirexists} or
627\helpref{FileExists}{wxfilenamefileexists} for this.
2569938d 628
5ab2950d
JS
629\membersection{wxFileName::MacFindDefaultTypeAndCreator}\label{wxfilenamemacfinddefaulttypeandcreator}
630
631\func{static bool}{MacFindDefaultTypeAndCreator}{\param{const wxString\& }{ext}, \param{wxUint32* }{type}, \param{wxUint32* }{creator}}
632
633On Mac OS, gets the common type and creator for the given extension.
634
635\membersection{wxFileName::MacRegisterDefaultTypeAndCreator}\label{wxfilenamemacregisterdefaulttypeandcreator}
636
637\func{static void}{MacRegisterDefaultTypeAndCreator}{\param{const wxString\& }{ext}, \param{wxUint32 }{type}, \param{wxUint32 }{creator}}
638
639On Mac OS, registers application defined extensions and their default type and creator.
640
641\membersection{wxFileName::MacSetDefaultTypeAndCreator}\label{wxfilenamemacsetdefaulttypeandcreator}
642
643\func{bool}{MacSetDefaultTypeAndCreator}{\void}
644
645On Mac OS, looks up the appropriate type and creator from the registration and then sets it.
5bb9aeb2 646
0894707e
VS
647\membersection{wxFileName::MakeAbsolute}\label{wxfilenamemakeabsolute}
648
649\func{bool}{MakeAbsolute}{\param{const wxString\& }{cwd = wxEmptyString}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
650
651Make the file name absolute. This is a shortcut for
652{\tt \helpref{Normalize}{wxfilenamenormalize}(wxPATH\_NORM\_DOTS | wxPATH\_NORM\_ABSOLUTE | wxPATH\_NORM\_TILDE, cwd, format)}.
653
654\wxheading{See also}
655
656\helpref{MakeRelativeTo}{wxfilenamemakerelativeto},
657\helpref{Normalize}{wxfilenamenormalize},
658\helpref{IsAbsolute}{wxfilenameisabsolute}
659
5bb9aeb2 660
f7d886af
VZ
661\membersection{wxFileName::MakeRelativeTo}\label{wxfilenamemakerelativeto}
662
f363e05c 663\func{bool}{MakeRelativeTo}{\param{const wxString\& }{pathBase = wxEmptyString}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
f7d886af
VZ
664
665This function tries to put this file name in a form relative to {\it pathBase}.
666In other words, it returns the file name which should be used to access this
667file if the current directory were {\it pathBase}.
668
669\docparam{pathBase}{the directory to use as root, current directory is used by
670default}
671
672\docparam{format}{the file name format, native by default}
673
674\wxheading{Return value}
675
0894707e 676{\tt true} if the file name has been changed, {\tt false} if we failed to do
f7d886af
VZ
677anything with it (currently this only happens if the file name is on a volume
678different from the volume specified by {\it pathBase}).
679
680\wxheading{See also}
681
682\helpref{Normalize}{wxfilenamenormalize}
2569938d 683
5bb9aeb2 684
2569938d
VZ
685\membersection{wxFileName::Mkdir}\label{wxfilenamemkdir}
686
1527281e 687\func{bool}{Mkdir}{\param{int }{perm = 0777}, \param{int }{flags = $0$}}
2569938d 688
1527281e 689\func{static bool}{Mkdir}{\param{const wxString\& }{dir}, \param{int }{perm = 0777}, \param{int }{flags = $0$}}
2569938d 690
6f91bc33 691\docparam{dir}{the directory to create}
2569938d 692
6f91bc33
VZ
693\docparam{parm}{the permissions for the newly created directory}
694
1527281e
VZ
695\docparam{flags}{if the flags contain {\tt wxPATH\_MKDIR\_FULL} flag,
696try to create each directory in the path and also don't return an error
697if the target directory already exists.}
2569938d 698
6f91bc33 699\wxheading{Return value}
2569938d 700
0894707e 701Returns {\tt true} if the directory was successfully created, {\tt false}
6f91bc33 702otherwise.
2569938d 703
5bb9aeb2 704
2569938d
VZ
705\membersection{wxFileName::Normalize}\label{wxfilenamenormalize}
706
32a0d013 707\func{bool}{Normalize}{\param{int }{flags = wxPATH\_NORM\_ALL}, \param{const wxString\& }{cwd = wxEmptyString}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 708
0894707e 709Normalize the path. With the default flags value, the path will be
2569938d 710made absolute, without any ".." and "." and all environment
0894707e
VS
711variables will be expanded in it.
712
713\docparam{flags}{The kind of normalization to do with the file name. It can be
714any or-combination of the following constants:
d2c2afc9 715
0894707e
VS
716\begin{twocollist}
717\twocolitem{{\bf wxPATH\_NORM\_ENV\_VARS}}{replace env vars with their values}
718\twocolitem{{\bf wxPATH\_NORM\_DOTS}}{squeeze all .. and . and prepend cwd}
719\twocolitem{{\bf wxPATH\_NORM\_TILDE}}{Unix only: replace ~ and ~user}
08890e27 720\twocolitem{{\bf wxPATH\_NORM\_CASE}}{if filesystem is case insensitive, transform to lower case}
0894707e
VS
721\twocolitem{{\bf wxPATH\_NORM\_ABSOLUTE}}{make the path absolute}
722\twocolitem{{\bf wxPATH\_NORM\_LONG}}{make the path the long form}
21f60945 723\twocolitem{{\bf wxPATH\_NORM\_SHORTCUT}}{resolve if it is a shortcut (Windows only)}
ef92f440 724\twocolitem{{\bf wxPATH\_NORM\_ALL}}{all of previous flags except \texttt{wxPATH\_NORM\_CASE}}
0894707e 725\end{twocollist}
d2c2afc9 726}%
0894707e
VS
727
728\docparam{cwd}{If not empty, this directory will be used instead of current
729working directory in normalization.}
730
731\docparam{format}{The file name format, native by default.}
2569938d 732
5bb9aeb2 733
2569938d
VZ
734\membersection{wxFileName::PrependDir}\label{wxfilenameprependdir}
735
736\func{void}{PrependDir}{\param{const wxString\& }{dir}}
737
5bb9aeb2
VZ
738Prepends a directory to the file path. Please see
739\helpref{AppendDir}{wxfilenameappenddir} for important notes.
740
741
2569938d
VZ
742
743\membersection{wxFileName::RemoveDir}\label{wxfilenameremovedir}
744
2458d90b 745\func{void}{RemoveDir}{\param{size\_t }{pos}}
2569938d 746
2458d90b
VZ
747Removes the specified directory component from the path.
748
749\wxheading{See also}
750
751\helpref{GetDirCount}{wxfilenamegetdircount}
752
753
754\membersection{wxFileName::RemoveLastDir}\label{wxfilenameremovelastdir}
755
756\func{void}{RemoveLastDir}{\void}
757
758Removes last directory component from the path.
2569938d 759
5bb9aeb2 760
2569938d
VZ
761\membersection{wxFileName::Rmdir}\label{wxfilenamermdir}
762
763\func{bool}{Rmdir}{\void}
764
6f91bc33 765\func{static bool}{Rmdir}{\param{const wxString\& }{dir}}
2569938d 766
95c00185 767Deletes the specified directory from the file system.
2569938d 768
5bb9aeb2 769
2569938d
VZ
770\membersection{wxFileName::SameAs}\label{wxfilenamesameas}
771
2b5f62a0 772\constfunc{bool}{SameAs}{\param{const wxFileName\& }{filepath}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 773
95c00185 774Compares the filename using the rules of this platform.
2569938d 775
5bb9aeb2 776
2569938d
VZ
777\membersection{wxFileName::SetCwd}\label{wxfilenamesetcwd}
778
779\func{bool}{SetCwd}{\void}
780
6f91bc33 781\func{static bool}{SetCwd}{\param{const wxString\& }{cwd}}
2569938d 782
95c00185 783Changes the current working directory.
2569938d 784
5bb9aeb2 785
2569938d
VZ
786\membersection{wxFileName::SetExt}\label{wxfilenamesetext}
787
788\func{void}{SetExt}{\param{const wxString\& }{ext}}
789
0b40f3d8
RR
790Sets the extension of the file name. Setting an empty string
791as the extension will remove the extension resulting in a file
792name without a trailing dot, unlike a call to
793\helpref{SetEmptyExt}{wxfilenamesetemptyext}.
794
795\wxheading{See also}
796
797\helpref{SetEmptyExt}{wxfilenamesetemptyext}
798\helpref{ClearExt}{wxfilenameclearext}
799
800\membersection{wxFileName::SetEmptyExt}\label{wxfilenamesetemptyext}
801
802\func{void}{SetEmptyExt}{\void}
803
804Sets the extension of the file name to be an empty extension.
805This is different from having no extension at all as the file
806name will have a trailing dot after a call to this method.
807
808\wxheading{See also}
2569938d 809
0b40f3d8
RR
810\helpref{SetExt}{wxfilenamesetext}
811\helpref{ClearExt}{wxfilenameclearext}
5bb9aeb2 812
2569938d
VZ
813\membersection{wxFileName::SetFullName}\label{wxfilenamesetfullname}
814
815\func{void}{SetFullName}{\param{const wxString\& }{fullname}}
816
95c00185 817The full name is the file name and extension (but without the path).
2569938d 818
5bb9aeb2 819
2569938d
VZ
820\membersection{wxFileName::SetName}\label{wxfilenamesetname}
821
822\func{void}{SetName}{\param{const wxString\& }{name}}
823
4e43c815
VZ
824Sets the name part (without extension).
825
826\wxheading{See also}
827
828\helpref{SetFullName}{wxfilenamesetfullname}
2569938d 829
5bb9aeb2 830
2569938d
VZ
831\membersection{wxFileName::SetTimes}\label{wxfilenamesettimes}
832
6dbb903b 833\func{bool}{SetTimes}{\param{const wxDateTime* }{dtAccess}, \param{const wxDateTime* }{dtMod}, \param{const wxDateTime* }{dtCreate}}
2569938d 834
95c00185 835Sets the file creation and last access/modification times (any of the pointers may be NULL).
2569938d 836
5bb9aeb2 837
2569938d
VZ
838\membersection{wxFileName::SetVolume}\label{wxfilenamesetvolume}
839
840\func{void}{SetVolume}{\param{const wxString\& }{volume}}
841
95c00185 842Sets the volume specifier.
2569938d 843
5bb9aeb2 844
2569938d
VZ
845\membersection{wxFileName::SplitPath}\label{wxfilenamesplitpath}
846
dfecbee5
VZ
847\func{static void}{SplitPath}{\param{const wxString\& }{fullpath}, \param{wxString* }{volume}, \param{wxString* }{path}, \param{wxString* }{name}, \param{wxString* }{ext}, \param{bool }{*hasExt = \texttt{NULL}}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
848
2bd25c5a 849\func{static void}{SplitPath}{\param{const wxString\& }{fullpath}, \param{wxString* }{volume}, \param{wxString* }{path}, \param{wxString* }{name}, \param{wxString* }{ext}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 850
2bd25c5a 851\func{static void}{SplitPath}{\param{const wxString\& }{fullpath}, \param{wxString* }{path}, \param{wxString* }{name}, \param{wxString* }{ext}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 852
2bd25c5a
VZ
853This function splits a full file name into components: the volume (with the
854first version) path (including the volume in the second version), the base name
855and the extension. Any of the output parameters ({\it volume}, {\it path},
856{\it name} or {\it ext}) may be {\tt NULL} if you are not interested in the
857value of a particular component. Also, {\it fullpath} may be empty on entry.
858
859On return, {\it path} contains the file path (without the trailing separator),
860{\it name} contains the file name and {\it ext} contains the file extension
861without leading dot. All three of them may be empty if the corresponding
862component is. The old contents of the strings pointed to by these parameters
863will be overwritten in any case (if the pointers are not {\tt NULL}).
2569938d 864
dfecbee5
VZ
865Note that for a filename ``foo.'' the extension is present, as indicated by the
866trailing dot, but empty. If you need to cope with such cases, you should use
867\arg{hasExt} instead of relying on testing whether \arg{ext} is empty or not.
868
5bb9aeb2 869
f1e77933
VZ
870\membersection{wxFileName::SplitVolume}\label{wxfilenamesplitvolume}
871
872\func{static void}{SplitVolume}{\param{const wxString\& }{fullpath}, \param{wxString* }{volume}, \param{wxString* }{path}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
873
874Splits the given \arg{fullpath} into the volume part (which may be empty) and
875the pure path part, not containing any volume.
876
877\wxheading{See also}
878
879\helpref{SplitPath}{wxfilenamesplitpath}
880
881
2569938d
VZ
882\membersection{wxFileName::Touch}\label{wxfilenametouch}
883
884\func{bool}{Touch}{\void}
885
95c00185 886Sets the access and modification times to the current moment.
2569938d 887
5bb9aeb2 888
2569938d
VZ
889\membersection{wxFileName::operator=}\label{wxfilenameoperatorassign}
890
891\func{wxFileName\& operator}{operator=}{\param{const wxFileName\& }{filename}}
892
2569938d
VZ
893\func{wxFileName\& operator}{operator=}{\param{const wxString\& }{filename}}
894
6f91bc33 895Assigns the new value to this filename object.
2569938d 896
5bb9aeb2 897
2569938d
VZ
898\membersection{wxFileName::operator==}\label{wxfilenameoperatorequal}
899
2b5f62a0 900\constfunc{bool operator}{operator==}{\param{const wxFileName\& }{filename}}
2569938d 901
2b5f62a0 902\constfunc{bool operator}{operator==}{\param{const wxString\& }{filename}}
2569938d 903
0894707e 904Returns {\tt true} if the filenames are equal. The string {\it filenames} is
2b5f62a0
VZ
905interpreted as a path in the native filename format.
906
5bb9aeb2 907
2b5f62a0
VZ
908\membersection{wxFileName::operator!=}\label{wxfilenameoperatornotequal}
909
910\constfunc{bool operator}{operator!=}{\param{const wxFileName\& }{filename}}
911
912\constfunc{bool operator}{operator!=}{\param{const wxString\& }{filename}}
913
0894707e 914Returns {\tt true} if the filenames are different. The string {\it filenames}
2b5f62a0 915is interpreted as a path in the native filename format.
6f91bc33 916