]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/filename.tex
changed the catalogs lookup back to the old behaviour of searching LC_MESSAGES subdir...
[wxWidgets.git] / docs / latex / wx / filename.tex
... / ...
CommitLineData
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
9%% License: wxWindows license
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
17functions (and \helpref{wxWidgets functions}{filefunctions} wrapping them).
18Second, it includes the functions for working with the files itself. Note that
19to change the file data you should use \helpref{wxFile}{wxfile} class instead.
20wxFileName provides functions for working with the file attributes.
21
22\wxheading{Derived from}
23
24No base class
25
26\wxheading{Include files}
27
28<wx/filename.h>
29
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,
45 wxPATH_BEOS = wxPATH_UNIX,
46 wxPATH_MAC,
47 wxPATH_DOS,
48 wxPATH_WIN = wxPATH_DOS,
49 wxPATH_OS2 = wxPATH_DOS,
50 wxPATH_VMS,
51
52 wxPATH_MAX // Not a valid value for specifying path format
53}
54\end{verbatim}
55
56\latexignore{\rtfignore{\wxheading{Function groups}}}
57
58
59\membersection{File name format}\label{filenameformat}
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
63to treat them all in the same generic way. It supposes that all file names
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
71state and \helpref{IsOk}{wxfilenameisok} returns {\tt false} for it.
72
73File names can be case-sensitive or not, the function\rtfsp
74\helpref{IsCaseSensitive}{wxfilenameiscasesensitive} allows to determine this.
75
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.
88
89Other functions returning information about the file format provided by this
90class are \helpref{GetVolumeSeparator}{wxfilenamegetvolumeseparator},\rtfsp
91\helpref{IsPathSeparator}{wxfilenameispathseparator}.
92
93
94\membersection{File name construction}\label{filenameconstruction}
95
96TODO.
97
98
99\membersection{File tests}\label{filetests}
100
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.
106
107File names should be compared using \helpref{SameAs}{wxfilenamesameas} method
108or \helpref{$==$}{wxfilenameoperatorequal}.
109
110
111\membersection{File name components}\label{filenamecomponents}
112
113These functions allow to examine and modify the individual directories of the
114path:
115
116\helpref{AppendDir}{wxfilenameappenddir}\\
117\helpref{InsertDir}{wxfilenameinsertdir}\\
118\helpref{GetDirCount}{wxfilenamegetdircount}
119\helpref{PrependDir}{wxfilenameprependdir}\\
120\helpref{RemoveDir}{wxfilenameremovedir}\\
121\helpref{RemoveLastDir}{wxfilenameremovelastdir}
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}\\
133\helpref{ClearExt}{wxfilenameclearext}\\
134\helpref{SetEmptyExt}{wxfilenamesetemptyext}\\
135\helpref{SetName}{wxfilenamesetname}\\
136\helpref{SetVolume}{wxfilenamesetvolume}\\
137
138
139\membersection{Operations}\label{filenameoperations}
140
141These methods allow to work with the file creation, access and modification
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.
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
157\latexignore{\rtfignore{\wxheading{Members}}}
158
159
160\membersection{wxFileName::wxFileName}\label{wxfilenamewxfilename}
161
162\func{}{wxFileName}{\void}
163
164Default constructor.
165
166\func{}{wxFileName}{\param{const wxFileName\& }{filename}}
167
168Copy constructor.
169
170\func{}{wxFileName}{\param{const wxString\& }{fullpath}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
171
172Constructor taking a full filename. If it terminates with a '/', a directory path
173is constructed (the name will be empty), otherwise a file name and
174extension are extracted from it.
175
176\func{}{wxFileName}{\param{const wxString\& }{path}, \param{const wxString\& }{name}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
177
178Constructor from a directory name and a file name.
179
180\func{}{wxFileName}{\param{const wxString\& }{path}, \param{const wxString\& }{name}, \param{const wxString\& }{ext}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
181
182Constructor from a directory name, base file name and extension.
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
186Constructor from a volume name, a directory name, base file name and extension.
187
188
189\membersection{wxFileName::AppendDir}\label{wxfilenameappenddir}
190
191\func{void}{AppendDir}{\param{const wxString\& }{dir}}
192
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
198
199\membersection{wxFileName::Assign}\label{wxfilenameassign}
200
201\func{void}{Assign}{\param{const wxFileName\& }{filepath}}
202
203\func{void}{Assign}{\param{const wxString\& }{fullpath}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
204
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
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
209\func{void}{Assign}{\param{const wxString\& }{path}, \param{const wxString\& }{name}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
210
211\func{void}{Assign}{\param{const wxString\& }{path}, \param{const wxString\& }{name}, \param{const wxString\& }{ext}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
212
213Creates the file name from various combinations of data.
214
215
216\membersection{wxFileName::AssignCwd}\label{wxfilenameassigncwd}
217
218\func{static void}{AssignCwd}{\param{const wxString\& }{volume = wxEmptyString}}
219
220Makes this object refer to the current working directory on the specified
221volume (or current volume if {\it volume} is empty).
222
223\wxheading{See also}
224
225\helpref{GetCwd}{wxfilenamegetcwd}
226
227
228\membersection{wxFileName::AssignDir}\label{wxfilenameassigndir}
229
230\func{void}{AssignDir}{\param{const wxString\& }{dir}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
231
232Sets this file name object to the given directory name. The name and extension
233will be empty.
234
235
236\membersection{wxFileName::AssignHomeDir}\label{wxfilenameassignhomedir}
237
238\func{void}{AssignHomeDir}{\void}
239
240Sets this file name object to the home directory.
241
242
243\membersection{wxFileName::AssignTempFileName}\label{wxfilenameassigntempfilename}
244
245\func{void}{AssignTempFileName}{\param{const wxString\& }{prefix}, \param{wxFile *}{fileTemp = {\tt NULL}}}
246
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.
251
252
253\membersection{wxFileName::Clear}\label{wxfilenameclear}
254
255\func{void}{Clear}{\void}
256
257Reset all components to default, uninitialized state.
258
259
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
272\membersection{wxFileName::CreateTempFileName}\label{wxfilenamecreatetempfilename}
273
274\func{static wxString}{CreateTempFileName}{\param{const wxString\& }{prefix}, \param{wxFile *}{fileTemp = {\tt NULL}}}
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.
280
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}
296
297\wxheading{Return value}
298
299The full temporary file name or an empty string on error.
300
301
302\membersection{wxFileName::DirExists}\label{wxfilenamedirexists}
303
304\constfunc{bool}{DirExists}{\void}
305
306\func{static bool}{DirExists}{\param{const wxString\& }{dir}}
307
308Returns {\tt true} if the directory with this name exists.
309
310
311\membersection{wxFileName::DirName}\label{wxfilenamedirname}
312
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.
317
318
319
320\membersection{wxFileName::FileExists}\label{wxfilenamefileexists}
321
322\constfunc{bool}{FileExists}{\void}
323
324\func{static bool}{FileExists}{\param{const wxString\& }{file}}
325
326Returns {\tt true} if the file with this name exists.
327
328\wxheading{See also}
329
330\helpref{DirExists}{wxfilenamedirexists}
331
332
333
334\membersection{wxFileName::FileName}\label{wxfilenamefilename}
335
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}.
340
341
342
343\membersection{wxFileName::GetCwd}\label{wxfilenamegetcwd}
344
345\func{static wxString}{GetCwd}{\param{const wxString\& }{volume = ""}}
346
347Retrieves the value of the current working directory on the specified volume. If
348the volume is empty, the program's current working directory is returned for the
349current volume.
350
351\wxheading{Return value}
352
353The string containing the current working directory or an empty string on
354error.
355
356\wxheading{See also}
357
358\helpref{AssignCwd}{wxfilenameassigncwd}
359
360
361\membersection{wxFileName::GetDirCount}\label{wxfilenamegetdircount}
362
363\constfunc{size\_t}{GetDirCount}{\void}
364
365Returns the number of directories in the file name.
366
367
368\membersection{wxFileName::GetDirs}\label{wxfilenamegetdirs}
369
370\constfunc{const wxArrayString\&}{GetDirs}{\void}
371
372Returns the directories in string array form.
373
374
375\membersection{wxFileName::GetExt}\label{wxfilenamegetext}
376
377\constfunc{wxString}{GetExt}{\void}
378
379Returns the file name extension.
380
381
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
388
389\membersection{wxFileName::GetFormat}\label{wxfilenamegetformat}
390
391\func{static wxPathFormat}{GetFormat}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
392
393Returns the canonical path format for this platform.
394
395
396\membersection{wxFileName::GetFullName}\label{wxfilenamegetfullname}
397
398\constfunc{wxString}{GetFullName}{\void}
399
400Returns the full name (including extension but excluding directories).
401
402
403\membersection{wxFileName::GetFullPath}\label{wxfilenamegetfullpath}
404
405\constfunc{wxString}{GetFullPath}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
406
407Returns the full path with name and extension.
408
409
410\membersection{wxFileName::GetHomeDir}\label{wxfilenamegethomedir}
411
412\func{static wxString}{GetHomeDir}{\void}
413
414Returns the home directory.
415
416
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
423
424\membersection{wxFileName::GetModificationTime}\label{wxfilenamegetmodificationtime}
425
426\constfunc{wxDateTime}{GetModificationTime}{\void}
427
428Returns the last time the file was last modified.
429
430
431\membersection{wxFileName::GetName}\label{wxfilenamegetname}
432
433\constfunc{wxString}{GetName}{\void}
434
435Returns the name part of the filename (without extension).
436
437\wxheading{See also}
438
439\helpref{GetFullName}{wxfilenamegetfullname}
440
441
442
443\membersection{wxFileName::GetPath}\label{wxfilenamegetpath}
444
445\constfunc{wxString}{GetPath}{\param{int }{flags = {\tt wxPATH\_GET\_VOLUME}}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
446
447Returns the path part of the filename (without the name or extension). The
448possible flags values are:
449
450\twocolwidtha{5cm}
451\begin{twocollist}\itemsep=0pt
452\twocolitem{{\bf wxPATH\_GET\_VOLUME}}{Return the path with the volume (does
453nothing for the filename formats without volumes), otherwise the path without
454volume part is returned.}
455\twocolitem{{\bf wxPATH\_GET\_SEPARATOR}}{Return the path with the trailing
456separator, if this flag is not given there will be no separator at the end of
457the path.}
458\end{twocollist}
459
460
461\membersection{wxFileName::GetPathSeparator}\label{wxfilenamegetpathseparator}
462
463\func{static wxChar}{GetPathSeparator}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
464
465Returns the usually used path separator for this format. For all formats but
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}
473
474
475\membersection{wxFileName::GetPathSeparators}\label{wxfilenamegetpathseparators}
476
477\func{static wxString}{GetPathSeparators}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
478
479Returns the string containing all the path separators for this format. For all
480formats but {\tt wxPATH\_DOS} this string contains only one character but for
481DOS and Windows both {\tt '/'} and {\tt '\textbackslash'} may be used as
482separators.
483
484\wxheading{See also}
485
486\helpref{GetPathSeparator}{wxfilenamegetpathseparator}
487
488
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
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
509\membersection{wxFileName::GetShortPath}\label{wxfilenamegetshortpath}
510
511\constfunc{wxString}{GetShortPath}{\void}
512
513Return the short form of the path (returns identity on non-Windows platforms).
514
515
516\membersection{wxFileName::GetSize}\label{wxfilenamegetsize}
517
518\constfunc{wxULongLong}{GetSize}{\void}
519
520\func{static wxULongLong}{GetSize}{\param{const wxString\& }{filename}}
521
522Returns the size of this file (first form) or the size of the given file (second form).
523If the file does not exist or its size could not be read (because e.g. the file is locked
524by another process) the returned value is {\tt wxInvalidSize}.
525
526
527\membersection{wxFileName::GetHumanReadableSize}\label{wxfilenamegethumanreadablesize}
528
529\constfunc{wxString}{GetHumanReadableSize}{\param{const wxString\& }{failmsg = "Not available"}, \param{int }{precision = 1}}
530
531\func{static wxString}{GetHumanReadableSize}{\param{const wxULongLong\& }{bytes}, \param{const wxString\& }{nullsize = "Not available"}, \param{int }{precision = 1}}
532
533Returns the size of this file (first form) or the given number of bytes (second form)
534in a human-readable form.
535
536If the size could not be retrieved the {\tt failmsg} string is returned (first form).
537If {\tt bytes} is {\tt wxInvalidSize} or zero, then {\tt nullsize} is returned (second form).
538
539In case of success, the returned string is a floating-point number with {\tt precision} decimal digits
540followed by the size unit (B, kB, MB, GB, TB: respectively bytes, kilobytes, megabytes, gigabytes, terabytes).
541
542
543\membersection{wxFileName::GetTimes}\label{wxfilenamegettimes}
544
545\constfunc{bool}{GetTimes}{\param{wxDateTime* }{dtAccess}, \param{wxDateTime* }{dtMod}, \param{wxDateTime* }{dtCreate}}
546
547Returns the last access, last modification and creation times. The last access
548time is updated whenever the file is read or written (or executed in the case
549of Windows), last modification time is only changed when the file is written
550to. Finally, the creation time is indeed the time when the file was created
551under Windows and the inode change time under Unix (as it is impossible to
552retrieve the real file creation time there anyhow) which can also be changed
553by many operations after the file creation.
554
555Any of the pointers may be {\tt NULL} if the corresponding time is not
556needed.
557
558\wxheading{Return value}
559
560{\tt true} on success, {\tt false} if we failed to retrieve the times.
561
562
563\membersection{wxFileName::GetVolume}\label{wxfilenamegetvolume}
564
565\constfunc{wxString}{GetVolume}{\void}
566
567Returns the string containing the volume for this file name, empty if it
568doesn't have one or if the file system doesn't support volumes at all (for
569example, Unix).
570
571
572\membersection{wxFileName::GetVolumeSeparator}\label{wxfilenamegetvolumeseparator}
573
574\func{static wxString}{GetVolumeSeparator}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
575
576Returns the string separating the volume from the path for this format.
577
578
579\membersection{wxFileName::HasExt}\label{wxfilenamehasext}
580
581\constfunc{bool}{HasExt}{\void}
582
583Returns {\tt true} if an extension is present.
584
585
586\membersection{wxFileName::HasName}\label{wxfilenamehasname}
587
588\constfunc{bool}{HasName}{\void}
589
590Returns {\tt true} if a name is present.
591
592
593\membersection{wxFileName::HasVolume}\label{wxfilenamehasvolume}
594
595\constfunc{bool}{HasVolume}{\void}
596
597Returns {\tt true} if a volume specifier is present.
598
599
600\membersection{wxFileName::InsertDir}\label{wxfilenameinsertdir}
601
602\func{void}{InsertDir}{\param{size\_t }{before}, \param{const wxString\& }{dir}}
603
604Inserts a directory component before the zero-based position in the directory
605list. Please see \helpref{AppendDir}{wxfilenameappenddir} for important notes.
606
607
608\membersection{wxFileName::IsAbsolute}\label{wxfilenameisabsolute}
609
610\func{bool}{IsAbsolute}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
611
612Returns {\tt true} if this filename is absolute.
613
614
615\membersection{wxFileName::IsCaseSensitive}\label{wxfilenameiscasesensitive}
616
617\func{static bool}{IsCaseSensitive}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
618
619Returns {\tt true} if the file names of this type are case-sensitive.
620
621
622\membersection{wxFileName::IsOk}\label{wxfilenameisok}
623
624\constfunc{bool}{IsOk}{\void}
625
626Returns {\tt true} if the filename is valid, {\tt false} if it is not
627initialized yet. The assignment functions and
628\helpref{Clear}{wxfilenameclear} may reset the object to the uninitialized,
629invalid state (the former only do it on failure).
630
631
632\membersection{wxFileName::IsPathSeparator}\label{wxfilenameispathseparator}
633
634\func{static bool}{IsPathSeparator}{\param{wxChar }{ch}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
635
636Returns {\tt true} if the char is a path separator for this format.
637
638
639\membersection{wxFileName::IsRelative}\label{wxfilenameisrelative}
640
641\func{bool}{IsRelative}{\param{wxPathFormat }{format = wxPATH\_NATIVE}}
642
643Returns {\tt true} if this filename is not absolute.
644
645
646\membersection{wxFileName::IsDir}\label{wxfilenameisdir}
647
648\constfunc{bool}{IsDir}{\void}
649
650Returns {\tt true} if this object represents a directory, {\tt false} otherwise
651(i.e. if it is a file). Note that this method doesn't test whether the
652directory or file really exists, you should use
653\helpref{DirExists}{wxfilenamedirexists} or
654\helpref{FileExists}{wxfilenamefileexists} for this.
655
656\membersection{wxFileName::MacFindDefaultTypeAndCreator}\label{wxfilenamemacfinddefaulttypeandcreator}
657
658\func{static bool}{MacFindDefaultTypeAndCreator}{\param{const wxString\& }{ext}, \param{wxUint32* }{type}, \param{wxUint32* }{creator}}
659
660On Mac OS, gets the common type and creator for the given extension.
661
662\membersection{wxFileName::MacRegisterDefaultTypeAndCreator}\label{wxfilenamemacregisterdefaulttypeandcreator}
663
664\func{static void}{MacRegisterDefaultTypeAndCreator}{\param{const wxString\& }{ext}, \param{wxUint32 }{type}, \param{wxUint32 }{creator}}
665
666On Mac OS, registers application defined extensions and their default type and creator.
667
668\membersection{wxFileName::MacSetDefaultTypeAndCreator}\label{wxfilenamemacsetdefaulttypeandcreator}
669
670\func{bool}{MacSetDefaultTypeAndCreator}{\void}
671
672On Mac OS, looks up the appropriate type and creator from the registration and then sets it.
673
674\membersection{wxFileName::MakeAbsolute}\label{wxfilenamemakeabsolute}
675
676\func{bool}{MakeAbsolute}{\param{const wxString\& }{cwd = wxEmptyString}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
677
678Make the file name absolute. This is a shortcut for
679{\tt \helpref{Normalize}{wxfilenamenormalize}(wxPATH\_NORM\_DOTS | wxPATH\_NORM\_ABSOLUTE | wxPATH\_NORM\_TILDE, cwd, format)}.
680
681\wxheading{See also}
682
683\helpref{MakeRelativeTo}{wxfilenamemakerelativeto},
684\helpref{Normalize}{wxfilenamenormalize},
685\helpref{IsAbsolute}{wxfilenameisabsolute}
686
687
688\membersection{wxFileName::MakeRelativeTo}\label{wxfilenamemakerelativeto}
689
690\func{bool}{MakeRelativeTo}{\param{const wxString\& }{pathBase = wxEmptyString}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
691
692This function tries to put this file name in a form relative to {\it pathBase}.
693In other words, it returns the file name which should be used to access this
694file if the current directory were {\it pathBase}.
695
696\docparam{pathBase}{the directory to use as root, current directory is used by
697default}
698
699\docparam{format}{the file name format, native by default}
700
701\wxheading{Return value}
702
703{\tt true} if the file name has been changed, {\tt false} if we failed to do
704anything with it (currently this only happens if the file name is on a volume
705different from the volume specified by {\it pathBase}).
706
707\wxheading{See also}
708
709\helpref{Normalize}{wxfilenamenormalize}
710
711
712\membersection{wxFileName::Mkdir}\label{wxfilenamemkdir}
713
714\func{bool}{Mkdir}{\param{int }{perm = 0777}, \param{int }{flags = $0$}}
715
716\func{static bool}{Mkdir}{\param{const wxString\& }{dir}, \param{int }{perm = 0777}, \param{int }{flags = $0$}}
717
718\docparam{dir}{the directory to create}
719
720\docparam{parm}{the permissions for the newly created directory}
721
722\docparam{flags}{if the flags contain {\tt wxPATH\_MKDIR\_FULL} flag,
723try to create each directory in the path and also don't return an error
724if the target directory already exists.}
725
726\wxheading{Return value}
727
728Returns {\tt true} if the directory was successfully created, {\tt false}
729otherwise.
730
731
732\membersection{wxFileName::Normalize}\label{wxfilenamenormalize}
733
734\func{bool}{Normalize}{\param{int }{flags = wxPATH\_NORM\_ALL}, \param{const wxString\& }{cwd = wxEmptyString}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
735
736Normalize the path. With the default flags value, the path will be
737made absolute, without any ".." and "." and all environment
738variables will be expanded in it.
739
740\docparam{flags}{The kind of normalization to do with the file name. It can be
741any or-combination of the following constants:
742
743\begin{twocollist}
744\twocolitem{{\bf wxPATH\_NORM\_ENV\_VARS}}{replace env vars with their values}
745\twocolitem{{\bf wxPATH\_NORM\_DOTS}}{squeeze all .. and . and prepend cwd}
746\twocolitem{{\bf wxPATH\_NORM\_TILDE}}{Unix only: replace ~ and ~user}
747\twocolitem{{\bf wxPATH\_NORM\_CASE}}{if filesystem is case insensitive, transform to lower case}
748\twocolitem{{\bf wxPATH\_NORM\_ABSOLUTE}}{make the path absolute}
749\twocolitem{{\bf wxPATH\_NORM\_LONG}}{make the path the long form}
750\twocolitem{{\bf wxPATH\_NORM\_SHORTCUT}}{resolve if it is a shortcut (Windows only)}
751\twocolitem{{\bf wxPATH\_NORM\_ALL}}{all of previous flags except \texttt{wxPATH\_NORM\_CASE}}
752\end{twocollist}
753}%
754
755\docparam{cwd}{If not empty, this directory will be used instead of current
756working directory in normalization.}
757
758\docparam{format}{The file name format, native by default.}
759
760
761\membersection{wxFileName::PrependDir}\label{wxfilenameprependdir}
762
763\func{void}{PrependDir}{\param{const wxString\& }{dir}}
764
765Prepends a directory to the file path. Please see
766\helpref{AppendDir}{wxfilenameappenddir} for important notes.
767
768
769
770\membersection{wxFileName::RemoveDir}\label{wxfilenameremovedir}
771
772\func{void}{RemoveDir}{\param{size\_t }{pos}}
773
774Removes the specified directory component from the path.
775
776\wxheading{See also}
777
778\helpref{GetDirCount}{wxfilenamegetdircount}
779
780
781\membersection{wxFileName::RemoveLastDir}\label{wxfilenameremovelastdir}
782
783\func{void}{RemoveLastDir}{\void}
784
785Removes last directory component from the path.
786
787
788\membersection{wxFileName::Rmdir}\label{wxfilenamermdir}
789
790\func{bool}{Rmdir}{\void}
791
792\func{static bool}{Rmdir}{\param{const wxString\& }{dir}}
793
794Deletes the specified directory from the file system.
795
796
797\membersection{wxFileName::SameAs}\label{wxfilenamesameas}
798
799\constfunc{bool}{SameAs}{\param{const wxFileName\& }{filepath}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
800
801Compares the filename using the rules of this platform.
802
803
804\membersection{wxFileName::SetCwd}\label{wxfilenamesetcwd}
805
806\func{bool}{SetCwd}{\void}
807
808\func{static bool}{SetCwd}{\param{const wxString\& }{cwd}}
809
810Changes the current working directory.
811
812
813\membersection{wxFileName::SetExt}\label{wxfilenamesetext}
814
815\func{void}{SetExt}{\param{const wxString\& }{ext}}
816
817Sets the extension of the file name. Setting an empty string
818as the extension will remove the extension resulting in a file
819name without a trailing dot, unlike a call to
820\helpref{SetEmptyExt}{wxfilenamesetemptyext}.
821
822\wxheading{See also}
823
824\helpref{SetEmptyExt}{wxfilenamesetemptyext}
825\helpref{ClearExt}{wxfilenameclearext}
826
827\membersection{wxFileName::SetEmptyExt}\label{wxfilenamesetemptyext}
828
829\func{void}{SetEmptyExt}{\void}
830
831Sets the extension of the file name to be an empty extension.
832This is different from having no extension at all as the file
833name will have a trailing dot after a call to this method.
834
835\wxheading{See also}
836
837\helpref{SetExt}{wxfilenamesetext}
838\helpref{ClearExt}{wxfilenameclearext}
839
840\membersection{wxFileName::SetFullName}\label{wxfilenamesetfullname}
841
842\func{void}{SetFullName}{\param{const wxString\& }{fullname}}
843
844The full name is the file name and extension (but without the path).
845
846
847\membersection{wxFileName::SetName}\label{wxfilenamesetname}
848
849\func{void}{SetName}{\param{const wxString\& }{name}}
850
851Sets the name part (without extension).
852
853\wxheading{See also}
854
855\helpref{SetFullName}{wxfilenamesetfullname}
856
857
858\membersection{wxFileName::SetTimes}\label{wxfilenamesettimes}
859
860\func{bool}{SetTimes}{\param{const wxDateTime* }{dtAccess}, \param{const wxDateTime* }{dtMod}, \param{const wxDateTime* }{dtCreate}}
861
862Sets the file creation and last access/modification times (any of the pointers may be NULL).
863
864
865\membersection{wxFileName::SetVolume}\label{wxfilenamesetvolume}
866
867\func{void}{SetVolume}{\param{const wxString\& }{volume}}
868
869Sets the volume specifier.
870
871
872\membersection{wxFileName::SplitPath}\label{wxfilenamesplitpath}
873
874\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}}
875
876\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}}
877
878\func{static void}{SplitPath}{\param{const wxString\& }{fullpath}, \param{wxString* }{path}, \param{wxString* }{name}, \param{wxString* }{ext}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
879
880This function splits a full file name into components: the volume (with the
881first version) path (including the volume in the second version), the base name
882and the extension. Any of the output parameters ({\it volume}, {\it path},
883{\it name} or {\it ext}) may be {\tt NULL} if you are not interested in the
884value of a particular component. Also, {\it fullpath} may be empty on entry.
885
886On return, {\it path} contains the file path (without the trailing separator),
887{\it name} contains the file name and {\it ext} contains the file extension
888without leading dot. All three of them may be empty if the corresponding
889component is. The old contents of the strings pointed to by these parameters
890will be overwritten in any case (if the pointers are not {\tt NULL}).
891
892Note that for a filename ``foo.'' the extension is present, as indicated by the
893trailing dot, but empty. If you need to cope with such cases, you should use
894\arg{hasExt} instead of relying on testing whether \arg{ext} is empty or not.
895
896
897\membersection{wxFileName::SplitVolume}\label{wxfilenamesplitvolume}
898
899\func{static void}{SplitVolume}{\param{const wxString\& }{fullpath}, \param{wxString* }{volume}, \param{wxString* }{path}, \param{wxPathFormat }{format = wxPATH\_NATIVE}}
900
901Splits the given \arg{fullpath} into the volume part (which may be empty) and
902the pure path part, not containing any volume.
903
904\wxheading{See also}
905
906\helpref{SplitPath}{wxfilenamesplitpath}
907
908
909\membersection{wxFileName::Touch}\label{wxfilenametouch}
910
911\func{bool}{Touch}{\void}
912
913Sets the access and modification times to the current moment.
914
915
916\membersection{wxFileName::operator=}\label{wxfilenameoperatorassign}
917
918\func{wxFileName\& operator}{operator=}{\param{const wxFileName\& }{filename}}
919
920\func{wxFileName\& operator}{operator=}{\param{const wxString\& }{filename}}
921
922Assigns the new value to this filename object.
923
924
925\membersection{wxFileName::operator==}\label{wxfilenameoperatorequal}
926
927\constfunc{bool operator}{operator==}{\param{const wxFileName\& }{filename}}
928
929\constfunc{bool operator}{operator==}{\param{const wxString\& }{filename}}
930
931Returns {\tt true} if the filenames are equal. The string {\it filenames} is
932interpreted as a path in the native filename format.
933
934
935\membersection{wxFileName::operator!=}\label{wxfilenameoperatornotequal}
936
937\constfunc{bool operator}{operator!=}{\param{const wxFileName\& }{filename}}
938
939\constfunc{bool operator}{operator!=}{\param{const wxString\& }{filename}}
940
941Returns {\tt true} if the filenames are different. The string {\it filenames}
942is interpreted as a path in the native filename format.
943