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