#include </home/zeitlin/src/wx/github/interface/wx/filename.h>
wxFileName encapsulates a file name.
This class serves two purposes: first, it provides the functions to split the file names into components and to recombine these components in the full file name which can then be passed to the OS file functions (and wxWidgets functions wrapping them). Second, it includes the functions for working with the files itself. Note that to change the file data you should use wxFile class instead. wxFileName provides functions for working with the file attributes.
When working with directory names (i.e. without filename and extension) make sure not to misuse the file name part of this class with the last directory. Instead initialize the wxFileName instance like this:
wxFileName dirname( "C:\mydir", "" ); MyMethod( dirname.GetPath() );
The same can be done using the static method wxFileName::DirName():
wxFileName dirname = wxFileName::DirName( "C:\mydir" ); MyMethod( dirname.GetPath() );
Accordingly, methods dealing with directories or directory names like wxFileName::IsDirReadable() use wxFileName::GetPath() whereas methods dealing with file names like wxFileName::IsFileReadable() use wxFileName::GetFullPath().
If it is not known whether a string contains a directory name or a complete file name (such as when interpreting user input) you need to use the static function wxFileName::DirExists() (or its identical variants wxDir::Exists() and wxDirExists()) and construct the wxFileName instance accordingly. This will only work if the directory actually exists, of course:
wxString user_input; // get input from user wxFileName fname; if (wxDirExists(user_input)) fname.AssignDir( user_input ); else fname.Assign( user_input );
Please note that many wxFileName methods accept the path format argument which is by wxPATH_NATIVE
by default meaning to use the path format native for the current platform. The path format affects the operation of wxFileName functions in several ways: first and foremost, it defines the path separator character to use, but it also affects other things such as whether the path has the drive part or not. See wxPathFormat for more info.
wxFileName currently supports the file names in the Unix, DOS/Windows, Mac OS and VMS formats. Although these formats are quite different, wxFileName tries to treat them all in the same generic way. It supposes that all file names consist of the following parts: the volume (also known as drive under Windows or device under VMS), the path which is a sequence of directory names separated by the path separators and the full filename itself which, in turn, is composed from the base file name and the extension. All of the individual components of the file name may be empty and, for example, the volume name is always empty under Unix, but if they are all empty simultaneously, the filename object is considered to be in an invalid state and wxFileName::IsOk() returns false for it.
File names can be case-sensitive or not, the function wxFileName::IsCaseSensitive() allows to determine this. The rules for determining whether the file name is absolute or relative also depend on the file name format and the only portable way to answer this question is to use wxFileName::IsAbsolute() or wxFileName::IsRelative() method.
Note that on Windows,"X:" refers to the current working directory on drive X. Therefore, a wxFileName instance constructed from for example "X:dir/file.ext" treats the portion beyond drive separator as being relative to that directory. To ensure that the filename is absolute, you may use wxFileName::MakeAbsolute(). There is also an inverse function wxFileName::MakeRelativeTo() which undoes what wxFileName::Normalize(wxPATH_NORM_DOTS) does. Other functions returning information about the file format provided by this class are wxFileName::GetVolumeSeparator(), wxFileName::IsPathSeparator().
You can initialize a wxFileName instance using one of the following functions:
Before doing other tests, you should use wxFileName::IsOk() to verify that the filename is well defined. If it is, FileExists() can be used to test whether a file with such name exists and wxFileName::DirExists() can be used to test for directory existence. File names should be compared using the wxFileName::SameAs() method or wxFileName::operator==(). For testing basic access modes, you can use:
These functions allow to examine and modify the individual directories of the path:
To change the components of the file name individually you can use the following functions:
You can initialize a wxFileName instance using one of the following functions:
These methods allow to work with the file creation, access and modification times. Note that not all filesystems under all platforms implement these times in the same way. For example, the access time under Windows has a resolution of one day (so it is really the access date and not time). The access time may be updated when the file is executed or not depending on the platform.
Other file system operations functions are:
wxString | GetHumanReadableSize (const wxString &failmsg=_("Not available"), int precision=1, wxSizeConvention conv=wxSIZE_CONV_TRADITIONAL) const |
Returns the representation of the file size in a human-readable form. | |
static wxString | GetHumanReadableSize (const wxULongLong &bytes, const wxString &nullsize=_("Not available"), int precision=1, wxSizeConvention conv=wxSIZE_CONV_TRADITIONAL) |
Returns the representation of the file size in a human-readable form. | |
Public Member Functions | |
wxFileName () | |
Default constructor. | |
wxFileName (const wxFileName &filename) | |
Copy constructor. | |
wxFileName (const wxString &fullpath, wxPathFormat format=wxPATH_NATIVE) | |
Constructor taking a full filename. | |
wxFileName (const wxString &path, const wxString &name, wxPathFormat format=wxPATH_NATIVE) | |
Constructor a directory name and file name. | |
wxFileName (const wxString &path, const wxString &name, const wxString &ext, wxPathFormat format=wxPATH_NATIVE) | |
Constructor from a directory name, base file name and extension. | |
wxFileName (const wxString &volume, const wxString &path, const wxString &name, const wxString &ext, wxPathFormat format=wxPATH_NATIVE) | |
Constructor from a volume name, a directory name, base file name and extension. | |
void | AppendDir (const wxString &dir) |
Appends a directory component to the path. | |
void | Assign (const wxFileName &filepath) |
Creates the file name from another filename object. | |
void | Assign (const wxString &fullpath, wxPathFormat format=wxPATH_NATIVE) |
Creates the file name from a full file name with a path. | |
void | Assign (const wxString &volume, const wxString &path, const wxString &name, const wxString &ext, bool hasExt, wxPathFormat format=wxPATH_NATIVE) |
Creates the file name from volume, path, name and extension. | |
void | Assign (const wxString &volume, const wxString &path, const wxString &name, const wxString &ext, wxPathFormat format=wxPATH_NATIVE) |
Creates the file name from volume, path, name and extension. | |
void | Assign (const wxString &path, const wxString &name, wxPathFormat format=wxPATH_NATIVE) |
Creates the file name from file path and file name. | |
void | Assign (const wxString &path, const wxString &name, const wxString &ext, wxPathFormat format=wxPATH_NATIVE) |
Creates the file name from path, name and extension. | |
void | AssignCwd (const wxString &volume=wxEmptyString) |
Makes this object refer to the current working directory on the specified volume (or current volume if volume is empty). | |
void | AssignDir (const wxString &dir, wxPathFormat format=wxPATH_NATIVE) |
Sets this file name object to the given directory name. | |
void | AssignHomeDir () |
Sets this file name object to the home directory. | |
void | AssignTempFileName (const wxString &prefix) |
The function calls CreateTempFileName() to create a temporary file and sets this object to the name of the file. | |
void | AssignTempFileName (const wxString &prefix, wxFile *fileTemp) |
The function calls CreateTempFileName() to create a temporary file name and open fileTemp with it. | |
void | AssignTempFileName (const wxString &prefix, wxFFile *fileTemp) |
The function calls CreateTempFileName() to create a temporary file name and open fileTemp with it. | |
void | Clear () |
Reset all components to default, uninitialized state. | |
void | ClearExt () |
Removes the extension from the file name resulting in a file name with no trailing dot. | |
bool | DirExists () const |
Returns true if the directory with this name exists. | |
bool | Exists () const |
Calls the static overload of this function with the full path of this object. | |
bool | FileExists () const |
Returns true if the file with this name exists. | |
size_t | GetDirCount () const |
Returns the number of directories in the file name. | |
const wxArrayString & | GetDirs () const |
Returns the directories in string array form. | |
wxString | GetExt () const |
Returns the file name extension. | |
wxString | GetFullName () const |
Returns the full name (including extension but excluding directories). | |
wxString | GetFullPath (wxPathFormat format=wxPATH_NATIVE) const |
Returns the full path with name and extension. | |
wxString | GetLongPath () const |
Return the long form of the path (returns identity on non-Windows platforms). | |
wxDateTime | GetModificationTime () const |
Returns the last time the file was last modified. | |
wxString | GetName () const |
Returns the name part of the filename (without extension). | |
wxString | GetPath (int flags=wxPATH_GET_VOLUME, wxPathFormat format=wxPATH_NATIVE) const |
Returns the path part of the filename (without the name or extension). | |
wxString | GetPathWithSep (wxPathFormat format=wxPATH_NATIVE) const |
Returns the path with the trailing separator, useful for appending the name to the given path. | |
wxString | GetShortPath () const |
Return the short form of the path (returns identity on non-Windows platforms). | |
wxULongLong | GetSize () const |
Returns the size of the file If the file does not exist or its size could not be read (because e.g. | |
bool | GetTimes (wxDateTime *dtAccess, wxDateTime *dtMod, wxDateTime *dtCreate) const |
Returns the last access, last modification and creation times. | |
wxString | GetVolume () const |
Returns the string containing the volume for this file name, empty if it doesn't have one or if the file system doesn't support volumes at all (for example, Unix). | |
bool | HasExt () const |
Returns true if an extension is present. | |
bool | HasName () const |
Returns true if a name is present. | |
bool | HasVolume () const |
Returns true if a volume specifier is present. | |
void | InsertDir (size_t before, const wxString &dir) |
Inserts a directory component before the zero-based position in the directory list. | |
bool | IsAbsolute (wxPathFormat format=wxPATH_NATIVE) const |
Returns true if this filename is absolute. | |
bool | IsDir () const |
Returns true if this object represents a directory, false otherwise (i.e. | |
bool | IsDirReadable () const |
Returns true if the directory component of this instance is an existing directory and this process has read permissions on it. | |
bool | IsDirWritable () const |
Returns true if the directory component of this instance is an existing directory and this process has write permissions on it. | |
bool | IsFileExecutable () const |
Returns true if a file with this name exists and if this process has execute permissions on it. | |
bool | IsFileReadable () const |
Returns true if a file with this name exists and if this process has read permissions on it. | |
bool | IsFileWritable () const |
Returns true if a file with this name exists and if this process has write permissions on it. | |
bool | IsOk () const |
Returns true if the filename is valid, false if it is not initialized yet. | |
bool | IsRelative (wxPathFormat format=wxPATH_NATIVE) const |
Returns true if this filename is not absolute. | |
bool | MacSetDefaultTypeAndCreator () |
On Mac OS, looks up the appropriate type and creator from the registration and then sets it. | |
bool | MakeAbsolute (const wxString &cwd=wxEmptyString, wxPathFormat format=wxPATH_NATIVE) |
Make the file name absolute. | |
bool | MakeRelativeTo (const wxString &pathBase=wxEmptyString, wxPathFormat format=wxPATH_NATIVE) |
This function tries to put this file name in a form relative to pathBase. | |
bool | Mkdir (int perm=wxS_DIR_DEFAULT, int flags=0) const |
Creates a directory. | |
bool | Normalize (int flags=wxPATH_NORM_ALL, const wxString &cwd=wxEmptyString, wxPathFormat format=wxPATH_NATIVE) |
Normalize the path. | |
void | PrependDir (const wxString &dir) |
Prepends a directory to the file path. | |
void | RemoveDir (size_t pos) |
Removes the specified directory component from the path. | |
void | RemoveLastDir () |
Removes last directory component from the path. | |
bool | ReplaceEnvVariable (const wxString &envname, const wxString &replacementFmtString="$%s", wxPathFormat format=wxPATH_NATIVE) |
If the path contains the value of the environment variable named envname then this function replaces it with the string obtained from wxString::Format(replacementFmtString, value_of_envname_variable). | |
bool | ReplaceHomeDir (wxPathFormat format=wxPATH_NATIVE) |
Replaces, if present in the path, the home directory for the given user (see wxGetHomeDir) with a tilde (~). | |
bool | Rmdir (int flags=0) const |
Deletes the specified directory from the file system. | |
bool | SameAs (const wxFileName &filepath, wxPathFormat format=wxPATH_NATIVE) const |
Compares the filename using the rules of this platform. | |
bool | SetCwd () const |
Changes the current working directory. | |
void | SetEmptyExt () |
Sets the extension of the file name to be an empty extension. | |
void | SetExt (const wxString &ext) |
Sets the extension of the file name. | |
void | SetFullName (const wxString &fullname) |
The full name is the file name and extension (but without the path). | |
void | SetName (const wxString &name) |
Sets the name part (without extension). | |
void | SetPath (const wxString &path, wxPathFormat format=wxPATH_NATIVE) |
Sets the path. | |
bool | SetTimes (const wxDateTime *dtAccess, const wxDateTime *dtMod, const wxDateTime *dtCreate) const |
Sets the file creation and last access/modification times (any of the pointers may be NULL). | |
void | SetVolume (const wxString &volume) |
Sets the volume specifier. | |
bool | Touch () const |
Sets the access and modification times to the current moment. | |
bool | operator!= (const wxFileName &filename) const |
Returns true if the filenames are different. | |
bool | operator!= (const wxString &filename) const |
Returns true if the filenames are different. | |
bool | operator== (const wxFileName &filename) const |
Returns true if the filenames are equal. | |
bool | operator== (const wxString &filename) const |
Returns true if the filenames are equal. | |
wxFileName & | operator= (const wxFileName &filename) |
Assigns the new value to this filename object. | |
wxFileName & | operator= (const wxString &filename) |
Assigns the new value to this filename object. | |
Static Public Member Functions | |
static bool | DirExists (const wxString &dir) |
Returns true if the directory with name dir exists. | |
static wxFileName | DirName (const wxString &dir, wxPathFormat format=wxPATH_NATIVE) |
Returns the object corresponding to the directory with the given name. | |
static bool | Exists (const wxString &path) |
Returns true if either a file or a directory or something else with this name exists in the file system. | |
static bool | FileExists (const wxString &file) |
Returns true if the file with name file exists. | |
static wxFileName | FileName (const wxString &file, wxPathFormat format=wxPATH_NATIVE) |
Returns the file name object corresponding to the given file. | |
static wxString | GetCwd (const wxString &volume=wxEmptyString) |
Retrieves the value of the current working directory on the specified volume. | |
static wxString | GetForbiddenChars (wxPathFormat format=wxPATH_NATIVE) |
Returns the characters that can't be used in filenames and directory names for the specified format. | |
static wxPathFormat | GetFormat (wxPathFormat format=wxPATH_NATIVE) |
Returns the canonical path format for this platform. | |
static wxString | GetHomeDir () |
Returns the home directory. | |
static wxUniChar | GetPathSeparator (wxPathFormat format=wxPATH_NATIVE) |
Returns the usually used path separator for this format. | |
static wxString | GetPathSeparators (wxPathFormat format=wxPATH_NATIVE) |
Returns the string containing all the path separators for this format. | |
static wxString | GetPathTerminators (wxPathFormat format=wxPATH_NATIVE) |
Returns the string of characters which may terminate the path part. | |
static wxULongLong | GetSize (const wxString &filename) |
Returns the size of the file If the file does not exist or its size could not be read (because e.g. | |
static wxString | GetTempDir () |
Returns the directory used for temporary files. | |
static wxString | GetVolumeSeparator (wxPathFormat format=wxPATH_NATIVE) |
Returns the string separating the volume from the path for this format. | |
static wxString | GetVolumeString (char drive, int flags=wxPATH_GET_SEPARATOR) |
This function builds a volume path string, for example "C:\\". | |
static bool | IsCaseSensitive (wxPathFormat format=wxPATH_NATIVE) |
Returns true if the file names of this type are case-sensitive. | |
static bool | IsDirReadable (const wxString &dir) |
Returns true if the given dir is an existing directory and this process has read permissions on it. | |
static bool | IsDirWritable (const wxString &dir) |
Returns true if the given dir is an existing directory and this process has write permissions on it. | |
static bool | IsFileExecutable (const wxString &file) |
Returns true if a file with this name exists and if this process has execute permissions on it. | |
static bool | IsFileReadable (const wxString &file) |
Returns true if a file with this name exists and if this process has read permissions on it. | |
static bool | IsFileWritable (const wxString &file) |
Returns true if a file with this name exists and if this process has write permissions on it. | |
static bool | IsPathSeparator (wxChar ch, wxPathFormat format=wxPATH_NATIVE) |
Returns true if the char is a path separator for this format. | |
static bool | IsMSWUniqueVolumeNamePath (const wxString &path, wxPathFormat format=wxPATH_NATIVE) |
Returns true if the volume part of the path is a unique volume name. | |
static bool | MacFindDefaultTypeAndCreator (const wxString &ext, wxUint32 *type, wxUint32 *creator) |
On Mac OS, gets the common type and creator for the given extension. | |
static void | MacRegisterDefaultTypeAndCreator (const wxString &ext, wxUint32 type, wxUint32 creator) |
On Mac OS, registers application defined extensions and their default type and creator. | |
static bool | Mkdir (const wxString &dir, int perm=wxS_DIR_DEFAULT, int flags=0) |
Creates a directory. | |
static bool | Rmdir (const wxString &dir, int flags=0) |
Deletes the specified directory from the file system. | |
static bool | SetCwd (const wxString &cwd) |
Changes the current working directory. | |
static void | SplitVolume (const wxString &fullpath, wxString *volume, wxString *path, wxPathFormat format=wxPATH_NATIVE) |
Splits the given fullpath into the volume part (which may be empty) and the pure path part, not containing any volume. | |
static wxString | StripExtension (const wxString &fullname) |
Strip the file extension. | |
static wxString | CreateTempFileName (const wxString &prefix, wxFile *fileTemp=NULL) |
Returns a temporary file name starting with the given prefix. | |
static wxString | CreateTempFileName (const wxString &prefix, wxFFile *fileTemp=NULL) |
Returns a temporary file name starting with the given prefix. | |
static void | SplitPath (const wxString &fullpath, wxString *volume, wxString *path, wxString *name, wxString *ext, bool *hasExt=NULL, wxPathFormat format=wxPATH_NATIVE) |
This function splits a full file name into components: the volume (with the first version) path (including the volume in the second version), the base name and the extension. | |
static void | SplitPath (const wxString &fullpath, wxString *volume, wxString *path, wxString *name, wxString *ext, wxPathFormat format) |
This function splits a full file name into components: the volume (with the first version) path (including the volume in the second version), the base name and the extension. | |
static void | SplitPath (const wxString &fullpath, wxString *path, wxString *name, wxString *ext, wxPathFormat format=wxPATH_NATIVE) |
This function splits a full file name into components: the volume (with the first version) path (including the volume in the second version), the base name and the extension. |
wxFileName::wxFileName | ( | ) |
Default constructor.
wxFileName::wxFileName | ( | const wxFileName & | filename | ) |
Copy constructor.
wxFileName::wxFileName | ( | const wxString & | fullpath, |
wxPathFormat | format = wxPATH_NATIVE |
||
) |
Constructor taking a full filename.
If it terminates with a '/', a directory path is constructed (the name will be empty), otherwise a file name and extension are extracted from it.
wxFileName::wxFileName | ( | const wxString & | path, |
const wxString & | name, | ||
wxPathFormat | format = wxPATH_NATIVE |
||
) |
Constructor a directory name and file name.
wxFileName::wxFileName | ( | const wxString & | path, |
const wxString & | name, | ||
const wxString & | ext, | ||
wxPathFormat | format = wxPATH_NATIVE |
||
) |
Constructor from a directory name, base file name and extension.
wxFileName::wxFileName | ( | const wxString & | volume, |
const wxString & | path, | ||
const wxString & | name, | ||
const wxString & | ext, | ||
wxPathFormat | format = wxPATH_NATIVE |
||
) |
Constructor from a volume name, a directory name, base file name and extension.
void wxFileName::AppendDir | ( | const wxString & | dir | ) |
Appends a directory component to the path.
This component should contain a single directory name level, i.e. not contain any path or volume separators nor should it be empty, otherwise the function does nothing (and generates an assert failure in debug build).
void wxFileName::Assign | ( | const wxFileName & | filepath | ) |
Creates the file name from another filename object.
void wxFileName::Assign | ( | const wxString & | volume, |
const wxString & | path, | ||
const wxString & | name, | ||
const wxString & | ext, | ||
bool | hasExt, | ||
wxPathFormat | format = wxPATH_NATIVE |
||
) |
Creates the file name from volume, path, name and extension.
void wxFileName::Assign | ( | const wxString & | volume, |
const wxString & | path, | ||
const wxString & | name, | ||
const wxString & | ext, | ||
wxPathFormat | format = wxPATH_NATIVE |
||
) |
Creates the file name from volume, path, name and extension.
void wxFileName::Assign | ( | const wxString & | fullpath, |
wxPathFormat | format = wxPATH_NATIVE |
||
) |
Creates the file name from a full file name with a path.
void wxFileName::Assign | ( | const wxString & | path, |
const wxString & | name, | ||
wxPathFormat | format = wxPATH_NATIVE |
||
) |
Creates the file name from file path and file name.
void wxFileName::Assign | ( | const wxString & | path, |
const wxString & | name, | ||
const wxString & | ext, | ||
wxPathFormat | format = wxPATH_NATIVE |
||
) |
Creates the file name from path, name and extension.
void wxFileName::AssignCwd | ( | const wxString & | volume = wxEmptyString | ) |
Makes this object refer to the current working directory on the specified volume (or current volume if volume is empty).
void wxFileName::AssignDir | ( | const wxString & | dir, |
wxPathFormat | format = wxPATH_NATIVE |
||
) |
Sets this file name object to the given directory name.
The name and extension will be empty.
void wxFileName::AssignHomeDir | ( | ) |
Sets this file name object to the home directory.
void wxFileName::AssignTempFileName | ( | const wxString & | prefix | ) |
The function calls CreateTempFileName() to create a temporary file and sets this object to the name of the file.
If a temporary file couldn't be created, the object is put into an invalid state (see IsOk()).
The function calls CreateTempFileName() to create a temporary file name and open fileTemp with it.
If the file couldn't be opened, the object is put into an invalid state (see IsOk()).
The function calls CreateTempFileName() to create a temporary file name and open fileTemp with it.
If the file couldn't be opened, the object is put into an invalid state (see IsOk()).
void wxFileName::Clear | ( | ) |
Reset all components to default, uninitialized state.
void wxFileName::ClearExt | ( | ) |
Removes the extension from the file name resulting in a file name with no trailing dot.
static wxString wxFileName::CreateTempFileName | ( | const wxString & | prefix, |
wxFile * | fileTemp = NULL |
||
) | [static] |
Returns a temporary file name starting with the given prefix.
If the prefix is an absolute path, the temporary file is created in this directory, otherwise it is created in the default system directory for the temporary files or in the current directory.
If the function succeeds, the temporary file is actually created. If fileTemp is not NULL, this file will be opened using the name of the temporary file. When possible, this is done in an atomic way ensuring that no race condition occurs between the temporary file name generation and opening it which could often lead to security compromise on the multiuser systems. If fileTemp is NULL, the file is only created, but not opened. Under Unix, the temporary file will have read and write permissions for the owner only to minimize the security problems.
prefix | Prefix to use for the temporary file name construction |
fileTemp | The file to open or NULL to just get the name |
static wxString wxFileName::CreateTempFileName | ( | const wxString & | prefix, |
wxFFile * | fileTemp = NULL |
||
) | [static] |
Returns a temporary file name starting with the given prefix.
If the prefix is an absolute path, the temporary file is created in this directory, otherwise it is created in the default system directory for the temporary files or in the current directory.
If the function succeeds, the temporary file is actually created. If fileTemp is not NULL, this file will be opened using the name of the temporary file. When possible, this is done in an atomic way ensuring that no race condition occurs between the temporary file name generation and opening it which could often lead to security compromise on the multiuser systems. If fileTemp is NULL, the file is only created, but not opened. Under Unix, the temporary file will have read and write permissions for the owner only to minimize the security problems.
prefix | Prefix to use for the temporary file name construction |
fileTemp | The file to open or NULL to just get the name |
bool wxFileName::DirExists | ( | ) | const |
Returns true if the directory with this name exists.
Notice that this function tests the directory part of this object, i.e. the string returned by GetPath(), and not the full path returned by GetFullPath().
static bool wxFileName::DirExists | ( | const wxString & | dir | ) | [static] |
Returns true if the directory with name dir exists.
static wxFileName wxFileName::DirName | ( | const wxString & | dir, |
wxPathFormat | format = wxPATH_NATIVE |
||
) | [static] |
Returns the object corresponding to the directory with the given name.
The dir parameter may have trailing path separator or not.
bool wxFileName::Exists | ( | ) | const |
Calls the static overload of this function with the full path of this object.
static bool wxFileName::Exists | ( | const wxString & | path | ) | [static] |
Returns true if either a file or a directory or something else with this name exists in the file system.
This method is equivalent to
FileExists() || DirExists()
under most systems but under Unix it also returns true if the file identifies a special file system object such as a device, a socket or a FIFO.
bool wxFileName::FileExists | ( | ) | const |
Returns true if the file with this name exists.
static bool wxFileName::FileExists | ( | const wxString & | file | ) | [static] |
Returns true if the file with name file exists.
static wxFileName wxFileName::FileName | ( | const wxString & | file, |
wxPathFormat | format = wxPATH_NATIVE |
||
) | [static] |
Returns the file name object corresponding to the given file.
This function exists mainly for symmetry with DirName().
static wxString wxFileName::GetCwd | ( | const wxString & | volume = wxEmptyString | ) | [static] |
Retrieves the value of the current working directory on the specified volume.
If the volume is empty, the program's current working directory is returned for the current volume.
size_t wxFileName::GetDirCount | ( | ) | const |
Returns the number of directories in the file name.
const wxArrayString& wxFileName::GetDirs | ( | ) | const |
Returns the directories in string array form.
wxString wxFileName::GetExt | ( | ) | const |
Returns the file name extension.
static wxString wxFileName::GetForbiddenChars | ( | wxPathFormat | format = wxPATH_NATIVE | ) | [static] |
Returns the characters that can't be used in filenames and directory names for the specified format.
static wxPathFormat wxFileName::GetFormat | ( | wxPathFormat | format = wxPATH_NATIVE | ) | [static] |
Returns the canonical path format for this platform.
wxString wxFileName::GetFullName | ( | ) | const |
Returns the full name (including extension but excluding directories).
wxString wxFileName::GetFullPath | ( | wxPathFormat | format = wxPATH_NATIVE | ) | const |
Returns the full path with name and extension.
static wxString wxFileName::GetHomeDir | ( | ) | [static] |
Returns the home directory.
wxString wxFileName::GetHumanReadableSize | ( | const wxString & | failmsg = _("Not available") , |
int | precision = 1 , |
||
wxSizeConvention | conv = wxSIZE_CONV_TRADITIONAL |
||
) | const |
Returns the representation of the file size in a human-readable form.
In the first version, the size of this file is used. In the second one, the specified size bytes is used.
If the file size could not be retrieved or bytes is wxInvalidSize or zero, the failmsg
string is returned.
Otherwise the returned string is a floating-point number with precision
decimal digits followed by the abbreviation of the unit used. By default the traditional, although incorrect, convention of using SI units for multiples of 1024 is used, i.e. returned string will use suffixes of B, KB, MB, GB, TB for bytes, kilobytes, megabytes, gigabytes and terabytes respectively. With the IEC convention the names of the units are changed to B, KiB, MiB, GiB and TiB for bytes, kibibytes, mebibytes, gibibytes and tebibytes. Finally, with SI convention the same B, KB, MB, GB and TB suffixes are used but in their correct SI meaning, i.e. as multiples of 1000 and not 1024.
Support for the different size conventions is new in wxWidgets 2.9.1, in previous versions only the traditional convention was implemented.
static wxString wxFileName::GetHumanReadableSize | ( | const wxULongLong & | bytes, |
const wxString & | nullsize = _("Not available") , |
||
int | precision = 1 , |
||
wxSizeConvention | conv = wxSIZE_CONV_TRADITIONAL |
||
) | [static] |
Returns the representation of the file size in a human-readable form.
In the first version, the size of this file is used. In the second one, the specified size bytes is used.
If the file size could not be retrieved or bytes is wxInvalidSize or zero, the failmsg
string is returned.
Otherwise the returned string is a floating-point number with precision
decimal digits followed by the abbreviation of the unit used. By default the traditional, although incorrect, convention of using SI units for multiples of 1024 is used, i.e. returned string will use suffixes of B, KB, MB, GB, TB for bytes, kilobytes, megabytes, gigabytes and terabytes respectively. With the IEC convention the names of the units are changed to B, KiB, MiB, GiB and TiB for bytes, kibibytes, mebibytes, gibibytes and tebibytes. Finally, with SI convention the same B, KB, MB, GB and TB suffixes are used but in their correct SI meaning, i.e. as multiples of 1000 and not 1024.
Support for the different size conventions is new in wxWidgets 2.9.1, in previous versions only the traditional convention was implemented.
wxString wxFileName::GetLongPath | ( | ) | const |
Return the long form of the path (returns identity on non-Windows platforms).
wxDateTime wxFileName::GetModificationTime | ( | ) | const |
Returns the last time the file was last modified.
wxString wxFileName::GetName | ( | ) | const |
Returns the name part of the filename (without extension).
wxString wxFileName::GetPath | ( | int | flags = wxPATH_GET_VOLUME , |
wxPathFormat | format = wxPATH_NATIVE |
||
) | const |
Returns the path part of the filename (without the name or extension).
The possible flags values are:
"/"
on Unix or "C:\"
on Windows), then the returned path will contain trailing separator even with wxPATH_NO_SEPARATOR
. static wxUniChar wxFileName::GetPathSeparator | ( | wxPathFormat | format = wxPATH_NATIVE | ) | [static] |
Returns the usually used path separator for this format.
For all formats but wxPATH_DOS
there is only one path separator anyhow, but for DOS there are two of them and the native one, i.e. the backslash is returned by this method.
static wxString wxFileName::GetPathSeparators | ( | wxPathFormat | format = wxPATH_NATIVE | ) | [static] |
Returns the string containing all the path separators for this format.
For all formats but wxPATH_DOS
this string contains only one character but for DOS and Windows both '/'
and '\'
may be used as separators.
static wxString wxFileName::GetPathTerminators | ( | wxPathFormat | format = wxPATH_NATIVE | ) | [static] |
Returns the string of characters which may terminate the path part.
This is the same as GetPathSeparators() except for VMS path format where ] is used at the end of the path part.
wxString wxFileName::GetPathWithSep | ( | wxPathFormat | format = wxPATH_NATIVE | ) | const |
Returns the path with the trailing separator, useful for appending the name to the given path.
This is the same as calling
GetPath(wxPATH_GET_VOLUME | wxPATH_GET_SEPARATOR, format)
wxString wxFileName::GetShortPath | ( | ) | const |
Return the short form of the path (returns identity on non-Windows platforms).
wxULongLong wxFileName::GetSize | ( | ) | const |
Returns the size of the file If the file does not exist or its size could not be read (because e.g.
the file is locked by another process) the returned value is wxInvalidSize.
static wxULongLong wxFileName::GetSize | ( | const wxString & | filename | ) | [static] |
Returns the size of the file If the file does not exist or its size could not be read (because e.g.
the file is locked by another process) the returned value is wxInvalidSize.
static wxString wxFileName::GetTempDir | ( | ) | [static] |
Returns the directory used for temporary files.
bool wxFileName::GetTimes | ( | wxDateTime * | dtAccess, |
wxDateTime * | dtMod, | ||
wxDateTime * | dtCreate | ||
) | const |
Returns the last access, last modification and creation times.
The last access time is updated whenever the file is read or written (or executed in the case of Windows), last modification time is only changed when the file is written to. Finally, the creation time is indeed the time when the file was created under Windows and the inode change time under Unix (as it is impossible to retrieve the real file creation time there anyhow) which can also be changed by many operations after the file creation.
If no filename or extension is specified in this instance of wxFileName (and therefore IsDir() returns true) then this function will return the directory times of the path specified by GetPath(), otherwise the file times of the file specified by GetFullPath(). Any of the pointers may be NULL if the corresponding time is not needed.
wxString wxFileName::GetVolume | ( | ) | const |
Returns the string containing the volume for this file name, empty if it doesn't have one or if the file system doesn't support volumes at all (for example, Unix).
static wxString wxFileName::GetVolumeSeparator | ( | wxPathFormat | format = wxPATH_NATIVE | ) | [static] |
Returns the string separating the volume from the path for this format.
static wxString wxFileName::GetVolumeString | ( | char | drive, |
int | flags = wxPATH_GET_SEPARATOR |
||
) | [static] |
This function builds a volume path string, for example "C:\\".
Implemented for the platforms which use drive letters, i.e. DOS, MSW and OS/2 only.
drive | The drive letter, 'A' through 'Z' or 'a' through 'z'. |
flags | wxPATH_NO_SEPARATOR or wxPATH_GET_SEPARATOR to omit or include the trailing path separator, the default is to include it. |
bool wxFileName::HasExt | ( | ) | const |
Returns true if an extension is present.
bool wxFileName::HasName | ( | ) | const |
Returns true if a name is present.
bool wxFileName::HasVolume | ( | ) | const |
Returns true if a volume specifier is present.
void wxFileName::InsertDir | ( | size_t | before, |
const wxString & | dir | ||
) |
Inserts a directory component before the zero-based position in the directory list.
Please see AppendDir() for important notes.
bool wxFileName::IsAbsolute | ( | wxPathFormat | format = wxPATH_NATIVE | ) | const |
Returns true if this filename is absolute.
static bool wxFileName::IsCaseSensitive | ( | wxPathFormat | format = wxPATH_NATIVE | ) | [static] |
Returns true if the file names of this type are case-sensitive.
bool wxFileName::IsDir | ( | ) | const |
Returns true if this object represents a directory, false otherwise (i.e.
if it is a file).
Note that this method doesn't test whether the directory or file really exists, you should use DirExists() or FileExists() for this.
bool wxFileName::IsDirReadable | ( | ) | const |
Returns true if the directory component of this instance is an existing directory and this process has read permissions on it.
Read permissions on a directory mean that you can list the directory contents but it doesn't imply that you have read permissions on the files contained.
static bool wxFileName::IsDirReadable | ( | const wxString & | dir | ) | [static] |
Returns true if the given dir is an existing directory and this process has read permissions on it.
Read permissions on a directory mean that you can list the directory contents but it doesn't imply that you have read permissions on the files contained.
static bool wxFileName::IsDirWritable | ( | const wxString & | dir | ) | [static] |
Returns true if the given dir is an existing directory and this process has write permissions on it.
Write permissions on a directory mean that you can create new files in the directory.
bool wxFileName::IsDirWritable | ( | ) | const |
Returns true if the directory component of this instance is an existing directory and this process has write permissions on it.
Write permissions on a directory mean that you can create new files in the directory.
bool wxFileName::IsFileExecutable | ( | ) | const |
Returns true if a file with this name exists and if this process has execute permissions on it.
static bool wxFileName::IsFileExecutable | ( | const wxString & | file | ) | [static] |
Returns true if a file with this name exists and if this process has execute permissions on it.
bool wxFileName::IsFileReadable | ( | ) | const |
Returns true if a file with this name exists and if this process has read permissions on it.
static bool wxFileName::IsFileReadable | ( | const wxString & | file | ) | [static] |
Returns true if a file with this name exists and if this process has read permissions on it.
bool wxFileName::IsFileWritable | ( | ) | const |
Returns true if a file with this name exists and if this process has write permissions on it.
static bool wxFileName::IsFileWritable | ( | const wxString & | file | ) | [static] |
Returns true if a file with this name exists and if this process has write permissions on it.
static bool wxFileName::IsMSWUniqueVolumeNamePath | ( | const wxString & | path, |
wxPathFormat | format = wxPATH_NATIVE |
||
) | [static] |
Returns true if the volume part of the path is a unique volume name.
This function will always return false if the path format is not wxPATH_DOS.
Unique volume names are Windows volume identifiers which remain the same regardless of where the volume is actually mounted. Example of a path using a volume name could be
\\?\Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}\Program Files\setup.exe
bool wxFileName::IsOk | ( | ) | const |
Returns true if the filename is valid, false if it is not initialized yet.
The assignment functions and Clear() may reset the object to the uninitialized, invalid state (the former only do it on failure).
static bool wxFileName::IsPathSeparator | ( | wxChar | ch, |
wxPathFormat | format = wxPATH_NATIVE |
||
) | [static] |
Returns true if the char is a path separator for this format.
bool wxFileName::IsRelative | ( | wxPathFormat | format = wxPATH_NATIVE | ) | const |
Returns true if this filename is not absolute.
static bool wxFileName::MacFindDefaultTypeAndCreator | ( | const wxString & | ext, |
wxUint32 * | type, | ||
wxUint32 * | creator | ||
) | [static] |
On Mac OS, gets the common type and creator for the given extension.
static void wxFileName::MacRegisterDefaultTypeAndCreator | ( | const wxString & | ext, |
wxUint32 | type, | ||
wxUint32 | creator | ||
) | [static] |
On Mac OS, registers application defined extensions and their default type and creator.
bool wxFileName::MacSetDefaultTypeAndCreator | ( | ) |
On Mac OS, looks up the appropriate type and creator from the registration and then sets it.
bool wxFileName::MakeAbsolute | ( | const wxString & | cwd = wxEmptyString , |
wxPathFormat | format = wxPATH_NATIVE |
||
) |
Make the file name absolute.
This is a shortcut for
wxFileName::Normalize(wxPATH_NORM_DOTS | wxPATH_NORM_ABSOLUTE | wxPATH_NORM_TILDE, cwd, format)
bool wxFileName::MakeRelativeTo | ( | const wxString & | pathBase = wxEmptyString , |
wxPathFormat | format = wxPATH_NATIVE |
||
) |
This function tries to put this file name in a form relative to pathBase.
In other words, it returns the file name which should be used to access this file if the current directory were pathBase.
pathBase | The directory to use as root, current directory is used by default |
format | The file name format, native by default |
bool wxFileName::Mkdir | ( | int | perm = wxS_DIR_DEFAULT , |
int | flags = 0 |
||
) | const |
Creates a directory.
perm | The permissions for the newly created directory. See the wxPosixPermissions enumeration for more info. |
flags | If the flags contain wxPATH_MKDIR_FULL flag, try to create each directory in the path and also don't return an error if the target directory already exists. |
static bool wxFileName::Mkdir | ( | const wxString & | dir, |
int | perm = wxS_DIR_DEFAULT , |
||
int | flags = 0 |
||
) | [static] |
Creates a directory.
dir | The directory to create |
perm | The permissions for the newly created directory. See the wxPosixPermissions enumeration for more info. |
flags | If the flags contain wxPATH_MKDIR_FULL flag, try to create each directory in the path and also don't return an error if the target directory already exists. |
bool wxFileName::Normalize | ( | int | flags = wxPATH_NORM_ALL , |
const wxString & | cwd = wxEmptyString , |
||
wxPathFormat | format = wxPATH_NATIVE |
||
) |
Normalize the path.
With the default flags value, the path will be made absolute, without any ".." and "." and all environment variables will be expanded in it.
Notice that in some rare cases normalizing a valid path may result in an invalid wxFileName object. E.g. normalizing "./" path using wxPATH_NORM_DOTS but not wxPATH_NORM_ABSOLUTE will result in a completely empty and thus invalid object. As long as there is a non empty file name the result of normalization will be valid however.
flags | The kind of normalization to do with the file name. It can be any or-combination of the wxPathNormalize enumeration values. |
cwd | If not empty, this directory will be used instead of current working directory in normalization (see wxPATH_NORM_ABSOLUTE ). |
format | The file name format to use when processing the paths, native by default. |
bool wxFileName::operator!= | ( | const wxFileName & | filename | ) | const |
Returns true if the filenames are different.
The string filenames is interpreted as a path in the native filename format.
bool wxFileName::operator!= | ( | const wxString & | filename | ) | const |
Returns true if the filenames are different.
The string filenames is interpreted as a path in the native filename format.
wxFileName& wxFileName::operator= | ( | const wxFileName & | filename | ) |
Assigns the new value to this filename object.
wxFileName& wxFileName::operator= | ( | const wxString & | filename | ) |
Assigns the new value to this filename object.
bool wxFileName::operator== | ( | const wxString & | filename | ) | const |
Returns true if the filenames are equal.
The string filenames is interpreted as a path in the native filename format.
bool wxFileName::operator== | ( | const wxFileName & | filename | ) | const |
Returns true if the filenames are equal.
The string filenames is interpreted as a path in the native filename format.
void wxFileName::PrependDir | ( | const wxString & | dir | ) |
Prepends a directory to the file path.
Please see AppendDir() for important notes.
void wxFileName::RemoveDir | ( | size_t | pos | ) |
Removes the specified directory component from the path.
void wxFileName::RemoveLastDir | ( | ) |
Removes last directory component from the path.
bool wxFileName::ReplaceEnvVariable | ( | const wxString & | envname, |
const wxString & | replacementFmtString = "$%s" , |
||
wxPathFormat | format = wxPATH_NATIVE |
||
) |
If the path contains the value of the environment variable named envname then this function replaces it with the string obtained from wxString::Format(replacementFmtString, value_of_envname_variable).
This function is useful to make the path shorter or to make it dependent from a certain environment variable. Normalize() with wxPATH_NORM_ENV_VARS
can perform the opposite of this function (depending on the value of replacementFmtString).
The name and extension of this filename are not modified.
例:
wxFileName fn("/usr/openwin/lib/someFile"); fn.ReplaceEnvVariable("OPENWINHOME"); // now fn.GetFullPath() == "$OPENWINHOME/lib/someFile"
bool wxFileName::ReplaceHomeDir | ( | wxPathFormat | format = wxPATH_NATIVE | ) |
Replaces, if present in the path, the home directory for the given user (see wxGetHomeDir) with a tilde (~).
Normalize() with wxPATH_NORM_TILDE
performs the opposite of this function.
The name and extension of this filename are not modified.
static bool wxFileName::Rmdir | ( | const wxString & | dir, |
int | flags = 0 |
||
) | [static] |
Deletes the specified directory from the file system.
dir | The directory to delete |
flags | Can contain one of wxPATH_RMDIR_FULL or wxPATH_RMDIR_RECURSIVE. By default contains neither so the directory will not be removed unless it is empty. |
bool wxFileName::Rmdir | ( | int | flags = 0 | ) | const |
Deletes the specified directory from the file system.
flags | Can contain one of wxPATH_RMDIR_FULL or wxPATH_RMDIR_RECURSIVE. By default contains neither so the directory will not be removed unless it is empty. |
bool wxFileName::SameAs | ( | const wxFileName & | filepath, |
wxPathFormat | format = wxPATH_NATIVE |
||
) | const |
Compares the filename using the rules of this platform.
static bool wxFileName::SetCwd | ( | const wxString & | cwd | ) | [static] |
Changes the current working directory.
bool wxFileName::SetCwd | ( | ) | const |
Changes the current working directory.
void wxFileName::SetEmptyExt | ( | ) |
Sets the extension of the file name to be an empty extension.
This is different from having no extension at all as the file name will have a trailing dot after a call to this method.
void wxFileName::SetExt | ( | const wxString & | ext | ) |
Sets the extension of the file name.
Setting an empty string as the extension will remove the extension resulting in a file name without a trailing dot, unlike a call to SetEmptyExt().
void wxFileName::SetFullName | ( | const wxString & | fullname | ) |
The full name is the file name and extension (but without the path).
void wxFileName::SetName | ( | const wxString & | name | ) |
Sets the name part (without extension).
void wxFileName::SetPath | ( | const wxString & | path, |
wxPathFormat | format = wxPATH_NATIVE |
||
) |
bool wxFileName::SetTimes | ( | const wxDateTime * | dtAccess, |
const wxDateTime * | dtMod, | ||
const wxDateTime * | dtCreate | ||
) | const |
Sets the file creation and last access/modification times (any of the pointers may be NULL).
void wxFileName::SetVolume | ( | const wxString & | volume | ) |
Sets the volume specifier.
static void wxFileName::SplitPath | ( | const wxString & | fullpath, |
wxString * | volume, | ||
wxString * | path, | ||
wxString * | name, | ||
wxString * | ext, | ||
bool * | hasExt = NULL , |
||
wxPathFormat | format = wxPATH_NATIVE |
||
) | [static] |
This function splits a full file name into components: the volume (with the first version) path (including the volume in the second version), the base name and the extension.
Any of the output parameters (volume, path, name or ext) may be NULL if you are not interested in the value of a particular component. Also, fullpath may be empty on entry. On return, path contains the file path (without the trailing separator), name contains the file name and ext contains the file extension without leading dot. All three of them may be empty if the corresponding component is. The old contents of the strings pointed to by these parameters will be overwritten in any case (if the pointers are not NULL).
Note that for a filename "foo." the extension is present, as indicated by the trailing dot, but empty. If you need to cope with such cases, you should use hasExt instead of relying on testing whether ext is empty or not.
static void wxFileName::SplitPath | ( | const wxString & | fullpath, |
wxString * | volume, | ||
wxString * | path, | ||
wxString * | name, | ||
wxString * | ext, | ||
wxPathFormat | format | ||
) | [static] |
This function splits a full file name into components: the volume (with the first version) path (including the volume in the second version), the base name and the extension.
Any of the output parameters (volume, path, name or ext) may be NULL if you are not interested in the value of a particular component. Also, fullpath may be empty on entry. On return, path contains the file path (without the trailing separator), name contains the file name and ext contains the file extension without leading dot. All three of them may be empty if the corresponding component is. The old contents of the strings pointed to by these parameters will be overwritten in any case (if the pointers are not NULL).
Note that for a filename "foo." the extension is present, as indicated by the trailing dot, but empty. If you need to cope with such cases, you should use hasExt instead of relying on testing whether ext is empty or not.
static void wxFileName::SplitPath | ( | const wxString & | fullpath, |
wxString * | path, | ||
wxString * | name, | ||
wxString * | ext, | ||
wxPathFormat | format = wxPATH_NATIVE |
||
) | [static] |
This function splits a full file name into components: the volume (with the first version) path (including the volume in the second version), the base name and the extension.
Any of the output parameters (volume, path, name or ext) may be NULL if you are not interested in the value of a particular component. Also, fullpath may be empty on entry. On return, path contains the file path (without the trailing separator), name contains the file name and ext contains the file extension without leading dot. All three of them may be empty if the corresponding component is. The old contents of the strings pointed to by these parameters will be overwritten in any case (if the pointers are not NULL).
Note that for a filename "foo." the extension is present, as indicated by the trailing dot, but empty. If you need to cope with such cases, you should use hasExt instead of relying on testing whether ext is empty or not.
static void wxFileName::SplitVolume | ( | const wxString & | fullpath, |
wxString * | volume, | ||
wxString * | path, | ||
wxPathFormat | format = wxPATH_NATIVE |
||
) | [static] |
Splits the given fullpath into the volume part (which may be empty) and the pure path part, not containing any volume.
Strip the file extension.
This function does more than just removing everything after the last period from the string, for example it will return the string ".vimrc" unchanged because the part after the period is not an extension but the file name in this case. You can use wxString::BeforeLast() to really get just the part before the last period (but notice that that function returns empty string if period is not present at all unlike this function which returns the fullname unchanged in this case).
fullname | File path including name and, optionally, extension. |
bool wxFileName::Touch | ( | ) | const |
Sets the access and modification times to the current moment.