]>
Commit | Line | Data |
---|---|---|
df5ddbca | 1 | ///////////////////////////////////////////////////////////////////////////// |
097ead30 VZ |
2 | // Name: wx/filename.h |
3 | // Purpose: wxFileName - encapsulates a file path | |
844f90fb | 4 | // Author: Robert Roebling, Vadim Zeitlin |
df5ddbca RR |
5 | // Modified by: |
6 | // Created: 28.12.00 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2000 Robert Roebling | |
65571936 | 9 | // Licence: wxWindows licence |
df5ddbca RR |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_FILENAME_H_ | |
13 | #define _WX_FILENAME_H_ | |
14 | ||
9e8d8607 VZ |
15 | /* |
16 | TODO: | |
17 | ||
18 | 1. support for drives under Windows | |
19 | 2. more file operations: | |
20 | a) chmod() | |
21 | b) [acm]time() - get and set | |
22 | c) file size | |
23 | d) file permissions with readable accessors for most common bits | |
24 | such as IsReadable() &c | |
25 | e) rename()? | |
26 | 3. SameFileAs() function to compare inodes under Unix | |
27 | */ | |
28 | ||
20ceebaa | 29 | #include "wx/arrstr.h" |
ee66f092 | 30 | #include "wx/filefn.h" |
ce16e5d7 | 31 | #include "wx/datetime.h" |
df5ddbca | 32 | |
68351053 | 33 | #if wxUSE_FILE |
bddd7a8d | 34 | class WXDLLIMPEXP_BASE wxFile; |
68351053 | 35 | #endif |
df22f860 | 36 | |
097ead30 VZ |
37 | // ---------------------------------------------------------------------------- |
38 | // constants | |
39 | // ---------------------------------------------------------------------------- | |
40 | ||
41 | // the various values for the path format: this mainly affects the path | |
42 | // separator but also whether or not the path has the drive part (as under | |
43 | // Windows) | |
df5ddbca RR |
44 | enum wxPathFormat |
45 | { | |
844f90fb | 46 | wxPATH_NATIVE = 0, // the path format for the current platform |
097ead30 | 47 | wxPATH_UNIX, |
f363e05c | 48 | wxPATH_BEOS = wxPATH_UNIX, |
097ead30 VZ |
49 | wxPATH_MAC, |
50 | wxPATH_DOS, | |
f363e05c VZ |
51 | wxPATH_WIN = wxPATH_DOS, |
52 | wxPATH_OS2 = wxPATH_DOS, | |
3c621059 | 53 | wxPATH_VMS, |
ee66f092 | 54 | |
f363e05c | 55 | wxPATH_MAX // Not a valid value for specifying path format |
097ead30 | 56 | }; |
ee66f092 | 57 | |
097ead30 VZ |
58 | // the kind of normalization to do with the file name: these values can be |
59 | // or'd together to perform several operations at once | |
60 | enum wxPathNormalize | |
61 | { | |
62 | wxPATH_NORM_ENV_VARS = 0x0001, // replace env vars with their values | |
844f90fb | 63 | wxPATH_NORM_DOTS = 0x0002, // squeeze all .. and . and prepend cwd |
097ead30 | 64 | wxPATH_NORM_TILDE = 0x0004, // Unix only: replace ~ and ~user |
844f90fb VZ |
65 | wxPATH_NORM_CASE = 0x0008, // if case insensitive => tolower |
66 | wxPATH_NORM_ABSOLUTE = 0x0010, // make the path absolute | |
9e9b65c1 | 67 | wxPATH_NORM_LONG = 0x0020, // make the path the long form |
21f60945 JS |
68 | wxPATH_NORM_SHORTCUT = 0x0040, // resolve the shortcut, if it is a shortcut |
69 | wxPATH_NORM_ALL = 0x00ff & ~wxPATH_NORM_CASE | |
df5ddbca RR |
70 | }; |
71 | ||
33b97389 VZ |
72 | // what exactly should GetPath() return? |
73 | enum | |
74 | { | |
75 | wxPATH_GET_VOLUME = 0x0001, // include the volume if applicable | |
76 | wxPATH_GET_SEPARATOR = 0x0002 // terminate the path with the separator | |
77 | }; | |
78 | ||
1527281e VZ |
79 | // MkDir flags |
80 | enum | |
81 | { | |
82 | wxPATH_MKDIR_FULL = 0x0001 // create directories recursively | |
83 | }; | |
84 | ||
097ead30 VZ |
85 | // ---------------------------------------------------------------------------- |
86 | // wxFileName: encapsulates a file path | |
87 | // ---------------------------------------------------------------------------- | |
88 | ||
bddd7a8d | 89 | class WXDLLIMPEXP_BASE wxFileName |
df5ddbca RR |
90 | { |
91 | public: | |
92 | // constructors and assignment | |
844f90fb VZ |
93 | |
94 | // the usual stuff | |
fb969475 | 95 | wxFileName() { Clear(); } |
520200fd | 96 | wxFileName(const wxFileName& filepath) { Assign(filepath); } |
844f90fb VZ |
97 | |
98 | // from a full filename: if it terminates with a '/', a directory path | |
99 | // is contructed (the name will be empty), otherwise a file name and | |
100 | // extension are extracted from it | |
101 | wxFileName( const wxString& fullpath, wxPathFormat format = wxPATH_NATIVE ) | |
102 | { Assign( fullpath, format ); } | |
103 | ||
104 | // from a directory name and a file name | |
105 | wxFileName(const wxString& path, | |
106 | const wxString& name, | |
107 | wxPathFormat format = wxPATH_NATIVE) | |
108 | { Assign(path, name, format); } | |
109 | ||
81f25632 VZ |
110 | // from a volume, directory name, file base name and extension |
111 | wxFileName(const wxString& volume, | |
112 | const wxString& path, | |
113 | const wxString& name, | |
114 | const wxString& ext, | |
115 | wxPathFormat format = wxPATH_NATIVE) | |
116 | { Assign(volume, path, name, ext, format); } | |
117 | ||
844f90fb VZ |
118 | // from a directory name, file base name and extension |
119 | wxFileName(const wxString& path, | |
120 | const wxString& name, | |
121 | const wxString& ext, | |
122 | wxPathFormat format = wxPATH_NATIVE) | |
123 | { Assign(path, name, ext, format); } | |
124 | ||
844f90fb VZ |
125 | // the same for delayed initialization |
126 | ||
844f90fb | 127 | void Assign(const wxFileName& filepath); |
04c943b1 | 128 | |
844f90fb VZ |
129 | void Assign(const wxString& fullpath, |
130 | wxPathFormat format = wxPATH_NATIVE); | |
04c943b1 VZ |
131 | |
132 | void Assign(const wxString& volume, | |
133 | const wxString& path, | |
134 | const wxString& name, | |
135 | const wxString& ext, | |
dfecbee5 | 136 | bool hasExt, |
04c943b1 VZ |
137 | wxPathFormat format = wxPATH_NATIVE); |
138 | ||
dfecbee5 VZ |
139 | void Assign(const wxString& volume, |
140 | const wxString& path, | |
141 | const wxString& name, | |
142 | const wxString& ext, | |
143 | wxPathFormat format = wxPATH_NATIVE) | |
144 | { Assign(volume, path, name, ext, !ext.empty(), format); } | |
145 | ||
844f90fb VZ |
146 | void Assign(const wxString& path, |
147 | const wxString& name, | |
148 | wxPathFormat format = wxPATH_NATIVE); | |
04c943b1 | 149 | |
844f90fb VZ |
150 | void Assign(const wxString& path, |
151 | const wxString& name, | |
152 | const wxString& ext, | |
4c2deb19 | 153 | wxPathFormat format = wxPATH_NATIVE); |
04c943b1 | 154 | |
52dbd056 | 155 | void AssignDir(const wxString& dir, wxPathFormat format = wxPATH_NATIVE); |
844f90fb | 156 | |
788722ac JS |
157 | // assorted assignment operators |
158 | ||
159 | wxFileName& operator=(const wxFileName& filename) | |
160 | { Assign(filename); return *this; } | |
161 | ||
162 | wxFileName& operator=(const wxString& filename) | |
163 | { Assign(filename); return *this; } | |
164 | ||
844f90fb VZ |
165 | // reset all components to default, uninitialized state |
166 | void Clear(); | |
167 | ||
168 | // static pseudo constructors | |
520200fd VZ |
169 | static wxFileName FileName(const wxString& file, |
170 | wxPathFormat format = wxPATH_NATIVE); | |
171 | static wxFileName DirName(const wxString& dir, | |
172 | wxPathFormat format = wxPATH_NATIVE); | |
844f90fb | 173 | |
951cd180 | 174 | // file tests |
844f90fb VZ |
175 | |
176 | // is the filename valid at all? | |
a96b8d39 | 177 | bool IsOk() const |
a62848fd | 178 | { |
a96b8d39 | 179 | // we're fine if we have the path or the name or if we're a root dir |
27b2dd53 | 180 | return m_dirs.size() != 0 || !m_name.empty() || !m_relative || |
dfecbee5 | 181 | !m_ext.empty() || m_hasExt; |
a96b8d39 | 182 | } |
844f90fb VZ |
183 | |
184 | // does the file with this name exists? | |
8e41796c | 185 | bool FileExists() const; |
a35b27b1 | 186 | static bool FileExists( const wxString &file ); |
097ead30 | 187 | |
844f90fb | 188 | // does the directory with this name exists? |
8e41796c | 189 | bool DirExists() const; |
a35b27b1 | 190 | static bool DirExists( const wxString &dir ); |
097ead30 | 191 | |
844f90fb VZ |
192 | // VZ: also need: IsDirWritable(), IsFileExecutable() &c (TODO) |
193 | ||
951cd180 | 194 | // time functions |
e2b87f38 | 195 | #if wxUSE_DATETIME |
6dbb903b | 196 | // set the file last access/mod and creation times |
951cd180 | 197 | // (any of the pointers may be NULL) |
6dbb903b VZ |
198 | bool SetTimes(const wxDateTime *dtAccess, |
199 | const wxDateTime *dtMod, | |
200 | const wxDateTime *dtCreate); | |
951cd180 VZ |
201 | |
202 | // set the access and modification times to the current moment | |
203 | bool Touch(); | |
204 | ||
6dbb903b | 205 | // return the last access, last modification and create times |
951cd180 VZ |
206 | // (any of the pointers may be NULL) |
207 | bool GetTimes(wxDateTime *dtAccess, | |
208 | wxDateTime *dtMod, | |
6dbb903b | 209 | wxDateTime *dtCreate) const; |
951cd180 VZ |
210 | |
211 | // convenience wrapper: get just the last mod time of the file | |
212 | wxDateTime GetModificationTime() const | |
213 | { | |
214 | wxDateTime dtMod; | |
215 | (void)GetTimes(NULL, &dtMod, NULL); | |
216 | return dtMod; | |
217 | } | |
e2b87f38 | 218 | #endif // wxUSE_DATETIME |
951cd180 | 219 | |
4dfbcdd5 SC |
220 | #ifdef __WXMAC__ |
221 | bool MacSetTypeAndCreator( wxUint32 type , wxUint32 creator ) ; | |
222 | bool MacGetTypeAndCreator( wxUint32 *type , wxUint32 *creator ) ; | |
223 | // gets the 'common' type and creator for a certain extension | |
224 | static bool MacFindDefaultTypeAndCreator( const wxString& ext , wxUint32 *type , wxUint32 *creator ) ; | |
225 | // registers application defined extensions and their default type and creator | |
226 | static void MacRegisterDefaultTypeAndCreator( const wxString& ext , wxUint32 type , wxUint32 creator ) ; | |
227 | // looks up the appropriate type and creator from the registration and then sets | |
228 | bool MacSetDefaultTypeAndCreator() ; | |
229 | #endif | |
fb969475 | 230 | |
844f90fb VZ |
231 | // various file/dir operations |
232 | ||
233 | // retrieve the value of the current working directory | |
6f91bc33 VZ |
234 | void AssignCwd(const wxString& volume = wxEmptyString); |
235 | static wxString GetCwd(const wxString& volume = wxEmptyString); | |
097ead30 | 236 | |
844f90fb | 237 | // change the current working directory |
a35b27b1 RR |
238 | bool SetCwd(); |
239 | static bool SetCwd( const wxString &cwd ); | |
097ead30 | 240 | |
844f90fb | 241 | // get the value of user home (Unix only mainly) |
a35b27b1 RR |
242 | void AssignHomeDir(); |
243 | static wxString GetHomeDir(); | |
097ead30 | 244 | |
68351053 | 245 | #if wxUSE_FILE |
df22f860 VZ |
246 | // get a temp file name starting with the specified prefix and open the |
247 | // file passed to us using this name for writing (atomically if | |
248 | // possible) | |
249 | void AssignTempFileName(const wxString& prefix, wxFile *fileTemp = NULL); | |
250 | static wxString CreateTempFileName(const wxString& prefix, | |
251 | wxFile *fileTemp = NULL); | |
68351053 | 252 | #endif // wxUSE_FILE |
097ead30 | 253 | |
f0ce3409 | 254 | // directory creation and removal. |
1527281e VZ |
255 | bool Mkdir( int perm = 0777, int flags = 0); |
256 | static bool Mkdir( const wxString &dir, int perm = 0777, int flags = 0 ); | |
097ead30 | 257 | |
a35b27b1 RR |
258 | bool Rmdir(); |
259 | static bool Rmdir( const wxString &dir ); | |
097ead30 | 260 | |
844f90fb VZ |
261 | // operations on the path |
262 | ||
263 | // normalize the path: with the default flags value, the path will be | |
264 | // made absolute, without any ".." and "." and all environment | |
265 | // variables will be expanded in it | |
266 | // | |
267 | // this may be done using another (than current) value of cwd | |
32a0d013 | 268 | bool Normalize(int flags = wxPATH_NORM_ALL, |
844f90fb VZ |
269 | const wxString& cwd = wxEmptyString, |
270 | wxPathFormat format = wxPATH_NATIVE); | |
097ead30 | 271 | |
f7d886af VZ |
272 | // get a path path relative to the given base directory, i.e. opposite |
273 | // of Normalize | |
274 | // | |
275 | // pass an empty string to get a path relative to the working directory | |
276 | // | |
f363e05c | 277 | // returns true if the file name was modified, false if we failed to do |
f7d886af VZ |
278 | // anything with it (happens when the file is on a different volume, |
279 | // for example) | |
fda7962d | 280 | bool MakeRelativeTo(const wxString& pathBase = wxEmptyString, |
f7d886af VZ |
281 | wxPathFormat format = wxPATH_NATIVE); |
282 | ||
0894707e VS |
283 | // make the path absolute |
284 | // | |
285 | // this may be done using another (than current) value of cwd | |
286 | bool MakeAbsolute(const wxString& cwd = wxEmptyString, | |
287 | wxPathFormat format = wxPATH_NATIVE) | |
288 | { return Normalize(wxPATH_NORM_DOTS | wxPATH_NORM_ABSOLUTE | | |
289 | wxPATH_NORM_TILDE, cwd, format); } | |
f7d886af | 290 | |
ff95fdbb | 291 | #if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE |
21f60945 JS |
292 | // if the path is a shortcut, return the target and optionally, |
293 | // the arguments | |
ff95fdbb VS |
294 | bool GetShortcutTarget(const wxString& shortcutPath, |
295 | wxString& targetFilename, | |
296 | wxString* arguments = NULL); | |
21f60945 JS |
297 | #endif |
298 | ||
df5ddbca | 299 | // Comparison |
844f90fb | 300 | |
2b5f62a0 VZ |
301 | // compares with the rules of the given platforms format |
302 | bool SameAs(const wxFileName& filepath, | |
303 | wxPathFormat format = wxPATH_NATIVE) const; | |
304 | ||
305 | // compare with another filename object | |
306 | bool operator==(const wxFileName& filename) const | |
307 | { return SameAs(filename); } | |
308 | bool operator!=(const wxFileName& filename) const | |
309 | { return !SameAs(filename); } | |
310 | ||
311 | // compare with a filename string interpreted as a native file name | |
312 | bool operator==(const wxString& filename) const | |
313 | { return SameAs(wxFileName(filename)); } | |
314 | bool operator!=(const wxString& filename) const | |
315 | { return !SameAs(wxFileName(filename)); } | |
844f90fb | 316 | |
04c943b1 | 317 | // are the file names of this type cases sensitive? |
844f90fb | 318 | static bool IsCaseSensitive( wxPathFormat format = wxPATH_NATIVE ); |
04c943b1 VZ |
319 | |
320 | // is this filename absolute? | |
6d3d1c2e | 321 | bool IsAbsolute(wxPathFormat format = wxPATH_NATIVE) const; |
844f90fb | 322 | |
04c943b1 | 323 | // is this filename relative? |
6d3d1c2e VZ |
324 | bool IsRelative(wxPathFormat format = wxPATH_NATIVE) const |
325 | { return !IsAbsolute(format); } | |
04c943b1 | 326 | |
f363e05c VZ |
327 | // Returns the characters that aren't allowed in filenames |
328 | // on the specified platform. | |
329 | static wxString GetForbiddenChars(wxPathFormat format = wxPATH_NATIVE); | |
330 | ||
04c943b1 VZ |
331 | // Information about path format |
332 | ||
6d3d1c2e VZ |
333 | // get the string separating the volume from the path for this format, |
334 | // return an empty string if this format doesn't support the notion of | |
335 | // volumes at all | |
04c943b1 VZ |
336 | static wxString GetVolumeSeparator(wxPathFormat format = wxPATH_NATIVE); |
337 | ||
844f90fb VZ |
338 | // get the string of path separators for this format |
339 | static wxString GetPathSeparators(wxPathFormat format = wxPATH_NATIVE); | |
340 | ||
f1e77933 VZ |
341 | // get the string of path terminators, i.e. characters which terminate the |
342 | // path | |
343 | static wxString GetPathTerminators(wxPathFormat format = wxPATH_NATIVE); | |
344 | ||
6d3d1c2e VZ |
345 | // get the canonical path separator for this format |
346 | static wxChar GetPathSeparator(wxPathFormat format = wxPATH_NATIVE) | |
347 | { return GetPathSeparators(format)[0u]; } | |
348 | ||
844f90fb VZ |
349 | // is the char a path separator for this format? |
350 | static bool IsPathSeparator(wxChar ch, wxPathFormat format = wxPATH_NATIVE); | |
351 | ||
df5ddbca | 352 | // Dir accessors |
df5168c4 | 353 | size_t GetDirCount() const { return m_dirs.size(); } |
2458d90b VZ |
354 | void AppendDir(const wxString& dir); |
355 | void PrependDir(const wxString& dir); | |
356 | void InsertDir(size_t before, const wxString& dir); | |
357 | void RemoveDir(size_t pos); | |
358 | void RemoveLastDir() { RemoveDir(GetDirCount() - 1); } | |
097ead30 | 359 | |
df5ddbca | 360 | // Other accessors |
0b40f3d8 RR |
361 | void SetExt( const wxString &ext ) { m_ext = ext; m_hasExt = !m_ext.empty(); } |
362 | void ClearExt() { m_ext = wxEmptyString; m_hasExt = false; } | |
363 | void SetEmptyExt() { m_ext = wxT(""); m_hasExt = true; } | |
df5ddbca | 364 | wxString GetExt() const { return m_ext; } |
4d4edca3 | 365 | bool HasExt() const { return m_hasExt; } |
097ead30 | 366 | |
df5ddbca RR |
367 | void SetName( const wxString &name ) { m_name = name; } |
368 | wxString GetName() const { return m_name; } | |
04c943b1 VZ |
369 | bool HasName() const { return !m_name.empty(); } |
370 | ||
371 | void SetVolume( const wxString &volume ) { m_volume = volume; } | |
372 | wxString GetVolume() const { return m_volume; } | |
373 | bool HasVolume() const { return !m_volume.empty(); } | |
097ead30 | 374 | |
7124df9b VZ |
375 | // full name is the file name + extension (but without the path) |
376 | void SetFullName(const wxString& fullname); | |
844f90fb | 377 | wxString GetFullName() const; |
097ead30 | 378 | |
04c943b1 | 379 | const wxArrayString& GetDirs() const { return m_dirs; } |
097ead30 | 380 | |
33b97389 | 381 | // flags are combination of wxPATH_GET_XXX flags |
93fa67c0 VZ |
382 | wxString GetPath(int flags = wxPATH_GET_VOLUME, |
383 | wxPathFormat format = wxPATH_NATIVE) const; | |
33b97389 | 384 | |
a7b51bc8 RR |
385 | // Replace current path with this one |
386 | void SetPath( const wxString &path, wxPathFormat format = wxPATH_NATIVE ); | |
097ead30 | 387 | |
df5ddbca RR |
388 | // Construct full path with name and ext |
389 | wxString GetFullPath( wxPathFormat format = wxPATH_NATIVE ) const; | |
097ead30 | 390 | |
9e9b65c1 JS |
391 | // Return the short form of the path (returns identity on non-Windows platforms) |
392 | wxString GetShortPath() const; | |
393 | ||
394 | // Return the long form of the path (returns identity on non-Windows platforms) | |
395 | wxString GetLongPath() const; | |
396 | ||
2db991f4 VZ |
397 | // Is this a file or directory (not necessarily an existing one) |
398 | bool IsDir() const { return m_name.empty() && m_ext.empty(); } | |
399 | ||
9e8d8607 VZ |
400 | // various helpers |
401 | ||
402 | // get the canonical path format for this platform | |
df5ddbca | 403 | static wxPathFormat GetFormat( wxPathFormat format = wxPATH_NATIVE ); |
097ead30 | 404 | |
04c943b1 VZ |
405 | // split a fullpath into the volume, path, (base) name and extension |
406 | // (all of the pointers can be NULL) | |
9e8d8607 | 407 | static void SplitPath(const wxString& fullpath, |
04c943b1 | 408 | wxString *volume, |
9e8d8607 VZ |
409 | wxString *path, |
410 | wxString *name, | |
411 | wxString *ext, | |
dfecbee5 | 412 | bool *hasExt = NULL, |
9e8d8607 VZ |
413 | wxPathFormat format = wxPATH_NATIVE); |
414 | ||
dfecbee5 VZ |
415 | static void SplitPath(const wxString& fullpath, |
416 | wxString *volume, | |
417 | wxString *path, | |
418 | wxString *name, | |
419 | wxString *ext, | |
1a6255e6 | 420 | wxPathFormat format) |
dfecbee5 VZ |
421 | { |
422 | SplitPath(fullpath, volume, path, name, ext, NULL, format); | |
423 | } | |
424 | ||
425 | // compatibility version: volume is part of path | |
04c943b1 VZ |
426 | static void SplitPath(const wxString& fullpath, |
427 | wxString *path, | |
428 | wxString *name, | |
429 | wxString *ext, | |
6f91bc33 | 430 | wxPathFormat format = wxPATH_NATIVE); |
04c943b1 | 431 | |
f1e77933 VZ |
432 | // split a path into volume and pure path part |
433 | static void SplitVolume(const wxString& fullpathWithVolume, | |
434 | wxString *volume, | |
435 | wxString *path, | |
436 | wxPathFormat format = wxPATH_NATIVE); | |
33b97389 VZ |
437 | |
438 | // deprecated methods, don't use any more | |
439 | // -------------------------------------- | |
440 | ||
4ce1efe1 | 441 | #ifndef __DIGITALMARS__ |
33b97389 VZ |
442 | wxString GetPath( bool withSep, wxPathFormat format = wxPATH_NATIVE ) const |
443 | { return GetPath(withSep ? wxPATH_GET_SEPARATOR : 0, format); } | |
4ce1efe1 | 444 | #endif |
33b97389 VZ |
445 | wxString GetPathWithSep(wxPathFormat format = wxPATH_NATIVE ) const |
446 | { return GetPath(wxPATH_GET_SEPARATOR, format); } | |
447 | ||
df5ddbca | 448 | private: |
5bb9aeb2 VZ |
449 | // check whether this dir is valid for Append/Prepend/InsertDir() |
450 | static bool IsValidDirComponent(const wxString& dir); | |
451 | ||
04c943b1 VZ |
452 | // the drive/volume/device specification (always empty for Unix) |
453 | wxString m_volume; | |
454 | ||
844f90fb | 455 | // the path components of the file |
df5ddbca | 456 | wxArrayString m_dirs; |
844f90fb VZ |
457 | |
458 | // the file name and extension (empty for directories) | |
459 | wxString m_name, | |
460 | m_ext; | |
6d3d1c2e VZ |
461 | |
462 | // when m_dirs is empty it may mean either that we have no path at all or | |
463 | // that our path is '/', i.e. the root directory | |
464 | // | |
465 | // we use m_relative to distinguish between these two cases, it will be | |
f363e05c | 466 | // true in the former and false in the latter |
6d3d1c2e | 467 | // |
f363e05c | 468 | // NB: the path is not absolute just because m_relative is false, it still |
6d3d1c2e | 469 | // needs the drive (i.e. volume) in some formats (Windows) |
353f41cb | 470 | bool m_relative; |
dfecbee5 VZ |
471 | |
472 | // when m_ext is empty, it may be because we don't have any extension or | |
473 | // because we have an empty extension | |
474 | // | |
475 | // the difference is important as file with name "foo" and without | |
476 | // extension has full name "foo" while with empty extension it is "foo." | |
477 | bool m_hasExt; | |
df5ddbca RR |
478 | }; |
479 | ||
097ead30 | 480 | #endif // _WX_FILENAME_H_ |
df5ddbca | 481 |