]>
git.saurik.com Git - wxWidgets.git/blob - interface/filename.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxFileName class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 wxFileName encapsulates a file name. This class serves two purposes: first, it
14 provides the functions to split the file names into components and to recombine
15 these components in the full file name which can then be passed to the OS file
16 functions (and @ref overview_filefunctions "wxWidgets functions" wrapping them).
17 Second, it includes the functions for working with the files itself. Note that
18 to change the file data you should use wxFile class instead.
19 wxFileName provides functions for working with the file attributes.
21 When working with directory names (i.e. without filename and extension)
22 make sure not to misuse the file name part of this class with the last
23 directory. Instead initialize the wxFileName instance like this:
26 wxFileName dirname( "C:\mydir", "" );
27 MyMethod( dirname.GetPath() );
30 The same can be done using the static method wxFileName::DirName:
33 wxFileName dirname = wxFileName::DirName( "C:\mydir" );
34 MyMethod( dirname.GetPath() );
37 Accordingly, methods dealing with directories or directory names
38 like wxFileName::IsDirReadable use
39 wxFileName::GetPath whereas methods dealing
40 with file names like wxFileName::IsFileReadable
41 use wxFileName::GetFullPath.
43 If it is not known wether a string contains a directory name or
44 a complete file name (such as when interpreting user input) you need to use
45 the static function wxFileName::DirExists
46 (or its identical variants wxDir::Exists and
47 wxDirExists) and construct the wxFileName
48 instance accordingly. This will only work if the directory actually exists,
53 // get input from user
56 if (wxDirExists(user_input))
57 fname.AssignDir( user_input );
59 fname.Assign( user_input );
73 Constructor from a volume name, a directory name, base file name and extension.
76 wxFileName(const wxFileName
& filename
);
77 wxFileName(const wxString
& fullpath
,
78 wxPathFormat format
= wxPATH_NATIVE
);
79 wxFileName(const wxString
& path
, const wxString
& name
,
80 wxPathFormat format
= wxPATH_NATIVE
);
81 wxFileName(const wxString
& path
, const wxString
& name
,
83 wxPathFormat format
= wxPATH_NATIVE
);
84 wxFileName(const wxString
& volume
, const wxString
& path
,
87 wxPathFormat format
= wxPATH_NATIVE
);
91 Appends a directory component to the path. This component should contain a
92 single directory name level, i.e. not contain any path or volume separators nor
93 should it be empty, otherwise the function does nothing (and generates an
94 assert failure in debug build).
96 void AppendDir(const wxString
& dir
);
100 Creates the file name from various combinations of data.
102 void Assign(const wxFileName
& filepath
);
103 void Assign(const wxString
& fullpath
,
104 wxPathFormat format
= wxPATH_NATIVE
);
105 void Assign(const wxString
& volume
, const wxString
& path
,
106 const wxString
& name
,
109 wxPathFormat format
= wxPATH_NATIVE
);
110 void Assign(const wxString
& volume
, const wxString
& path
,
111 const wxString
& name
,
113 wxPathFormat format
= wxPATH_NATIVE
);
114 void Assign(const wxString
& path
, const wxString
& name
,
115 wxPathFormat format
= wxPATH_NATIVE
);
116 void Assign(const wxString
& path
, const wxString
& name
,
118 wxPathFormat format
= wxPATH_NATIVE
);
122 Makes this object refer to the current working directory on the specified
123 volume (or current volume if @e volume is empty).
127 static void AssignCwd(const wxString
& volume
= wxEmptyString
);
130 Sets this file name object to the given directory name. The name and extension
133 void AssignDir(const wxString
& dir
,
134 wxPathFormat format
= wxPATH_NATIVE
);
137 Sets this file name object to the home directory.
139 void AssignHomeDir();
142 The function calls CreateTempFileName() to
143 create a temporary file and sets this object to the name of the file. If a
144 temporary file couldn't be created, the object is put into the
145 @ref isok() invalid state.
147 void AssignTempFileName(const wxString
& prefix
,
148 wxFile
* fileTemp
= @NULL
);
151 Reset all components to default, uninitialized state.
156 Removes the extension from the file name resulting in a
157 file name with no trailing dot.
159 @sa SetExt(), SetEmptyExt()
164 Returns a temporary file name starting with the given @e prefix. If
165 the @e prefix is an absolute path, the temporary file is created in this
166 directory, otherwise it is created in the default system directory for the
167 temporary files or in the current directory.
169 If the function succeeds, the temporary file is actually created. If
170 @e fileTemp is not @NULL, this file will be opened using the name of
171 the temporary file. When possible, this is done in an atomic way ensuring that
172 no race condition occurs between the temporary file name generation and opening
173 it which could often lead to security compromise on the multiuser systems.
174 If @e fileTemp is @NULL, the file is only created, but not opened.
176 Under Unix, the temporary file will have read and write permissions for the
177 owner only to minimize the security problems.
180 Prefix to use for the temporary file name construction
183 The file to open or @NULL to just get the name
185 @returns The full temporary file name or an empty string on error.
187 static wxString
CreateTempFileName(const wxString
& prefix
,
188 wxFile
* fileTemp
= @NULL
);
192 Returns @true if the directory with this name exists.
195 static bool DirExists(const wxString
& dir
);
199 Returns the object corresponding to the directory with the given name.
200 The @e dir parameter may have trailing path separator or not.
202 static wxFileName
DirName(const wxString
& dir
,
203 wxPathFormat format
= wxPATH_NATIVE
);
206 These functions allow to examine and modify the individual directories of the
220 To change the components of the file name individually you can use the
248 You can initialize a wxFileName instance using one of the following functions:
250 @ref wxfilename() "wxFileName constructors"
260 @ref assigntempfilename() AssignHomeTempFileName
266 @ref operatorassign() "operator ="
271 wxFileName currently supports the file names in the Unix, DOS/Windows, Mac OS
272 and VMS formats. Although these formats are quite different, wxFileName tries
273 to treat them all in the same generic way. It supposes that all file names
274 consist of the following parts: the volume (also known as drive under Windows
275 or device under VMS), the path which is a sequence of directory names separated
276 by the @ref getpathseparators() "path separators" and the full
277 filename itself which, in turn, is composed from the base file name and the
278 extension. All of the individual components of the file name may be empty and,
279 for example, the volume name is always empty under Unix, but if they are all
280 empty simultaneously, the filename object is considered to be in an invalid
281 state and IsOk() returns @false for it.
283 File names can be case-sensitive or not, the function
284 IsCaseSensitive() allows to determine this.
286 The rules for determining whether the file name is absolute or relative also
287 depend on the file name format and the only portable way to answer this
288 question is to use IsAbsolute() or
289 IsRelative() method. Note that on Windows, "X:"
290 refers to the current working directory on drive X. Therefore, a wxFileName
291 instance constructed from for example "X:dir/file.ext" treats the portion
292 beyond drive separator as being relative to that directory.
294 To ensure that the filename is absolute, you may use
295 MakeAbsolute(). There is also an inverse
296 function MakeRelativeTo() which undoes
297 what @ref normalize() Normalize(wxPATH_NORM_DOTS) does.
299 Other functions returning information about the file format provided by this
300 class are GetVolumeSeparator(),
306 Before doing other tests, you should use IsOk() to
307 verify that the filename is well defined. If it is,
308 FileExists() can be used to test whether a file
309 with such name exists and DirExists() can be used
310 to test for directory existence.
312 File names should be compared using SameAs() method
313 or @ref operatorequal() "operator ==".
315 For testing basic access modes, you can use:
331 Returns @true if the file with this name exists.
336 static bool FileExists(const wxString
& file
);
340 Returns the file name object corresponding to the given @e file. This
341 function exists mainly for symmetry with DirName().
343 static wxFileName
FileName(const wxString
& file
,
344 wxPathFormat format
= wxPATH_NATIVE
);
347 Retrieves the value of the current working directory on the specified volume. If
348 the volume is empty, the program's current working directory is returned for the
351 @returns The string containing the current working directory or an empty
356 static wxString
GetCwd(const wxString
& volume
= "");
359 Returns the number of directories in the file name.
361 size_t GetDirCount();
364 Returns the directories in string array form.
366 const wxArrayString
GetDirs();
369 Returns the file name extension.
374 Returns the characters that can't be used in filenames and directory names for
375 the specified format.
377 static wxString
GetForbiddenChars(wxPathFormat format
= wxPATH_NATIVE
);
380 Returns the canonical path format for this platform.
382 static wxPathFormat
GetFormat(wxPathFormat format
= wxPATH_NATIVE
);
385 Returns the full name (including extension but excluding directories).
387 wxString
GetFullName();
390 Returns the full path with name and extension.
392 wxString
GetFullPath(wxPathFormat format
= wxPATH_NATIVE
);
395 Returns the home directory.
397 static wxString
GetHomeDir();
401 Returns the size of this file (first form) or the given number of bytes (second
403 in a human-readable form.
405 If the size could not be retrieved the @c failmsg string is returned (first
407 If @c bytes is @c wxInvalidSize or zero, then @c nullsize is returned (second
410 In case of success, the returned string is a floating-point number with @c
411 precision decimal digits
412 followed by the size unit (B, kB, MB, GB, TB: respectively bytes, kilobytes,
413 megabytes, gigabytes, terabytes).
415 wxString
GetHumanReadableSize(const wxString
& failmsg
= "Not available",
417 static wxString
GetHumanReadableSize(const wxULongLong
& bytes
,
418 const wxString
& nullsize
= "Not available",
423 Return the long form of the path (returns identity on non-Windows platforms)
425 wxString
GetLongPath();
428 Returns the last time the file was last modified.
430 wxDateTime
GetModificationTime();
433 Returns the name part of the filename (without extension).
440 Returns the path part of the filename (without the name or extension). The
441 possible flags values are:
447 Return the path with the volume (does
448 nothing for the filename formats without volumes), otherwise the path without
449 volume part is returned.
451 @b wxPATH_GET_SEPARATOR
454 Return the path with the trailing
455 separator, if this flag is not given there will be no separator at the end of
458 wxString
GetPath(int flags
= wxPATH_GET_VOLUME
,
459 wxPathFormat format
= wxPATH_NATIVE
);
462 Returns the usually used path separator for this format. For all formats but
463 @c wxPATH_DOS there is only one path separator anyhow, but for DOS there
464 are two of them and the native one, i.e. the backslash is returned by this
467 @sa GetPathSeparators()
469 static wxChar
GetPathSeparator(wxPathFormat format
= wxPATH_NATIVE
);
472 Returns the string containing all the path separators for this format. For all
473 formats but @c wxPATH_DOS this string contains only one character but for
474 DOS and Windows both @c '/' and @c '\' may be used as
477 @sa GetPathSeparator()
479 static wxString
GetPathSeparators(wxPathFormat format
= wxPATH_NATIVE
);
482 Returns the string of characters which may terminate the path part. This is the
483 same as GetPathSeparators() except for VMS
484 path format where ] is used at the end of the path part.
486 static wxString
GetPathTerminators(wxPathFormat format
= wxPATH_NATIVE
);
489 Returns the path with the trailing separator, useful for appending the name to
492 This is the same as calling GetPath()
493 @c (wxPATH_GET_VOLUME | wxPATH_GET_SEPARATOR, format).
495 wxString
GetPathWithSep(wxPathFormat format
= wxPATH_NATIVE
);
498 Return the short form of the path (returns identity on non-Windows platforms).
500 wxString
GetShortPath();
504 Returns the size of this file (first form) or the size of the given file
506 If the file does not exist or its size could not be read (because e.g. the file
508 by another process) the returned value is @c wxInvalidSize.
510 wxULongLong
GetSize();
511 static wxULongLong
GetSize(const wxString
& filename
);
515 Returns the directory used for temporary files.
517 static wxString
GetTempDir();
520 Returns the last access, last modification and creation times. The last access
521 time is updated whenever the file is read or written (or executed in the case
522 of Windows), last modification time is only changed when the file is written
523 to. Finally, the creation time is indeed the time when the file was created
524 under Windows and the inode change time under Unix (as it is impossible to
525 retrieve the real file creation time there anyhow) which can also be changed
526 by many operations after the file creation.
528 If no filename or extension is specified in this instance of wxFileName
529 (and therefore IsDir() returns @true) then
530 this function will return the directory times of the path specified by
531 GetPath(), otherwise the file times of the
532 file specified by GetFullPath().
534 Any of the pointers may be @NULL if the corresponding time is not
537 @returns @true on success, @false if we failed to retrieve the times.
539 bool GetTimes(wxDateTime
* dtAccess
, wxDateTime
* dtMod
,
540 wxDateTime
* dtCreate
);
543 Returns the string containing the volume for this file name, empty if it
544 doesn't have one or if the file system doesn't support volumes at all (for
547 wxString
GetVolume();
550 Returns the string separating the volume from the path for this format.
552 static wxString
GetVolumeSeparator(wxPathFormat format
= wxPATH_NATIVE
);
555 Returns @true if an extension is present.
560 Returns @true if a name is present.
565 Returns @true if a volume specifier is present.
570 Inserts a directory component before the zero-based position in the directory
571 list. Please see AppendDir() for important notes.
573 void InsertDir(size_t before
, const wxString
& dir
);
576 Returns @true if this filename is absolute.
578 bool IsAbsolute(wxPathFormat format
= wxPATH_NATIVE
);
581 Returns @true if the file names of this type are case-sensitive.
583 static bool IsCaseSensitive(wxPathFormat format
= wxPATH_NATIVE
);
586 Returns @true if this object represents a directory, @false otherwise
587 (i.e. if it is a file). Note that this method doesn't test whether the
588 directory or file really exists, you should use
590 FileExists() for this.
596 Returns @true if the directory component of this instance (or given @e dir)
597 is an existing directory and this process has read permissions on it.
598 Read permissions on a directory mean that you can list the directory contents
600 doesn't imply that you have read permissions on the files contained.
602 bool IsDirReadable();
603 static bool IsDirReadable(const wxString
& dir
);
608 Returns @true if the directory component of this instance (or given @e dir)
609 is an existing directory and this process has write permissions on it.
610 Write permissions on a directory mean that you can create new files in the
613 bool IsDirWritable();
614 static bool IsDirWritable(const wxString
& dir
);
619 Returns @true if a file with this name exists and if this process has execute
622 bool IsFileExecutable();
623 static bool IsFileExecutable(const wxString
& file
);
628 Returns @true if a file with this name exists and if this process has read
631 bool IsFileReadable();
632 static bool IsFileReadable(const wxString
& file
);
637 Returns @true if a file with this name exists and if this process has write
640 bool IsFileWritable();
641 static bool IsFileWritable(const wxString
& file
);
645 Returns @true if the filename is valid, @false if it is not
646 initialized yet. The assignment functions and
647 Clear() may reset the object to the uninitialized,
648 invalid state (the former only do it on failure).
650 #define bool IsOk() /* implementation is private */
653 Returns @true if the char is a path separator for this format.
655 static bool IsPathSeparator(wxChar ch
,
656 wxPathFormat format
= wxPATH_NATIVE
);
659 Returns @true if this filename is not absolute.
661 bool IsRelative(wxPathFormat format
= wxPATH_NATIVE
);
664 On Mac OS, gets the common type and creator for the given extension.
666 static bool MacFindDefaultTypeAndCreator(const wxString
& ext
,
671 On Mac OS, registers application defined extensions and their default type and
674 static void MacRegisterDefaultTypeAndCreator(const wxString
& ext
,
679 On Mac OS, looks up the appropriate type and creator from the registration and
682 bool MacSetDefaultTypeAndCreator();
685 Make the file name absolute. This is a shortcut for
686 @c wxFileName::Normalize(wxPATH_NORM_DOTS | wxPATH_NORM_ABSOLUTE |
687 wxPATH_NORM_TILDE, cwd, format).
689 @sa MakeRelativeTo(), Normalize(), IsAbsolute()
691 bool MakeAbsolute(const wxString
& cwd
= wxEmptyString
,
692 wxPathFormat format
= wxPATH_NATIVE
);
695 This function tries to put this file name in a form relative to
698 In other words, it returns the file name which should be used to access this
699 file if the current directory were pathBase.
702 the directory to use as root, current directory is used by
706 the file name format, native by default
708 @returns @true if the file name has been changed, @false if we failed to do
709 anything with it (currently this only happens if the
710 file name is on a volume different from the volume
711 specified by pathBase).
715 bool MakeRelativeTo(const wxString
& pathBase
= wxEmptyString
,
716 wxPathFormat format
= wxPATH_NATIVE
);
721 the directory to create
724 the permissions for the newly created directory
727 if the flags contain wxPATH_MKDIR_FULL flag,
728 try to create each directory in the path and also don't return an error
729 if the target directory already exists.
731 @returns Returns @true if the directory was successfully created, @false
734 bool Mkdir(int perm
= 0777, int flags
= 0);
735 static bool Mkdir(const wxString
& dir
, int perm
= 0777,
740 Normalize the path. With the default flags value, the path will be
741 made absolute, without any ".." and "." and all environment
742 variables will be expanded in it.
745 The kind of normalization to do with the file name. It can be
746 any or-combination of the following constants:
751 replace env vars with their values
756 squeeze all .. and . when possible; if there are too many .. and thus they
757 cannot be all removed, @false will be returned
762 if filesystem is case insensitive, transform to lower case
767 make the path absolute prepending cwd
772 make the path the long form
777 resolve if it is a shortcut (Windows only)
782 replace ~ and ~user (Unix only)
787 all of previous flags except wxPATH_NORM_CASE
790 If not empty, this directory will be used instead of current
791 working directory in normalization (see wxPATH_NORM_ABSOLUTE).
794 The file name format to use when processing the paths, native by default.
796 @returns @true if normalization was successfully or @false otherwise.
798 bool Normalize(int flags
= wxPATH_NORM_ALL
,
799 const wxString
& cwd
= wxEmptyString
,
800 wxPathFormat format
= wxPATH_NATIVE
);
803 These methods allow to work with the file creation, access and modification
804 times. Note that not all filesystems under all platforms implement these times
805 in the same way. For example, the access time under Windows has a resolution of
806 one day (so it is really the access date and not time). The access time may be
807 updated when the file is executed or not depending on the platform.
809 GetModificationTime()
817 Other file system operations functions are:
826 Prepends a directory to the file path. Please see
827 AppendDir() for important notes.
829 void PrependDir(const wxString
& dir
);
832 Removes the specified directory component from the path.
836 void RemoveDir(size_t pos
);
839 Removes last directory component from the path.
841 void RemoveLastDir();
845 Deletes the specified directory from the file system.
848 static bool Rmdir(const wxString
& dir
);
852 Compares the filename using the rules of this platform.
854 bool SameAs(const wxFileName
& filepath
,
855 wxPathFormat format
= wxPATH_NATIVE
);
859 Changes the current working directory.
862 static bool SetCwd(const wxString
& cwd
);
866 Sets the extension of the file name to be an empty extension.
867 This is different from having no extension at all as the file
868 name will have a trailing dot after a call to this method.
870 @sa SetExt(), ClearExt()
875 Sets the extension of the file name. Setting an empty string
876 as the extension will remove the extension resulting in a file
877 name without a trailing dot, unlike a call to
880 @sa SetEmptyExt(), ClearExt()
882 void SetExt(const wxString
& ext
);
885 The full name is the file name and extension (but without the path).
887 void SetFullName(const wxString
& fullname
);
890 Sets the name part (without extension).
894 void SetName(const wxString
& name
);
897 Sets the file creation and last access/modification times (any of the pointers
900 bool SetTimes(const wxDateTime
* dtAccess
,
901 const wxDateTime
* dtMod
,
902 const wxDateTime
* dtCreate
);
905 Sets the volume specifier.
907 void SetVolume(const wxString
& volume
);
911 This function splits a full file name into components: the volume (with the
912 first version) path (including the volume in the second version), the base name
913 and the extension. Any of the output parameters (@e volume, @e path,
914 @e name or @e ext) may be @NULL if you are not interested in the
915 value of a particular component. Also, @e fullpath may be empty on entry.
917 On return, @e path contains the file path (without the trailing separator),
918 @e name contains the file name and @e ext contains the file extension
919 without leading dot. All three of them may be empty if the corresponding
920 component is. The old contents of the strings pointed to by these parameters
921 will be overwritten in any case (if the pointers are not @NULL).
923 Note that for a filename "foo.'' the extension is present, as indicated by the
924 trailing dot, but empty. If you need to cope with such cases, you should use
925 @e hasExt instead of relying on testing whether @e ext is empty or not.
927 static void SplitPath(const wxString
& fullpath
, wxString
* volume
,
932 wxPathFormat format
= wxPATH_NATIVE
);
933 static void SplitPath(const wxString
& fullpath
,
938 wxPathFormat format
= wxPATH_NATIVE
);
939 static void SplitPath(const wxString
& fullpath
,
943 wxPathFormat format
= wxPATH_NATIVE
);
947 Splits the given @e fullpath into the volume part (which may be empty) and
948 the pure path part, not containing any volume.
952 static void SplitVolume(const wxString
& fullpath
,
955 wxPathFormat format
= wxPATH_NATIVE
);
958 Sets the access and modification times to the current moment.
964 Returns @true if the filenames are different. The string @e filenames
965 is interpreted as a path in the native filename format.
967 bool operator operator!=(const wxFileName
& filename
);
968 bool operator operator!=(const wxString
& filename
);
973 Assigns the new value to this filename object.
975 wxFileName
& operator operator=(const wxFileName
& filename
);
976 wxFileName
& operator operator=(const wxString
& filename
);
981 Returns @true if the filenames are equal. The string @e filenames is
982 interpreted as a path in the native filename format.
984 bool operator operator==(const wxFileName
& filename
);
985 bool operator operator==(const wxString
& filename
);