]>
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 // what exactly should GetPath() return?
79 wxPATH_GET_VOLUME
= 0x0001, // include the volume if applicable
80 wxPATH_GET_SEPARATOR
= 0x0002 // terminate the path with the separator
86 wxPATH_MKDIR_FULL
= 0x0001 // create directories recursively
89 // ----------------------------------------------------------------------------
90 // wxFileName: encapsulates a file path
91 // ----------------------------------------------------------------------------
93 class WXDLLEXPORT wxFileName
96 // constructors and assignment
100 wxFileName( const wxFileName
&filepath
) { Assign(filepath
); }
102 // from a full filename: if it terminates with a '/', a directory path
103 // is contructed (the name will be empty), otherwise a file name and
104 // extension are extracted from it
105 wxFileName( const wxString
& fullpath
, wxPathFormat format
= wxPATH_NATIVE
)
106 { Assign( fullpath
, format
); }
108 // from a directory name and a file name
109 wxFileName(const wxString
& path
,
110 const wxString
& name
,
111 wxPathFormat format
= wxPATH_NATIVE
)
112 { Assign(path
, name
, format
); }
114 // from a volume, directory name, file base name and extension
115 wxFileName(const wxString
& volume
,
116 const wxString
& path
,
117 const wxString
& name
,
119 wxPathFormat format
= wxPATH_NATIVE
)
120 { Assign(volume
, path
, name
, ext
, format
); }
122 // from a directory name, file base name and extension
123 wxFileName(const wxString
& path
,
124 const wxString
& name
,
126 wxPathFormat format
= wxPATH_NATIVE
)
127 { Assign(path
, name
, ext
, format
); }
129 // the same for delayed initialization
131 void Assign(const wxFileName
& filepath
);
133 void Assign(const wxString
& fullpath
,
134 wxPathFormat format
= wxPATH_NATIVE
);
136 void Assign(const wxString
& volume
,
137 const wxString
& path
,
138 const wxString
& name
,
140 wxPathFormat format
= wxPATH_NATIVE
);
142 void Assign(const wxString
& path
,
143 const wxString
& name
,
144 wxPathFormat format
= wxPATH_NATIVE
);
146 void Assign(const wxString
& path
,
147 const wxString
& name
,
149 wxPathFormat format
= wxPATH_NATIVE
)
152 Assign(_T(""), path
, name
, ext
, format
);
155 void AssignDir(const wxString
& dir
, wxPathFormat format
= wxPATH_NATIVE
);
157 // assorted assignment operators
159 wxFileName
& operator=(const wxFileName
& filename
)
160 { Assign(filename
); return *this; }
162 wxFileName
& operator=(const wxString
& filename
)
163 { Assign(filename
); return *this; }
165 // reset all components to default, uninitialized state
168 // static pseudo constructors
169 static wxFileName
FileName(const wxString
& file
);
170 static wxFileName
DirName(const wxString
& dir
);
174 // is the filename valid at all?
175 bool IsOk() const { return !m_dirs
.IsEmpty() || !m_name
.IsEmpty(); }
177 // does the file with this name exists?
179 static bool FileExists( const wxString
&file
);
181 // does the directory with this name exists?
183 static bool DirExists( const wxString
&dir
);
185 // VZ: also need: IsDirWritable(), IsFileExecutable() &c (TODO)
189 // set the file last access/mod and creation times
190 // (any of the pointers may be NULL)
191 bool SetTimes(const wxDateTime
*dtAccess
,
192 const wxDateTime
*dtMod
,
193 const wxDateTime
*dtCreate
);
195 // set the access and modification times to the current moment
198 // return the last access, last modification and create times
199 // (any of the pointers may be NULL)
200 bool GetTimes(wxDateTime
*dtAccess
,
202 wxDateTime
*dtCreate
) const;
204 // convenience wrapper: get just the last mod time of the file
205 wxDateTime
GetModificationTime() const
208 (void)GetTimes(NULL
, &dtMod
, NULL
);
213 bool MacSetTypeAndCreator( wxUint32 type
, wxUint32 creator
) ;
214 bool MacGetTypeAndCreator( wxUint32
*type
, wxUint32
*creator
) ;
215 // gets the 'common' type and creator for a certain extension
216 static bool MacFindDefaultTypeAndCreator( const wxString
& ext
, wxUint32
*type
, wxUint32
*creator
) ;
217 // registers application defined extensions and their default type and creator
218 static void MacRegisterDefaultTypeAndCreator( const wxString
& ext
, wxUint32 type
, wxUint32 creator
) ;
219 // looks up the appropriate type and creator from the registration and then sets
220 bool MacSetDefaultTypeAndCreator() ;
222 // various file/dir operations
224 // retrieve the value of the current working directory
225 void AssignCwd(const wxString
& volume
= wxEmptyString
);
226 static wxString
GetCwd(const wxString
& volume
= wxEmptyString
);
228 // change the current working directory
230 static bool SetCwd( const wxString
&cwd
);
232 // get the value of user home (Unix only mainly)
233 void AssignHomeDir();
234 static wxString
GetHomeDir();
236 // get a temp file name starting with the specified prefix and open the
237 // file passed to us using this name for writing (atomically if
239 void AssignTempFileName(const wxString
& prefix
, wxFile
*fileTemp
= NULL
);
240 static wxString
CreateTempFileName(const wxString
& prefix
,
241 wxFile
*fileTemp
= NULL
);
243 // directory creation and removal.
244 // if full is TRUE, will try to make each directory in the path.
245 bool Mkdir( int perm
= 0777, int flags
= 0);
246 static bool Mkdir( const wxString
&dir
, int perm
= 0777, int flags
= 0 );
249 static bool Rmdir( const wxString
&dir
);
251 // operations on the path
253 // normalize the path: with the default flags value, the path will be
254 // made absolute, without any ".." and "." and all environment
255 // variables will be expanded in it
257 // this may be done using another (than current) value of cwd
258 bool Normalize(int flags
= wxPATH_NORM_ALL
,
259 const wxString
& cwd
= wxEmptyString
,
260 wxPathFormat format
= wxPATH_NATIVE
);
262 // get a path path relative to the given base directory, i.e. opposite
265 // pass an empty string to get a path relative to the working directory
267 // returns TRUE if the file name was modified, FALSE if we failed to do
268 // anything with it (happens when the file is on a different volume,
270 bool MakeRelativeTo(const wxString
& pathBase
= _T(""),
271 wxPathFormat format
= wxPATH_NATIVE
);
276 // compares with the rules of this platform
277 bool SameAs(const wxFileName
&filepath
,
278 wxPathFormat format
= wxPATH_NATIVE
);
280 // uses the current platform settings
281 bool operator==(const wxFileName
& filename
) { return SameAs(filename
); }
282 bool operator==(const wxString
& filename
)
283 { return *this == wxFileName(filename
); }
285 // are the file names of this type cases sensitive?
286 static bool IsCaseSensitive( wxPathFormat format
= wxPATH_NATIVE
);
288 // is this filename absolute?
289 bool IsAbsolute(wxPathFormat format
= wxPATH_NATIVE
) const;
291 // is this filename relative?
292 bool IsRelative(wxPathFormat format
= wxPATH_NATIVE
) const
293 { return !IsAbsolute(format
); }
295 // Information about path format
297 // get the string separating the volume from the path for this format,
298 // return an empty string if this format doesn't support the notion of
300 static wxString
GetVolumeSeparator(wxPathFormat format
= wxPATH_NATIVE
);
302 // get the string of path separators for this format
303 static wxString
GetPathSeparators(wxPathFormat format
= wxPATH_NATIVE
);
305 // get the canonical path separator for this format
306 static wxChar
GetPathSeparator(wxPathFormat format
= wxPATH_NATIVE
)
307 { return GetPathSeparators(format
)[0u]; }
309 // is the char a path separator for this format?
310 static bool IsPathSeparator(wxChar ch
, wxPathFormat format
= wxPATH_NATIVE
);
313 void AppendDir( const wxString
&dir
);
314 void PrependDir( const wxString
&dir
);
315 void InsertDir( int before
, const wxString
&dir
);
316 void RemoveDir( int pos
);
317 size_t GetDirCount() const { return m_dirs
.GetCount(); }
320 void SetExt( const wxString
&ext
) { m_ext
= ext
; }
321 wxString
GetExt() const { return m_ext
; }
322 bool HasExt() const { return !m_ext
.empty(); }
324 void SetName( const wxString
&name
) { m_name
= name
; }
325 wxString
GetName() const { return m_name
; }
326 bool HasName() const { return !m_name
.empty(); }
328 void SetVolume( const wxString
&volume
) { m_volume
= volume
; }
329 wxString
GetVolume() const { return m_volume
; }
330 bool HasVolume() const { return !m_volume
.empty(); }
332 // full name is the file name + extension (but without the path)
333 void SetFullName(const wxString
& fullname
);
334 wxString
GetFullName() const;
336 const wxArrayString
& GetDirs() const { return m_dirs
; }
338 // flags are combination of wxPATH_GET_XXX flags
339 wxString
GetPath(int flags
= 0, wxPathFormat format
= wxPATH_NATIVE
) const;
341 // Replace current path with this one
342 void SetPath( const wxString
&path
, wxPathFormat format
= wxPATH_NATIVE
);
344 // Construct full path with name and ext
345 wxString
GetFullPath( wxPathFormat format
= wxPATH_NATIVE
) const;
347 // Return the short form of the path (returns identity on non-Windows platforms)
348 wxString
GetShortPath() const;
350 // Return the long form of the path (returns identity on non-Windows platforms)
351 wxString
GetLongPath() const;
353 // Is this a file or directory (not necessarily an existing one)
354 bool IsDir() const { return m_name
.empty() && m_ext
.empty(); }
358 // get the canonical path format for this platform
359 static wxPathFormat
GetFormat( wxPathFormat format
= wxPATH_NATIVE
);
361 // split a fullpath into the volume, path, (base) name and extension
362 // (all of the pointers can be NULL)
363 static void SplitPath(const wxString
& fullpath
,
368 wxPathFormat format
= wxPATH_NATIVE
);
370 // compatibility version
371 static void SplitPath(const wxString
& fullpath
,
375 wxPathFormat format
= wxPATH_NATIVE
);
378 // deprecated methods, don't use any more
379 // --------------------------------------
381 wxString
GetPath( bool withSep
, wxPathFormat format
= wxPATH_NATIVE
) const
382 { return GetPath(withSep
? wxPATH_GET_SEPARATOR
: 0, format
); }
384 wxString
GetPathWithSep(wxPathFormat format
= wxPATH_NATIVE
) const
385 { return GetPath(wxPATH_GET_SEPARATOR
, format
); }
388 // the drive/volume/device specification (always empty for Unix)
391 // the path components of the file
392 wxArrayString m_dirs
;
394 // the file name and extension (empty for directories)
398 // when m_dirs is empty it may mean either that we have no path at all or
399 // that our path is '/', i.e. the root directory
401 // we use m_relative to distinguish between these two cases, it will be
402 // TRUE in the former and FALSE in the latter
404 // NB: the path is not absolute just because m_relative is FALSE, it still
405 // needs the drive (i.e. volume) in some formats (Windows)
409 #endif // _WX_FILENAME_H_