1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxFileName
4 // Author: wxWidgets team
5 // Licence: wxWindows licence
6 /////////////////////////////////////////////////////////////////////////////
10 The various values for the path format: this mainly affects the path
11 separator but also whether or not the path has the drive part
14 See wxFileName for more info.
18 wxPATH_NATIVE
= 0, //!< the path format for the current platform.
20 wxPATH_BEOS
= wxPATH_UNIX
,
23 wxPATH_WIN
= wxPATH_DOS
,
24 wxPATH_OS2
= wxPATH_DOS
,
27 wxPATH_MAX
//!< Not a valid value for specifying path format
31 Different conventions for human readable sizes.
33 @see wxFileName::GetHumanReadableSize().
40 wxSIZE_CONV_TRADITIONAL
,
42 /// 1024 bytes = 1KiB.
51 The kind of normalization to do with the file name: these values can be
52 or'd together to perform several operations at once.
53 See wxFileName::Normalize() for more info.
57 //! Replace environment variables with their values.
58 //! wxFileName understands both Unix and Windows (but only under Windows) environment
59 //! variables expansion: i.e. @c "$var", @c "$(var)" and @c "${var}" are always understood
60 //! and in addition under Windows @c "%var%" is also.
61 wxPATH_NORM_ENV_VARS
= 0x0001,
63 wxPATH_NORM_DOTS
= 0x0002, //!< Squeeze all @c ".." and @c ".".
64 wxPATH_NORM_TILDE
= 0x0004, //!< Replace @c "~" and @c "~user" (Unix only).
65 wxPATH_NORM_CASE
= 0x0008, //!< If the platform is case insensitive, make lowercase the path.
66 wxPATH_NORM_ABSOLUTE
= 0x0010, //!< Make the path absolute.
67 wxPATH_NORM_LONG
= 0x0020, //!< Expand the path to the "long" form (Windows only).
68 wxPATH_NORM_SHORTCUT
= 0x0040, //!< Resolve the shortcut, if it is a shortcut (Windows only).
70 //! A value indicating all normalization flags except for @c wxPATH_NORM_CASE.
71 wxPATH_NORM_ALL
= 0x00ff & ~wxPATH_NORM_CASE
75 Flags for wxFileName::Rmdir().
79 /// Delete the specified directory and its subdirectories if they are empty.
80 wxPATH_RMDIR_FULL
= 1,
83 Delete the specified directory and all the files and subdirectories in it
86 This flag is obviously @b dangerous and should be used with care and
87 after asking the user for confirmation.
89 wxPATH_RMDIR_RECURSIVE
= 2
93 Flags for wxFileName::Exists().
99 wxFILE_EXISTS_REGULAR
= 0x0001, //!< Check for existence of a regular file
100 wxFILE_EXISTS_DIR
= 0x0002, //!< Check for existence of a directory
102 Check for existence of a symlink.
104 Notice that this flag also sets ::wxFILE_EXISTS_NO_FOLLOW, otherwise it
105 would never be satisfied as wxFileName::Exists() would be checking for
106 the existence of the symlink target and not the symlink itself.
108 wxFILE_EXISTS_SYMLINK
= 0x1004,
109 wxFILE_EXISTS_DEVICE
= 0x0008, //!< Check for existence of a device
110 wxFILE_EXISTS_FIFO
= 0x0016, //!< Check for existence of a FIFO
111 wxFILE_EXISTS_SOCKET
= 0x0032, //!< Check for existence of a socket
112 wxFILE_EXISTS_NO_FOLLOW
= 0x1000 //!< Don't dereference a contained symbolic link
113 wxFILE_EXISTS_ANY
= 0x1FFF, //!< Check for existence of anything
117 The return value of wxFileName::GetSize() in case of error.
119 wxULongLong wxInvalidSize
;
125 wxFileName encapsulates a file name.
127 This class serves two purposes: first, it provides the functions to split the
128 file names into components and to recombine these components in the full file
129 name which can then be passed to the OS file functions
130 (and @ref group_funcmacro_file "wxWidgets functions" wrapping them).
131 Second, it includes the functions for working with the files itself. Note that
132 to change the file data you should use wxFile class instead.
133 wxFileName provides functions for working with the file attributes.
135 When working with directory names (i.e. without filename and extension)
136 make sure not to misuse the file name part of this class with the last
137 directory. Instead initialize the wxFileName instance like this:
140 wxFileName dirname( "C:\mydir", "" );
141 MyMethod( dirname.GetPath() );
144 The same can be done using the static method wxFileName::DirName():
147 wxFileName dirname = wxFileName::DirName( "C:\mydir" );
148 MyMethod( dirname.GetPath() );
151 Accordingly, methods dealing with directories or directory names like
152 wxFileName::IsDirReadable() use wxFileName::GetPath() whereas methods dealing
153 with file names like wxFileName::IsFileReadable() use wxFileName::GetFullPath().
155 If it is not known whether a string contains a directory name or a complete
156 file name (such as when interpreting user input) you need to use the static
157 function wxFileName::DirExists() (or its identical variants wxDir::Exists() and
158 wxDirExists()) and construct the wxFileName instance accordingly.
159 This will only work if the directory actually exists, of course:
163 // get input from user
166 if (wxDirExists(user_input))
167 fname.AssignDir( user_input );
169 fname.Assign( user_input );
172 Please note that many wxFileName methods accept the path format argument
173 which is by @c wxPATH_NATIVE by default meaning to use the path format
174 native for the current platform.
175 The path format affects the operation of wxFileName functions in several ways:
176 first and foremost, it defines the path separator character to use, but it
177 also affects other things such as whether the path has the drive part or not.
178 See wxPathFormat for more info.
181 @section filename_format File name format
183 wxFileName currently supports the file names in the Unix, DOS/Windows,
184 Mac OS and VMS formats. Although these formats are quite different,
185 wxFileName tries to treat them all in the same generic way.
186 It supposes that all file names consist of the following parts: the volume
187 (also known as drive under Windows or device under VMS), the path which is
188 a sequence of directory names separated by the path separators and the full
189 filename itself which, in turn, is composed from the base file name and the
190 extension. All of the individual components of the file name may be empty
191 and, for example, the volume name is always empty under Unix, but if they
192 are all empty simultaneously, the filename object is considered to be in an
193 invalid state and wxFileName::IsOk() returns false for it.
195 File names can be case-sensitive or not, the function wxFileName::IsCaseSensitive()
196 allows to determine this. The rules for determining whether the file name is
197 absolute or relative also depend on the file name format and the only portable way
198 to answer this question is to use wxFileName::IsAbsolute() or wxFileName::IsRelative()
201 Note that on Windows,"X:" refers to the current working directory on drive X.
202 Therefore, a wxFileName instance constructed from for example "X:dir/file.ext"
203 treats the portion beyond drive separator as being relative to that directory.
204 To ensure that the filename is absolute, you may use wxFileName::MakeAbsolute().
205 There is also an inverse function wxFileName::MakeRelativeTo() which undoes
206 what wxFileName::Normalize(wxPATH_NORM_DOTS) does.
207 Other functions returning information about the file format provided by this
208 class are wxFileName::GetVolumeSeparator(), wxFileName::IsPathSeparator().
211 @section filename_construction File name construction
213 You can initialize a wxFileName instance using one of the following functions:
215 @li wxFileName::wxFileName()
216 @li wxFileName::Assign()
217 @li wxFileName::AssignCwd()
218 @li wxFileName::AssignDir()
219 @li wxFileName::AssignHomeDir()
220 @li wxFileName::AssignTempFileName()
221 @li wxFileName::DirName()
222 @li wxFileName::FileName()
223 @li wxFileName::operator=()
226 @section filename_tests File name tests
228 Before doing other tests, you should use wxFileName::IsOk() to verify that
229 the filename is well defined. If it is, FileExists() can be used to test whether
230 a file with such name exists and wxFileName::DirExists() can be used to test
231 for directory existence.
232 File names should be compared using the wxFileName::SameAs() method or
233 wxFileName::operator==(). For testing basic access modes, you can use:
235 @li wxFileName::IsDirWritable()
236 @li wxFileName::IsDirReadable()
237 @li wxFileName::IsFileWritable()
238 @li wxFileName::IsFileReadable()
239 @li wxFileName::IsFileExecutable()
242 @section filename_components File name components
244 These functions allow to examine and modify the individual directories
247 @li wxFileName::AppendDir()
248 @li wxFileName::InsertDir()
249 @li wxFileName::GetDirCount()
250 @li wxFileName::PrependDir()
251 @li wxFileName::RemoveDir()
252 @li wxFileName::RemoveLastDir()
254 To change the components of the file name individually you can use the
257 @li wxFileName::GetExt()
258 @li wxFileName::GetName()
259 @li wxFileName::GetVolume()
260 @li wxFileName::HasExt()
261 @li wxFileName::HasName()
262 @li wxFileName::HasVolume()
263 @li wxFileName::SetExt()
264 @li wxFileName::ClearExt()
265 @li wxFileName::SetEmptyExt()
266 @li wxFileName::SetName()
267 @li wxFileName::SetVolume()
269 You can initialize a wxFileName instance using one of the following functions:
272 @section filename_operations File name operations
274 These methods allow to work with the file creation, access and modification
275 times. Note that not all filesystems under all platforms implement these times
276 in the same way. For example, the access time under Windows has a resolution of
277 one day (so it is really the access date and not time). The access time may be
278 updated when the file is executed or not depending on the platform.
280 @li wxFileName::GetModificationTime()
281 @li wxFileName::GetTimes()
282 @li wxFileName::SetTimes()
283 @li wxFileName::Touch()
285 Other file system operations functions are:
287 @li wxFileName::Mkdir()
288 @li wxFileName::Rmdir()
305 wxFileName(const wxFileName
& filename
);
308 Constructor taking a full filename.
310 If it terminates with a '/', a directory path is constructed
311 (the name will be empty), otherwise a file name and extension
312 are extracted from it.
314 wxFileName(const wxString
& fullpath
,
315 wxPathFormat format
= wxPATH_NATIVE
);
318 Constructor a directory name and file name.
320 wxFileName(const wxString
& path
, const wxString
& name
,
321 wxPathFormat format
= wxPATH_NATIVE
);
324 Constructor from a directory name, base file name and extension.
326 wxFileName(const wxString
& path
, const wxString
& name
,
328 wxPathFormat format
= wxPATH_NATIVE
);
331 Constructor from a volume name, a directory name, base file name and extension.
333 wxFileName(const wxString
& volume
, const wxString
& path
,
334 const wxString
& name
,
336 wxPathFormat format
= wxPATH_NATIVE
);
339 Appends a directory component to the path.
341 This component should contain a single directory name level, i.e. not
342 contain any path or volume separators nor should it be empty, otherwise
343 the function does nothing and returns false (and generates an assert
344 failure in debug build).
346 Notice that the return value is only available in wxWidgets 2.9.5 or
349 bool AppendDir(const wxString
& dir
);
352 Creates the file name from another filename object.
354 void Assign(const wxFileName
& filepath
);
357 Creates the file name from a full file name with a path.
359 void Assign(const wxString
& fullpath
,
360 wxPathFormat format
= wxPATH_NATIVE
);
363 Creates the file name from volume, path, name and extension.
365 void Assign(const wxString
& volume
, const wxString
& path
,
366 const wxString
& name
,
369 wxPathFormat format
= wxPATH_NATIVE
);
372 Creates the file name from volume, path, name and extension.
374 void Assign(const wxString
& volume
, const wxString
& path
,
375 const wxString
& name
,
377 wxPathFormat format
= wxPATH_NATIVE
);
380 Creates the file name from file path and file name.
382 void Assign(const wxString
& path
, const wxString
& name
,
383 wxPathFormat format
= wxPATH_NATIVE
);
386 Creates the file name from path, name and extension.
388 void Assign(const wxString
& path
, const wxString
& name
,
390 wxPathFormat format
= wxPATH_NATIVE
);
393 Makes this object refer to the current working directory on the specified
394 volume (or current volume if @a volume is empty).
398 void AssignCwd(const wxString
& volume
= wxEmptyString
);
401 Sets this file name object to the given directory name.
402 The name and extension will be empty.
404 void AssignDir(const wxString
& dir
,
405 wxPathFormat format
= wxPATH_NATIVE
);
408 Sets this file name object to the home directory.
410 void AssignHomeDir();
413 The function calls CreateTempFileName() to create a temporary file
414 and sets this object to the name of the file.
416 If a temporary file couldn't be created, the object is put into
417 an invalid state (see IsOk()).
419 void AssignTempFileName(const wxString
& prefix
);
422 The function calls CreateTempFileName() to create a temporary
423 file name and open @a fileTemp with it.
425 If the file couldn't be opened, the object is put into
426 an invalid state (see IsOk()).
428 void AssignTempFileName(const wxString
& prefix
, wxFile
* fileTemp
);
431 The function calls CreateTempFileName() to create a temporary
432 file name and open @a fileTemp with it.
434 If the file couldn't be opened, the object is put into
435 an invalid state (see IsOk()).
437 void AssignTempFileName(const wxString
& prefix
, wxFFile
* fileTemp
);
440 Reset all components to default, uninitialized state.
445 Removes the extension from the file name resulting in a
446 file name with no trailing dot.
448 @see SetExt(), SetEmptyExt()
454 Returns a temporary file name starting with the given @e prefix.
455 If @a prefix is an absolute path and ends in a separator, the
456 temporary file is created in this directory; if it is an absolute
457 filepath or there is no separator, the temporary file is created in its
458 path, with the 'name' segment prepended to the temporary filename;
459 otherwise it is created in the default system directory for temporary
460 files or in the current directory.
462 If the function succeeds, the temporary file is actually created.
463 If @a fileTemp is not @NULL, this wxFile will be opened using the name of
464 the temporary file. Where possible this is done in an atomic way to ensure that
465 no race condition occurs between creating the temporary file name and opening
466 it, which might lead to a security compromise on multiuser systems.
467 If @a fileTemp is @NULL, the file is created but not opened.
468 Under Unix, the temporary file will have read and write permissions for the
469 owner only, to minimize security problems.
472 Location to use for the temporary file name construction. If @a prefix
473 is a directory it must have a terminal separator
475 The file to open, or @NULL just to get the name
477 @return The full temporary filepath, or an empty string on error.
479 static wxString
CreateTempFileName(const wxString
& prefix
,
480 wxFile
* fileTemp
= NULL
);
483 This is the same as CreateTempFileName(const wxString &prefix, wxFile *fileTemp)
484 but takes a wxFFile parameter instead of wxFile.
486 static wxString
CreateTempFileName(const wxString
& prefix
,
487 wxFFile
* fileTemp
= NULL
);
491 Returns @true if the directory with this name exists.
493 Notice that this function tests the directory part of this object,
494 i.e. the string returned by GetPath(), and not the full path returned
497 @see FileExists(), Exists()
499 bool DirExists() const;
502 Returns @true if the directory with name @a dir exists.
504 @see FileExists(), Exists()
506 static bool DirExists(const wxString
& dir
);
509 Returns the object corresponding to the directory with the given name.
510 The @a dir parameter may have trailing path separator or not.
512 static wxFileName
DirName(const wxString
& dir
,
513 wxPathFormat format
= wxPATH_NATIVE
);
516 Turns off symlink dereferencing.
518 By default, all operations in this class work on the target of a
519 symbolic link (symlink) if the path of the file is actually a symlink.
520 Using this method allows to turn off this "symlink following" behaviour
521 and apply the operations to this path itself, even if it is a symlink.
523 The following methods are currently affected by this option:
524 - GetTimes() (but not SetTimes() as there is no portable way to
525 change the time of symlink itself).
526 - Existence checks: FileExists(), DirExists() and Exists() (notice
527 that static versions of these methods always follow symlinks).
530 @see ShouldFollowLink()
534 void DontFollowLink();
537 Calls the static overload of this function with the full path of this
540 @since 2.9.4 (@a flags is new since 2.9.5)
542 bool Exists(int flags
= wxFILE_EXISTS_ANY
) const;
545 Returns @true if either a file or a directory or something else with
546 this name exists in the file system.
548 Don't dereference @a path if it is a symbolic link and @a flags
549 argument contains ::wxFILE_EXISTS_NO_FOLLOW.
551 This method is equivalent to @code FileExists() || DirExists() @endcode
552 under Windows, but under Unix it also returns true if the file
553 identifies a special file system object such as a device, a socket or a
556 Alternatively you may check for the existence of a file system entry of
557 a specific type by passing the appropriate @a flags (this parameter is
558 new since wxWidgets 2.9.5). E.g. to test for a symbolic link existence
559 you could use ::wxFILE_EXISTS_SYMLINK.
563 @see FileExists(), DirExists()
565 static bool Exists(const wxString
& path
, int flags
= wxFILE_EXISTS_ANY
);
568 Returns @true if the file with this name exists.
570 @see DirExists(), Exists()
572 bool FileExists() const;
575 Returns @true if the file with name @a file exists.
577 @see DirExists(), Exists()
579 static bool FileExists(const wxString
& file
);
582 Returns the file name object corresponding to the given @e file. This
583 function exists mainly for symmetry with DirName().
585 static wxFileName
FileName(const wxString
& file
,
586 wxPathFormat format
= wxPATH_NATIVE
);
589 Retrieves the value of the current working directory on the specified volume.
590 If the volume is empty, the program's current working directory is returned for
593 @return The string containing the current working directory or an empty
598 static wxString
GetCwd(const wxString
& volume
= wxEmptyString
);
601 Returns the number of directories in the file name.
603 size_t GetDirCount() const;
606 Returns the directories in string array form.
608 const wxArrayString
& GetDirs() const;
611 Returns the file name extension.
613 wxString
GetExt() const;
616 Returns the characters that can't be used in filenames and directory names
617 for the specified format.
619 static wxString
GetForbiddenChars(wxPathFormat format
= wxPATH_NATIVE
);
622 Returns the canonical path format for this platform.
624 static wxPathFormat
GetFormat(wxPathFormat format
= wxPATH_NATIVE
);
627 Returns the full name (including extension but excluding directories).
629 wxString
GetFullName() const;
632 Returns the full path with name and extension.
634 wxString
GetFullPath(wxPathFormat format
= wxPATH_NATIVE
) const;
637 Returns the home directory.
639 static wxString
GetHomeDir();
643 Returns the representation of the file size in a human-readable form.
645 In the first version, the size of this file is used. In the second one,
646 the specified size @a bytes is used.
648 If the file size could not be retrieved or @a bytes is ::wxInvalidSize
649 or zero, the @c failmsg string is returned.
651 Otherwise the returned string is a floating-point number with @c
652 precision decimal digits followed by the abbreviation of the unit used.
653 By default the traditional, although incorrect, convention of using SI
654 units for multiples of 1024 is used, i.e. returned string will use
655 suffixes of B, KB, MB, GB, TB for bytes, kilobytes, megabytes,
656 gigabytes and terabytes respectively. With the IEC convention the names
657 of the units are changed to B, KiB, MiB, GiB and TiB for bytes,
658 kibibytes, mebibytes, gibibytes and tebibytes. Finally, with SI
659 convention the same B, KB, MB, GB and TB suffixes are used but in their
660 correct SI meaning, i.e. as multiples of 1000 and not 1024.
662 Support for the different size conventions is new in wxWidgets 2.9.1,
663 in previous versions only the traditional convention was implemented.
666 GetHumanReadableSize(const wxString
& failmsg
= _("Not available"),
668 wxSizeConvention conv
= wxSIZE_CONV_TRADITIONAL
) const;
671 GetHumanReadableSize(const wxULongLong
& bytes
,
672 const wxString
& nullsize
= _("Not available"),
674 wxSizeConvention conv
= wxSIZE_CONV_TRADITIONAL
);
678 Return the long form of the path (returns identity on non-Windows platforms).
680 wxString
GetLongPath() const;
683 Returns the last time the file was last modified.
685 wxDateTime
GetModificationTime() const;
688 Returns the name part of the filename (without extension).
692 wxString
GetName() const;
695 Returns the path part of the filename (without the name or extension).
697 The possible flags values are:
699 - @b wxPATH_GET_VOLUME:
700 Return the path with the volume (does nothing for the filename formats
701 without volumes), otherwise the path without volume part is returned.
703 - @b wxPATH_GET_SEPARATOR:
704 Return the path with the trailing separator, if this flag is not given
705 there will be no separator at the end of the path.
707 - @b wxPATH_NO_SEPARATOR:
708 Don't include the trailing separator in the returned string. This is
709 the default (the value of this flag is 0) and exists only for symmetry
710 with wxPATH_GET_SEPARATOR.
712 @note If the path is a toplevel one (e.g. @c "/" on Unix or @c "C:\" on
713 Windows), then the returned path will contain trailing separator
714 even with @c wxPATH_NO_SEPARATOR.
716 wxString
GetPath(int flags
= wxPATH_GET_VOLUME
,
717 wxPathFormat format
= wxPATH_NATIVE
) const;
720 Returns the usually used path separator for this format.
721 For all formats but @c wxPATH_DOS there is only one path separator anyhow,
722 but for DOS there are two of them and the native one, i.e. the backslash
723 is returned by this method.
725 @see GetPathSeparators()
727 static wxUniChar
GetPathSeparator(wxPathFormat format
= wxPATH_NATIVE
);
730 Returns the string containing all the path separators for this format.
731 For all formats but @c wxPATH_DOS this string contains only one character
732 but for DOS and Windows both @c '/' and @c '\' may be used as separators.
734 @see GetPathSeparator()
736 static wxString
GetPathSeparators(wxPathFormat format
= wxPATH_NATIVE
);
739 Returns the string of characters which may terminate the path part.
740 This is the same as GetPathSeparators() except for VMS
741 path format where ] is used at the end of the path part.
743 static wxString
GetPathTerminators(wxPathFormat format
= wxPATH_NATIVE
);
746 Returns the path with the trailing separator, useful for appending the name
749 This is the same as calling
751 GetPath(wxPATH_GET_VOLUME | wxPATH_GET_SEPARATOR, format)
754 wxString
GetPathWithSep(wxPathFormat format
= wxPATH_NATIVE
) const;
757 Return the short form of the path (returns identity on non-Windows platforms).
759 wxString
GetShortPath() const;
762 Returns the size of the file If the file does not exist or its size could
763 not be read (because e.g. the file is locked by another process) the returned
764 value is ::wxInvalidSize.
766 wxULongLong
GetSize() const;
769 Returns the size of the file If the file does not exist or its size could
770 not be read (because e.g. the file is locked by another process) the returned
771 value is ::wxInvalidSize.
773 static wxULongLong
GetSize(const wxString
& filename
);
776 Returns the directory used for temporary files.
778 static wxString
GetTempDir();
781 Returns the last access, last modification and creation times.
782 The last access time is updated whenever the file is read or written
783 (or executed in the case of Windows), last modification time is only
784 changed when the file is written to.
785 Finally, the creation time is indeed the time when the file was created
786 under Windows and the inode change time under Unix (as it is impossible to
787 retrieve the real file creation time there anyhow) which can also be changed
788 by many operations after the file creation.
790 If no filename or extension is specified in this instance of wxFileName
791 (and therefore IsDir() returns @true) then this function will return the
792 directory times of the path specified by GetPath(), otherwise the file
793 times of the file specified by GetFullPath().
794 Any of the pointers may be @NULL if the corresponding time is not needed.
796 @return @true on success, @false if we failed to retrieve the times.
798 bool GetTimes(wxDateTime
* dtAccess
, wxDateTime
* dtMod
,
799 wxDateTime
* dtCreate
) const;
802 Returns the string containing the volume for this file name, empty if it
803 doesn't have one or if the file system doesn't support volumes at all
806 wxString
GetVolume() const;
809 Returns the string separating the volume from the path for this format.
811 static wxString
GetVolumeSeparator(wxPathFormat format
= wxPATH_NATIVE
);
814 This function builds a volume path string, for example "C:\\".
816 Implemented for the platforms which use drive letters, i.e. DOS, MSW
822 The drive letter, 'A' through 'Z' or 'a' through 'z'.
825 @c wxPATH_NO_SEPARATOR or @c wxPATH_GET_SEPARATOR to omit or include
826 the trailing path separator, the default is to include it.
828 @return Volume path string.
830 static wxString
GetVolumeString(char drive
, int flags
= wxPATH_GET_SEPARATOR
);
833 Returns @true if an extension is present.
838 Returns @true if a name is present.
840 bool HasName() const;
843 Returns @true if a volume specifier is present.
845 bool HasVolume() const;
848 Inserts a directory component before the zero-based position in the
851 As with AppendDir(), @a dir must be a single directory name and the
852 function returns @false and does nothing else if it isn't.
854 Notice that the return value is only available in wxWidgets 2.9.5 or
857 bool InsertDir(size_t before
, const wxString
& dir
);
860 Returns @true if this filename is absolute.
862 bool IsAbsolute(wxPathFormat format
= wxPATH_NATIVE
) const;
865 Returns @true if the file names of this type are case-sensitive.
867 static bool IsCaseSensitive(wxPathFormat format
= wxPATH_NATIVE
);
870 Returns @true if this object represents a directory, @false otherwise
871 (i.e. if it is a file).
873 Note that this method doesn't test whether the directory or file really
874 exists, you should use DirExists() or FileExists() for this.
879 Returns @true if the directory component of this instance is an existing
880 directory and this process has read permissions on it. Read permissions
881 on a directory mean that you can list the directory contents but it
882 doesn't imply that you have read permissions on the files contained.
884 bool IsDirReadable() const;
887 Returns @true if the given @e dir is an existing directory and this process
888 has read permissions on it. Read permissions on a directory mean that you
889 can list the directory contents but it doesn't imply that you have read
890 permissions on the files contained.
892 static bool IsDirReadable(const wxString
& dir
);
895 Returns @true if the directory component of this instance
896 is an existing directory and this process has write permissions on it.
897 Write permissions on a directory mean that you can create new files in the
900 bool IsDirWritable() const;
903 Returns @true if the given @a dir is an existing directory and this
904 process has write permissions on it.
905 Write permissions on a directory mean that you can create new files in the
908 static bool IsDirWritable(const wxString
& dir
);
911 Returns @true if a file with this name exists and if this process has execute
914 bool IsFileExecutable() const;
917 Returns @true if a file with this name exists and if this process has execute
920 static bool IsFileExecutable(const wxString
& file
);
923 Returns @true if a file with this name exists and if this process has read
926 bool IsFileReadable() const;
929 Returns @true if a file with this name exists and if this process has read
932 static bool IsFileReadable(const wxString
& file
);
935 Returns @true if a file with this name exists and if this process has write
938 bool IsFileWritable() const;
941 Returns @true if a file with this name exists and if this process has write
944 static bool IsFileWritable(const wxString
& file
);
947 Returns @true if the filename is valid, @false if it is not initialized yet.
948 The assignment functions and Clear() may reset the object to the uninitialized,
949 invalid state (the former only do it on failure).
954 Returns @true if the char is a path separator for this format.
956 static bool IsPathSeparator(wxChar ch
,
957 wxPathFormat format
= wxPATH_NATIVE
);
960 Returns @true if the volume part of the path is a unique volume name.
962 This function will always return @false if the path format is not
965 Unique volume names are Windows volume identifiers which remain the same
966 regardless of where the volume is actually mounted. Example of a path
967 using a volume name could be
969 \\?\Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}\Program Files\setup.exe
974 static bool IsMSWUniqueVolumeNamePath(const wxString
& path
,
975 wxPathFormat format
= wxPATH_NATIVE
);
978 Returns @true if this filename is not absolute.
980 bool IsRelative(wxPathFormat format
= wxPATH_NATIVE
) const;
983 On Mac OS, gets the common type and creator for the given extension.
987 static bool MacFindDefaultTypeAndCreator(const wxString
& ext
,
992 On Mac OS, registers application defined extensions and their default type
997 static void MacRegisterDefaultTypeAndCreator(const wxString
& ext
,
1002 On Mac OS, looks up the appropriate type and creator from the registration
1007 bool MacSetDefaultTypeAndCreator();
1010 Make the file name absolute.
1011 This is a shortcut for
1013 wxFileName::Normalize(wxPATH_NORM_DOTS | wxPATH_NORM_ABSOLUTE |
1014 wxPATH_NORM_TILDE, cwd, format)
1017 @see MakeRelativeTo(), Normalize(), IsAbsolute()
1019 bool MakeAbsolute(const wxString
& cwd
= wxEmptyString
,
1020 wxPathFormat format
= wxPATH_NATIVE
);
1023 This function tries to put this file name in a form relative to
1025 In other words, it returns the file name which should be used to access
1026 this file if the current directory were pathBase.
1029 The directory to use as root, current directory is used by default
1031 The file name format, native by default
1033 @return @true if the file name has been changed, @false if we failed to do
1034 anything with it (currently this only happens if the file name
1035 is on a volume different from the volume specified by @a pathBase).
1039 bool MakeRelativeTo(const wxString
& pathBase
= wxEmptyString
,
1040 wxPathFormat format
= wxPATH_NATIVE
);
1043 Creates a directory.
1046 The permissions for the newly created directory.
1047 See the ::wxPosixPermissions enumeration for more info.
1049 If the flags contain @c wxPATH_MKDIR_FULL flag, try to create each
1050 directory in the path and also don't return an error if the target
1051 directory already exists.
1053 @return Returns @true if the directory was successfully created, @false
1056 bool Mkdir(int perm
= wxS_DIR_DEFAULT
, int flags
= 0) const;
1059 Creates a directory.
1062 The directory to create
1064 The permissions for the newly created directory.
1065 See the ::wxPosixPermissions enumeration for more info.
1067 If the flags contain @c wxPATH_MKDIR_FULL flag, try to create each
1068 directory in the path and also don't return an error if the target
1069 directory already exists.
1071 @return Returns @true if the directory was successfully created, @false
1074 static bool Mkdir(const wxString
& dir
, int perm
= wxS_DIR_DEFAULT
,
1080 With the default flags value, the path will be made absolute, without
1081 any ".." and "." and all environment variables will be expanded in it.
1083 Notice that in some rare cases normalizing a valid path may result in
1084 an invalid wxFileName object. E.g. normalizing "./" path using
1085 wxPATH_NORM_DOTS but not wxPATH_NORM_ABSOLUTE will result in a
1086 completely empty and thus invalid object. As long as there is a non
1087 empty file name the result of normalization will be valid however.
1090 The kind of normalization to do with the file name. It can be
1091 any or-combination of the ::wxPathNormalize enumeration values.
1093 If not empty, this directory will be used instead of current
1094 working directory in normalization (see @c wxPATH_NORM_ABSOLUTE).
1096 The file name format to use when processing the paths, native by default.
1098 @return @true if normalization was successfully or @false otherwise.
1100 bool Normalize(int flags
= wxPATH_NORM_ALL
,
1101 const wxString
& cwd
= wxEmptyString
,
1102 wxPathFormat format
= wxPATH_NATIVE
);
1105 Prepends a directory to the file path.
1106 Please see AppendDir() for important notes.
1108 void PrependDir(const wxString
& dir
);
1111 Removes the specified directory component from the path.
1115 void RemoveDir(size_t pos
);
1118 Removes last directory component from the path.
1120 void RemoveLastDir();
1123 If the path contains the value of the environment variable named @a envname
1124 then this function replaces it with the string obtained from
1125 wxString::Format(replacementFmtString, value_of_envname_variable).
1127 This function is useful to make the path shorter or to make it dependent
1128 from a certain environment variable.
1129 Normalize() with @c wxPATH_NORM_ENV_VARS can perform the opposite of this
1130 function (depending on the value of @a replacementFmtString).
1132 The name and extension of this filename are not modified.
1136 wxFileName fn("/usr/openwin/lib/someFile");
1137 fn.ReplaceEnvVariable("OPENWINHOME");
1138 // now fn.GetFullPath() == "$OPENWINHOME/lib/someFile"
1143 @return @true if the operation was successful (which doesn't mean
1144 that something was actually replaced, just that ::wxGetEnv
1147 bool ReplaceEnvVariable(const wxString
& envname
,
1148 const wxString
& replacementFmtString
= "$%s",
1149 wxPathFormat format
= wxPATH_NATIVE
);
1152 Replaces, if present in the path, the home directory for the given user
1153 (see ::wxGetHomeDir) with a tilde (~).
1155 Normalize() with @c wxPATH_NORM_TILDE performs the opposite of this
1158 The name and extension of this filename are not modified.
1162 @return @true if the operation was successful (which doesn't mean
1163 that something was actually replaced, just that ::wxGetHomeDir
1166 bool ReplaceHomeDir(wxPathFormat format
= wxPATH_NATIVE
);
1170 Deletes the specified directory from the file system.
1173 Can contain one of wxPATH_RMDIR_FULL or wxPATH_RMDIR_RECURSIVE. By
1174 default contains neither so the directory will not be removed
1177 @return Returns @true if the directory was successfully deleted, @false
1180 bool Rmdir(int flags
= 0) const;
1183 Deletes the specified directory from the file system.
1186 The directory to delete
1188 Can contain one of wxPATH_RMDIR_FULL or wxPATH_RMDIR_RECURSIVE. By
1189 default contains neither so the directory will not be removed
1192 @return Returns @true if the directory was successfully deleted, @false
1195 static bool Rmdir(const wxString
& dir
, int flags
= 0);
1198 Compares the filename using the rules of this platform.
1200 bool SameAs(const wxFileName
& filepath
,
1201 wxPathFormat format
= wxPATH_NATIVE
) const;
1204 Changes the current working directory.
1206 bool SetCwd() const;
1209 Changes the current working directory.
1211 static bool SetCwd(const wxString
& cwd
);
1214 Sets the extension of the file name to be an empty extension.
1215 This is different from having no extension at all as the file
1216 name will have a trailing dot after a call to this method.
1218 @see SetExt(), ClearExt()
1223 Sets the extension of the file name.
1225 Setting an empty string as the extension will remove the extension
1226 resulting in a file name without a trailing dot, unlike a call to
1229 @see SetEmptyExt(), ClearExt()
1231 void SetExt(const wxString
& ext
);
1234 The full name is the file name and extension (but without the path).
1236 void SetFullName(const wxString
& fullname
);
1239 Sets the name part (without extension).
1243 void SetName(const wxString
& name
);
1248 The @a path argument includes both the path and the volume, if
1249 supported by @a format.
1251 Calling this function doesn't affect the name and extension components,
1252 to change them as well you can use Assign() or just an assignment
1257 void SetPath(const wxString
& path
, wxPathFormat format
= wxPATH_NATIVE
);
1260 Sets permissions for this file or directory.
1263 The new permissions: this should be a combination of
1264 ::wxPosixPermissions enum elements.
1268 @note If this is a symbolic link and it should not be followed
1269 this call will fail.
1271 @return @true on success, @false if an error occurred (for example,
1272 the file doesn't exist).
1274 bool SetPermissions(int permissions
)
1277 Sets the file creation and last access/modification times (any of the pointers
1280 Notice that the file creation time can't be changed under Unix, so @a
1281 dtCreate is ignored there (but @true is still returned). Under Windows
1282 all three times can be set.
1284 bool SetTimes(const wxDateTime
* dtAccess
,
1285 const wxDateTime
* dtMod
,
1286 const wxDateTime
* dtCreate
) const;
1289 Sets the volume specifier.
1291 void SetVolume(const wxString
& volume
);
1294 Return whether some operations will follow symlink.
1296 By default, file operations "follow symlink", i.e. operate on its
1297 target and not on the symlink itself. See DontFollowLink() for more
1302 bool ShouldFollowLink() const;
1306 This function splits a full file name into components: the volume (with the
1307 first version) path (including the volume in the second version), the base name
1310 Any of the output parameters (@e volume, @e path, @a name or @e ext) may
1311 be @NULL if you are not interested in the value of a particular component.
1312 Also, @a fullpath may be empty on entry.
1313 On return, @a path contains the file path (without the trailing separator),
1314 @a name contains the file name and @a ext contains the file extension
1315 without leading dot. All three of them may be empty if the corresponding
1316 component is. The old contents of the strings pointed to by these parameters
1317 will be overwritten in any case (if the pointers are not @NULL).
1319 Note that for a filename "foo." the extension is present, as indicated by the
1320 trailing dot, but empty. If you need to cope with such cases, you should use
1321 @a hasExt instead of relying on testing whether @a ext is empty or not.
1323 static void SplitPath(const wxString
& fullpath
,
1328 bool* hasExt
= NULL
,
1329 wxPathFormat format
= wxPATH_NATIVE
);
1330 static void SplitPath(const wxString
& fullpath
,
1335 wxPathFormat format
);
1336 static void SplitPath(const wxString
& fullpath
,
1340 wxPathFormat format
= wxPATH_NATIVE
);
1344 Splits the given @a fullpath into the volume part (which may be empty) and
1345 the pure path part, not containing any volume.
1349 static void SplitVolume(const wxString
& fullpath
,
1352 wxPathFormat format
= wxPATH_NATIVE
);
1356 Strip the file extension.
1358 This function does more than just removing everything after the last
1359 period from the string, for example it will return the string ".vimrc"
1360 unchanged because the part after the period is not an extension but the
1361 file name in this case. You can use wxString::BeforeLast() to really
1362 get just the part before the last period (but notice that that function
1363 returns empty string if period is not present at all unlike this
1364 function which returns the @a fullname unchanged in this case).
1367 File path including name and, optionally, extension.
1370 File path without extension
1374 static wxString
StripExtension(const wxString
& fullname
);
1377 Sets the access and modification times to the current moment.
1382 Returns @true if the filenames are different. The string @e filenames
1383 is interpreted as a path in the native filename format.
1385 bool operator!=(const wxFileName
& filename
) const;
1388 Returns @true if the filenames are different. The string @e filenames
1389 is interpreted as a path in the native filename format.
1391 bool operator!=(const wxString
& filename
) const;
1394 Returns @true if the filenames are equal. The string @e filenames is
1395 interpreted as a path in the native filename format.
1397 bool operator==(const wxFileName
& filename
) const;
1400 Returns @true if the filenames are equal. The string @e filenames is
1401 interpreted as a path in the native filename format.
1403 bool operator==(const wxString
& filename
) const;
1406 Assigns the new value to this filename object.
1408 wxFileName
& operator=(const wxFileName
& filename
);
1411 Assigns the new value to this filename object.
1413 wxFileName
& operator=(const wxString
& filename
);