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