]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/filename.tex
Committed Jaako's renderer patch
[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
2569938d
VZ
498\membersection{wxFileName::GetShortPath}\label{wxfilenamegetshortpath}
499
500\constfunc{wxString}{GetShortPath}{\void}
501
95c00185 502Return the short form of the path (returns identity on non-Windows platforms).
2569938d 503
5bb9aeb2 504
2569938d
VZ
505\membersection{wxFileName::GetTimes}\label{wxfilenamegettimes}
506
6dbb903b 507\constfunc{bool}{GetTimes}{\param{wxDateTime* }{dtAccess}, \param{wxDateTime* }{dtMod}, \param{wxDateTime* }{dtCreate}}
2569938d 508
95c00185 509Returns the last access, last modification and creation times. The last access
ebb39671
VZ
510time is updated whenever the file is read or written (or executed in the case
511of Windows), last modification time is only changed when the file is written
512to. Finally, the creation time is indeed the time when the file was created
513under Windows and the inode change time under Unix (as it is impossible to
514retrieve the real file creation time there anyhow) which can also be changed
515by many operations after the file creation.
2569938d 516
95c00185 517Any of the pointers may be {\tt NULL} if the corresponding time is not
ebb39671
VZ
518needed.
519
520\wxheading{Return value}
521
0894707e 522{\tt true} on success, {\tt false} if we failed to retrieve the times.
2569938d 523
5bb9aeb2 524
2569938d
VZ
525\membersection{wxFileName::GetVolume}\label{wxfilenamegetvolume}
526
527\constfunc{wxString}{GetVolume}{\void}
528
f70c0443 529Returns the string containing the volume for this file name, empty if it
ebb39671
VZ
530doesn't have one or if the file system doesn't support volumes at all (for
531example, Unix).
2569938d 532
5bb9aeb2 533
2569938d
VZ
534\membersection{wxFileName::GetVolumeSeparator}\label{wxfilenamegetvolumeseparator}
535
f363e05c 536\func{static wxString}{GetVolumeSeparator}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 537
95c00185 538Returns the string separating the volume from the path for this format.
2569938d 539
5bb9aeb2 540
2569938d
VZ
541\membersection{wxFileName::HasExt}\label{wxfilenamehasext}
542
543\constfunc{bool}{HasExt}{\void}
544
f363e05c 545Returns {\tt true} if an extension is present.
2569938d 546
5bb9aeb2 547
2569938d
VZ
548\membersection{wxFileName::HasName}\label{wxfilenamehasname}
549
550\constfunc{bool}{HasName}{\void}
551
f363e05c 552Returns {\tt true} if a name is present.
2569938d 553
5bb9aeb2 554
2569938d
VZ
555\membersection{wxFileName::HasVolume}\label{wxfilenamehasvolume}
556
557\constfunc{bool}{HasVolume}{\void}
558
f363e05c 559Returns {\tt true} if a volume specifier is present.
2569938d 560
5bb9aeb2 561
2569938d
VZ
562\membersection{wxFileName::InsertDir}\label{wxfilenameinsertdir}
563
2458d90b 564\func{void}{InsertDir}{\param{size\_t }{before}, \param{const wxString\& }{dir}}
2569938d 565
5bb9aeb2
VZ
566Inserts a directory component before the zero-based position in the directory
567list. Please see \helpref{AppendDir}{wxfilenameappenddir} for important notes.
568
2569938d
VZ
569
570\membersection{wxFileName::IsAbsolute}\label{wxfilenameisabsolute}
571
572\func{bool}{IsAbsolute}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
573
f363e05c 574Returns {\tt true} if this filename is absolute.
2569938d 575
5bb9aeb2 576
2569938d
VZ
577\membersection{wxFileName::IsCaseSensitive}\label{wxfilenameiscasesensitive}
578
f363e05c 579\func{static bool}{IsCaseSensitive}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 580
f363e05c 581Returns {\tt true} if the file names of this type are case-sensitive.
2569938d 582
5bb9aeb2 583
2569938d
VZ
584\membersection{wxFileName::IsOk}\label{wxfilenameisok}
585
586\constfunc{bool}{IsOk}{\void}
587
0894707e 588Returns {\tt true} if the filename is valid, {\tt false} if it is not
ade35f11
VZ
589initialized yet. The assignment functions and
590\helpref{Clear}{wxfilenameclear} may reset the object to the uninitialized,
591invalid state (the former only do it on failure).
2569938d 592
5bb9aeb2 593
2569938d
VZ
594\membersection{wxFileName::IsPathSeparator}\label{wxfilenameispathseparator}
595
f363e05c 596\func{static bool}{IsPathSeparator}{\param{wxChar }{ch}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 597
0894707e 598Returns {\tt true} if the char is a path separator for this format.
2569938d 599
5bb9aeb2 600
2569938d
VZ
601\membersection{wxFileName::IsRelative}\label{wxfilenameisrelative}
602
603\func{bool}{IsRelative}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
604
0894707e 605Returns {\tt true} if this filename is not absolute.
2569938d 606
5bb9aeb2 607
2db991f4 608\membersection{wxFileName::IsDir}\label{wxfilenameisdir}
2569938d 609
2db991f4 610\constfunc{bool}{IsDir}{\void}
2569938d 611
0894707e 612Returns {\tt true} if this object represents a directory, {\tt false} otherwise
2db991f4
VZ
613(i.e. if it is a file). Note that this method doesn't test whether the
614directory or file really exists, you should use
615\helpref{DirExists}{wxfilenamedirexists} or
616\helpref{FileExists}{wxfilenamefileexists} for this.
2569938d 617
5ab2950d
JS
618\membersection{wxFileName::MacFindDefaultTypeAndCreator}\label{wxfilenamemacfinddefaulttypeandcreator}
619
620\func{static bool}{MacFindDefaultTypeAndCreator}{\param{const wxString\& }{ext}, \param{wxUint32* }{type}, \param{wxUint32* }{creator}}
621
622On Mac OS, gets the common type and creator for the given extension.
623
624\membersection{wxFileName::MacRegisterDefaultTypeAndCreator}\label{wxfilenamemacregisterdefaulttypeandcreator}
625
626\func{static void}{MacRegisterDefaultTypeAndCreator}{\param{const wxString\& }{ext}, \param{wxUint32 }{type}, \param{wxUint32 }{creator}}
627
628On Mac OS, registers application defined extensions and their default type and creator.
629
630\membersection{wxFileName::MacSetDefaultTypeAndCreator}\label{wxfilenamemacsetdefaulttypeandcreator}
631
632\func{bool}{MacSetDefaultTypeAndCreator}{\void}
633
634On Mac OS, looks up the appropriate type and creator from the registration and then sets it.
5bb9aeb2 635
0894707e
VS
636\membersection{wxFileName::MakeAbsolute}\label{wxfilenamemakeabsolute}
637
638\func{bool}{MakeAbsolute}{\param{const wxString\& }{cwd = wxEmptyString}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
639
640Make the file name absolute. This is a shortcut for
641{\tt \helpref{Normalize}{wxfilenamenormalize}(wxPATH\_NORM\_DOTS | wxPATH\_NORM\_ABSOLUTE | wxPATH\_NORM\_TILDE, cwd, format)}.
642
643\wxheading{See also}
644
645\helpref{MakeRelativeTo}{wxfilenamemakerelativeto},
646\helpref{Normalize}{wxfilenamenormalize},
647\helpref{IsAbsolute}{wxfilenameisabsolute}
648
5bb9aeb2 649
f7d886af
VZ
650\membersection{wxFileName::MakeRelativeTo}\label{wxfilenamemakerelativeto}
651
f363e05c 652\func{bool}{MakeRelativeTo}{\param{const wxString\& }{pathBase = wxEmptyString}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
f7d886af
VZ
653
654This function tries to put this file name in a form relative to {\it pathBase}.
655In other words, it returns the file name which should be used to access this
656file if the current directory were {\it pathBase}.
657
658\docparam{pathBase}{the directory to use as root, current directory is used by
659default}
660
661\docparam{format}{the file name format, native by default}
662
663\wxheading{Return value}
664
0894707e 665{\tt true} if the file name has been changed, {\tt false} if we failed to do
f7d886af
VZ
666anything with it (currently this only happens if the file name is on a volume
667different from the volume specified by {\it pathBase}).
668
669\wxheading{See also}
670
671\helpref{Normalize}{wxfilenamenormalize}
2569938d 672
5bb9aeb2 673
2569938d
VZ
674\membersection{wxFileName::Mkdir}\label{wxfilenamemkdir}
675
1527281e 676\func{bool}{Mkdir}{\param{int }{perm = 0777}, \param{int }{flags = $0$}}
2569938d 677
1527281e 678\func{static bool}{Mkdir}{\param{const wxString\& }{dir}, \param{int }{perm = 0777}, \param{int }{flags = $0$}}
2569938d 679
6f91bc33 680\docparam{dir}{the directory to create}
2569938d 681
6f91bc33
VZ
682\docparam{parm}{the permissions for the newly created directory}
683
1527281e
VZ
684\docparam{flags}{if the flags contain {\tt wxPATH\_MKDIR\_FULL} flag,
685try to create each directory in the path and also don't return an error
686if the target directory already exists.}
2569938d 687
6f91bc33 688\wxheading{Return value}
2569938d 689
0894707e 690Returns {\tt true} if the directory was successfully created, {\tt false}
6f91bc33 691otherwise.
2569938d 692
5bb9aeb2 693
2569938d
VZ
694\membersection{wxFileName::Normalize}\label{wxfilenamenormalize}
695
32a0d013 696\func{bool}{Normalize}{\param{int }{flags = wxPATH\_NORM\_ALL}, \param{const wxString\& }{cwd = wxEmptyString}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 697
0894707e 698Normalize the path. With the default flags value, the path will be
2569938d 699made absolute, without any ".." and "." and all environment
0894707e
VS
700variables will be expanded in it.
701
702\docparam{flags}{The kind of normalization to do with the file name. It can be
703any or-combination of the following constants:
d2c2afc9 704
0894707e
VS
705\begin{twocollist}
706\twocolitem{{\bf wxPATH\_NORM\_ENV\_VARS}}{replace env vars with their values}
707\twocolitem{{\bf wxPATH\_NORM\_DOTS}}{squeeze all .. and . and prepend cwd}
708\twocolitem{{\bf wxPATH\_NORM\_TILDE}}{Unix only: replace ~ and ~user}
08890e27 709\twocolitem{{\bf wxPATH\_NORM\_CASE}}{if filesystem is case insensitive, transform to lower case}
0894707e
VS
710\twocolitem{{\bf wxPATH\_NORM\_ABSOLUTE}}{make the path absolute}
711\twocolitem{{\bf wxPATH\_NORM\_LONG}}{make the path the long form}
21f60945 712\twocolitem{{\bf wxPATH\_NORM\_SHORTCUT}}{resolve if it is a shortcut (Windows only)}
ef92f440 713\twocolitem{{\bf wxPATH\_NORM\_ALL}}{all of previous flags except \texttt{wxPATH\_NORM\_CASE}}
0894707e 714\end{twocollist}
d2c2afc9 715}%
0894707e
VS
716
717\docparam{cwd}{If not empty, this directory will be used instead of current
718working directory in normalization.}
719
720\docparam{format}{The file name format, native by default.}
2569938d 721
5bb9aeb2 722
2569938d
VZ
723\membersection{wxFileName::PrependDir}\label{wxfilenameprependdir}
724
725\func{void}{PrependDir}{\param{const wxString\& }{dir}}
726
5bb9aeb2
VZ
727Prepends a directory to the file path. Please see
728\helpref{AppendDir}{wxfilenameappenddir} for important notes.
729
730
2569938d
VZ
731
732\membersection{wxFileName::RemoveDir}\label{wxfilenameremovedir}
733
2458d90b 734\func{void}{RemoveDir}{\param{size\_t }{pos}}
2569938d 735
2458d90b
VZ
736Removes the specified directory component from the path.
737
738\wxheading{See also}
739
740\helpref{GetDirCount}{wxfilenamegetdircount}
741
742
743\membersection{wxFileName::RemoveLastDir}\label{wxfilenameremovelastdir}
744
745\func{void}{RemoveLastDir}{\void}
746
747Removes last directory component from the path.
2569938d 748
5bb9aeb2 749
2569938d
VZ
750\membersection{wxFileName::Rmdir}\label{wxfilenamermdir}
751
752\func{bool}{Rmdir}{\void}
753
6f91bc33 754\func{static bool}{Rmdir}{\param{const wxString\& }{dir}}
2569938d 755
95c00185 756Deletes the specified directory from the file system.
2569938d 757
5bb9aeb2 758
2569938d
VZ
759\membersection{wxFileName::SameAs}\label{wxfilenamesameas}
760
2b5f62a0 761\constfunc{bool}{SameAs}{\param{const wxFileName\& }{filepath}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 762
95c00185 763Compares the filename using the rules of this platform.
2569938d 764
5bb9aeb2 765
2569938d
VZ
766\membersection{wxFileName::SetCwd}\label{wxfilenamesetcwd}
767
768\func{bool}{SetCwd}{\void}
769
6f91bc33 770\func{static bool}{SetCwd}{\param{const wxString\& }{cwd}}
2569938d 771
95c00185 772Changes the current working directory.
2569938d 773
5bb9aeb2 774
2569938d
VZ
775\membersection{wxFileName::SetExt}\label{wxfilenamesetext}
776
777\func{void}{SetExt}{\param{const wxString\& }{ext}}
778
0b40f3d8
RR
779Sets the extension of the file name. Setting an empty string
780as the extension will remove the extension resulting in a file
781name without a trailing dot, unlike a call to
782\helpref{SetEmptyExt}{wxfilenamesetemptyext}.
783
784\wxheading{See also}
785
786\helpref{SetEmptyExt}{wxfilenamesetemptyext}
787\helpref{ClearExt}{wxfilenameclearext}
788
789\membersection{wxFileName::SetEmptyExt}\label{wxfilenamesetemptyext}
790
791\func{void}{SetEmptyExt}{\void}
792
793Sets the extension of the file name to be an empty extension.
794This is different from having no extension at all as the file
795name will have a trailing dot after a call to this method.
796
797\wxheading{See also}
2569938d 798
0b40f3d8
RR
799\helpref{SetExt}{wxfilenamesetext}
800\helpref{ClearExt}{wxfilenameclearext}
5bb9aeb2 801
2569938d
VZ
802\membersection{wxFileName::SetFullName}\label{wxfilenamesetfullname}
803
804\func{void}{SetFullName}{\param{const wxString\& }{fullname}}
805
95c00185 806The full name is the file name and extension (but without the path).
2569938d 807
5bb9aeb2 808
2569938d
VZ
809\membersection{wxFileName::SetName}\label{wxfilenamesetname}
810
811\func{void}{SetName}{\param{const wxString\& }{name}}
812
4e43c815
VZ
813Sets the name part (without extension).
814
815\wxheading{See also}
816
817\helpref{SetFullName}{wxfilenamesetfullname}
2569938d 818
5bb9aeb2 819
2569938d
VZ
820\membersection{wxFileName::SetTimes}\label{wxfilenamesettimes}
821
6dbb903b 822\func{bool}{SetTimes}{\param{const wxDateTime* }{dtAccess}, \param{const wxDateTime* }{dtMod}, \param{const wxDateTime* }{dtCreate}}
2569938d 823
95c00185 824Sets the file creation and last access/modification times (any of the pointers may be NULL).
2569938d 825
5bb9aeb2 826
2569938d
VZ
827\membersection{wxFileName::SetVolume}\label{wxfilenamesetvolume}
828
829\func{void}{SetVolume}{\param{const wxString\& }{volume}}
830
95c00185 831Sets the volume specifier.
2569938d 832
5bb9aeb2 833
2569938d
VZ
834\membersection{wxFileName::SplitPath}\label{wxfilenamesplitpath}
835
dfecbee5
VZ
836\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}}
837
2bd25c5a 838\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 839
2bd25c5a 840\func{static void}{SplitPath}{\param{const wxString\& }{fullpath}, \param{wxString* }{path}, \param{wxString* }{name}, \param{wxString* }{ext}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
2569938d 841
2bd25c5a
VZ
842This function splits a full file name into components: the volume (with the
843first version) path (including the volume in the second version), the base name
844and the extension. Any of the output parameters ({\it volume}, {\it path},
845{\it name} or {\it ext}) may be {\tt NULL} if you are not interested in the
846value of a particular component. Also, {\it fullpath} may be empty on entry.
847
848On return, {\it path} contains the file path (without the trailing separator),
849{\it name} contains the file name and {\it ext} contains the file extension
850without leading dot. All three of them may be empty if the corresponding
851component is. The old contents of the strings pointed to by these parameters
852will be overwritten in any case (if the pointers are not {\tt NULL}).
2569938d 853
dfecbee5
VZ
854Note that for a filename ``foo.'' the extension is present, as indicated by the
855trailing dot, but empty. If you need to cope with such cases, you should use
856\arg{hasExt} instead of relying on testing whether \arg{ext} is empty or not.
857
5bb9aeb2 858
f1e77933
VZ
859\membersection{wxFileName::SplitVolume}\label{wxfilenamesplitvolume}
860
861\func{static void}{SplitVolume}{\param{const wxString\& }{fullpath}, \param{wxString* }{volume}, \param{wxString* }{path}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
862
863Splits the given \arg{fullpath} into the volume part (which may be empty) and
864the pure path part, not containing any volume.
865
866\wxheading{See also}
867
868\helpref{SplitPath}{wxfilenamesplitpath}
869
870
2569938d
VZ
871\membersection{wxFileName::Touch}\label{wxfilenametouch}
872
873\func{bool}{Touch}{\void}
874
95c00185 875Sets the access and modification times to the current moment.
2569938d 876
5bb9aeb2 877
2569938d
VZ
878\membersection{wxFileName::operator=}\label{wxfilenameoperatorassign}
879
880\func{wxFileName\& operator}{operator=}{\param{const wxFileName\& }{filename}}
881
2569938d
VZ
882\func{wxFileName\& operator}{operator=}{\param{const wxString\& }{filename}}
883
6f91bc33 884Assigns the new value to this filename object.
2569938d 885
5bb9aeb2 886
2569938d
VZ
887\membersection{wxFileName::operator==}\label{wxfilenameoperatorequal}
888
2b5f62a0 889\constfunc{bool operator}{operator==}{\param{const wxFileName\& }{filename}}
2569938d 890
2b5f62a0 891\constfunc{bool operator}{operator==}{\param{const wxString\& }{filename}}
2569938d 892
0894707e 893Returns {\tt true} if the filenames are equal. The string {\it filenames} is
2b5f62a0
VZ
894interpreted as a path in the native filename format.
895
5bb9aeb2 896
2b5f62a0
VZ
897\membersection{wxFileName::operator!=}\label{wxfilenameoperatornotequal}
898
899\constfunc{bool operator}{operator!=}{\param{const wxFileName\& }{filename}}
900
901\constfunc{bool operator}{operator!=}{\param{const wxString\& }{filename}}
902
0894707e 903Returns {\tt true} if the filenames are different. The string {\it filenames}
2b5f62a0 904is interpreted as a path in the native filename format.
6f91bc33 905