]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/filename.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFileName - encapsulates a file path
4 // Author: Robert Roebling, Vadim Zeitlin
8 // Copyright: (c) 2000 Robert Roebling
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_FILENAME_H_
13 #define _WX_FILENAME_H_
16 #pragma interface "filename.h"
20 #include "wx/string.h"
26 1. support for drives under Windows
27 2. more file operations:
29 b) [acm]time() - get and set
31 d) file permissions with readable accessors for most common bits
32 such as IsReadable() &c
34 3. SameFileAs() function to compare inodes under Unix
37 // ridiculously enough, this will replace DirExists with wxDirExists etc
38 #include "wx/filefn.h"
39 #include "wx/datetime.h"
41 class WXDLLEXPORT wxFile
;
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
47 // the various values for the path format: this mainly affects the path
48 // separator but also whether or not the path has the drive part (as under
52 wxPATH_NATIVE
= 0, // the path format for the current platform
58 wxPATH_BEOS
= wxPATH_UNIX
,
59 wxPATH_WIN
= wxPATH_DOS
,
60 wxPATH_OS2
= wxPATH_DOS
63 // the kind of normalization to do with the file name: these values can be
64 // or'd together to perform several operations at once
67 wxPATH_NORM_ENV_VARS
= 0x0001, // replace env vars with their values
68 wxPATH_NORM_DOTS
= 0x0002, // squeeze all .. and . and prepend cwd
69 wxPATH_NORM_TILDE
= 0x0004, // Unix only: replace ~ and ~user
70 wxPATH_NORM_CASE
= 0x0008, // if case insensitive => tolower
71 wxPATH_NORM_ABSOLUTE
= 0x0010, // make the path absolute
72 wxPATH_NORM_LONG
= 0x0020, // make the path the long form
73 wxPATH_NORM_ALL
= 0x003f
76 // ----------------------------------------------------------------------------
77 // wxFileName: encapsulates a file path
78 // ----------------------------------------------------------------------------
80 class WXDLLEXPORT wxFileName
83 // constructors and assignment
87 wxFileName( const wxFileName
&filepath
) { Assign(filepath
); }
89 // from a full filename: if it terminates with a '/', a directory path
90 // is contructed (the name will be empty), otherwise a file name and
91 // extension are extracted from it
92 wxFileName( const wxString
& fullpath
, wxPathFormat format
= wxPATH_NATIVE
)
93 { Assign( fullpath
, format
); }
95 // from a directory name and a file name
96 wxFileName(const wxString
& path
,
98 wxPathFormat format
= wxPATH_NATIVE
)
99 { Assign(path
, name
, format
); }
101 // from a volume, directory name, file base name and extension
102 wxFileName(const wxString
& volume
,
103 const wxString
& path
,
104 const wxString
& name
,
106 wxPathFormat format
= wxPATH_NATIVE
)
107 { Assign(volume
, path
, name
, ext
, format
); }
109 // from a directory name, file base name and extension
110 wxFileName(const wxString
& path
,
111 const wxString
& name
,
113 wxPathFormat format
= wxPATH_NATIVE
)
114 { Assign(path
, name
, ext
, format
); }
116 // the same for delayed initialization
118 void Assign(const wxFileName
& filepath
);
120 void Assign(const wxString
& fullpath
,
121 wxPathFormat format
= wxPATH_NATIVE
);
123 void Assign(const wxString
& volume
,
124 const wxString
& path
,
125 const wxString
& name
,
127 wxPathFormat format
= wxPATH_NATIVE
);
129 void Assign(const wxString
& path
,
130 const wxString
& name
,
131 wxPathFormat format
= wxPATH_NATIVE
);
133 void Assign(const wxString
& path
,
134 const wxString
& name
,
136 wxPathFormat format
= wxPATH_NATIVE
)
139 Assign(_T(""), path
, name
, ext
, format
);
142 void AssignDir(const wxString
& dir
, wxPathFormat format
= wxPATH_NATIVE
);
144 // assorted assignment operators
146 wxFileName
& operator=(const wxFileName
& filename
)
147 { Assign(filename
); return *this; }
149 wxFileName
& operator=(const wxString
& filename
)
150 { Assign(filename
); return *this; }
152 // reset all components to default, uninitialized state
155 // static pseudo constructors
156 static wxFileName
FileName(const wxString
& file
);
157 static wxFileName
DirName(const wxString
& dir
);
161 // is the filename valid at all?
162 bool IsOk() const { return !m_dirs
.IsEmpty() || !m_name
.IsEmpty(); }
164 // does the file with this name exists?
166 static bool FileExists( const wxString
&file
);
168 // does the directory with this name exists?
170 static bool DirExists( const wxString
&dir
);
172 // VZ: also need: IsDirWritable(), IsFileExecutable() &c (TODO)
176 // set the file creation and last access/mod times
177 // (any of the pointers may be NULL)
178 bool SetTimes(const wxDateTime
*dtCreate
,
179 const wxDateTime
*dtAccess
,
180 const wxDateTime
*dtMod
);
182 // set the access and modification times to the current moment
185 // return the last access, last modification and last change times
186 // (any of the pointers may be NULL)
187 bool GetTimes(wxDateTime
*dtAccess
,
189 wxDateTime
*dtChange
) const;
191 // convenience wrapper: get just the last mod time of the file
192 wxDateTime
GetModificationTime() const
195 (void)GetTimes(NULL
, &dtMod
, NULL
);
199 // various file/dir operations
201 // retrieve the value of the current working directory
202 void AssignCwd(const wxString
& volume
= wxEmptyString
);
203 static wxString
GetCwd(const wxString
& volume
= wxEmptyString
);
205 // change the current working directory
207 static bool SetCwd( const wxString
&cwd
);
209 // get the value of user home (Unix only mainly)
210 void AssignHomeDir();
211 static wxString
GetHomeDir();
213 // get a temp file name starting with the specified prefix and open the
214 // file passed to us using this name for writing (atomically if
216 void AssignTempFileName(const wxString
& prefix
, wxFile
*fileTemp
= NULL
);
217 static wxString
CreateTempFileName(const wxString
& prefix
,
218 wxFile
*fileTemp
= NULL
);
220 // directory creation and removal.
221 // if full is TRUE, will try to make each directory in the path.
222 bool Mkdir( int perm
= 0777, bool full
= FALSE
);
223 static bool Mkdir( const wxString
&dir
, int perm
= 0777, bool full
= FALSE
);
226 static bool Rmdir( const wxString
&dir
);
228 // operations on the path
230 // normalize the path: with the default flags value, the path will be
231 // made absolute, without any ".." and "." and all environment
232 // variables will be expanded in it
234 // this may be done using another (than current) value of cwd
235 bool Normalize(wxPathNormalize flags
= wxPATH_NORM_ALL
,
236 const wxString
& cwd
= wxEmptyString
,
237 wxPathFormat format
= wxPATH_NATIVE
);
239 // get a path path relative to the given base directory, i.e. opposite
242 // pass an empty string to get a path relative to the working directory
244 // returns TRUE if the file name was modified, FALSE if we failed to do
245 // anything with it (happens when the file is on a different volume,
247 bool MakeRelativeTo(const wxString
& pathBase
= _T(""),
248 wxPathFormat format
= wxPATH_NATIVE
);
253 // compares with the rules of this platform
254 bool SameAs(const wxFileName
&filepath
,
255 wxPathFormat format
= wxPATH_NATIVE
);
257 // uses the current platform settings
258 bool operator==(const wxFileName
& filename
) { return SameAs(filename
); }
259 bool operator==(const wxString
& filename
)
260 { return *this == wxFileName(filename
); }
262 // are the file names of this type cases sensitive?
263 static bool IsCaseSensitive( wxPathFormat format
= wxPATH_NATIVE
);
265 // is this filename absolute?
266 bool IsAbsolute() const
267 { return !m_relative
; }
269 // is this filename relative?
270 bool IsRelative() const
271 { return m_relative
; }
273 // forcibly set the flag
275 { m_relative
= FALSE
; }
277 { m_relative
= TRUE
; }
279 // Information about path format
281 // get the string separating the volume from the path for this format
282 static wxString
GetVolumeSeparator(wxPathFormat format
= wxPATH_NATIVE
);
284 // get the string of path separators for this format
285 static wxString
GetPathSeparators(wxPathFormat format
= wxPATH_NATIVE
);
287 // is the char a path separator for this format?
288 static bool IsPathSeparator(wxChar ch
, wxPathFormat format
= wxPATH_NATIVE
);
290 // FIXME: what exactly does this do?
291 bool IsWild( wxPathFormat format
= wxPATH_NATIVE
);
294 void AppendDir( const wxString
&dir
);
295 void PrependDir( const wxString
&dir
);
296 void InsertDir( int before
, const wxString
&dir
);
297 void RemoveDir( int pos
);
298 size_t GetDirCount() const { return m_dirs
.GetCount(); }
301 void SetExt( const wxString
&ext
) { m_ext
= ext
; }
302 wxString
GetExt() const { return m_ext
; }
303 bool HasExt() const { return !m_ext
.empty(); }
305 void SetName( const wxString
&name
) { m_name
= name
; }
306 wxString
GetName() const { return m_name
; }
307 bool HasName() const { return !m_name
.empty(); }
309 void SetVolume( const wxString
&volume
) { m_volume
= volume
; }
310 wxString
GetVolume() const { return m_volume
; }
311 bool HasVolume() const { return !m_volume
.empty(); }
313 // full name is the file name + extension (but without the path)
314 void SetFullName(const wxString
& fullname
);
315 wxString
GetFullName() const;
317 const wxArrayString
& GetDirs() const { return m_dirs
; }
319 // Construct path only - possibly with the trailing separator
320 wxString
GetPath( bool add_separator
= FALSE
,
321 wxPathFormat format
= wxPATH_NATIVE
) const;
322 // Replace current path with this one
323 void SetPath( const wxString
&path
, wxPathFormat format
= wxPATH_NATIVE
);
325 // more readable synonym
326 wxString
GetPathWithSep(wxPathFormat format
= wxPATH_NATIVE
) const
327 { return GetPath(TRUE
/* add separator */, format
); }
329 // Construct full path with name and ext
330 wxString
GetFullPath( wxPathFormat format
= wxPATH_NATIVE
) const;
332 // Return the short form of the path (returns identity on non-Windows platforms)
333 wxString
GetShortPath() const;
335 // Return the long form of the path (returns identity on non-Windows platforms)
336 wxString
GetLongPath() const;
340 // get the canonical path format for this platform
341 static wxPathFormat
GetFormat( wxPathFormat format
= wxPATH_NATIVE
);
343 // split a fullpath into the volume, path, (base) name and extension
344 // (all of the pointers can be NULL)
345 static void SplitPath(const wxString
& fullpath
,
350 wxPathFormat format
= wxPATH_NATIVE
);
352 // compatibility version
353 static void SplitPath(const wxString
& fullpath
,
357 wxPathFormat format
= wxPATH_NATIVE
);
360 // the drive/volume/device specification (always empty for Unix)
363 // the path components of the file
364 wxArrayString m_dirs
;
366 // the file name and extension (empty for directories)
370 // is the path relative
374 #endif // _WX_FILENAME_H_