1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/filename.cpp
3 // Purpose: wxFileName - encapsulates a file path
4 // Author: Robert Roebling, Vadim Zeitlin
8 // Copyright: (c) 2000 Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 Here are brief descriptions of the filename formats supported by this class:
15 wxPATH_UNIX: standard Unix format, used under Darwin as well, absolute file
17 /dir1/dir2/.../dirN/filename, "." and ".." stand for the
18 current and parent directory respectively, "~" is parsed as the
19 user HOME and "~username" as the HOME of that user
21 wxPATH_DOS: DOS/Windows format, absolute file names have the form:
22 drive:\dir1\dir2\...\dirN\filename.ext where drive is a single
23 letter. "." and ".." as for Unix but no "~".
25 There are also UNC names of the form \\share\fullpath and
26 MSW unique volume names of the form \\?\Volume{GUID}\fullpath.
28 The latter provide a uniform way to access a volume regardless of
29 its current mount point, i.e. you can change a volume's mount
30 point from D: to E:, or even remove it, and still be able to
31 access it through its unique volume name. More on the subject can
32 be found in MSDN's article "Naming a Volume" that is currently at
33 http://msdn.microsoft.com/en-us/library/aa365248(VS.85).aspx.
36 wxPATH_MAC: Mac OS 8/9 only, not used any longer, absolute file
38 volume:dir1:...:dirN:filename
39 and the relative file names are either
40 :dir1:...:dirN:filename
43 (although :filename works as well).
44 Since the volume is just part of the file path, it is not
45 treated like a separate entity as it is done under DOS and
46 VMS, it is just treated as another dir.
48 wxPATH_VMS: VMS native format, absolute file names have the form
49 <device>:[dir1.dir2.dir3]file.txt
51 <device>:[000000.dir1.dir2.dir3]file.txt
53 the <device> is the physical device (i.e. disk). 000000 is the
54 root directory on the device which can be omitted.
56 Note that VMS uses different separators unlike Unix:
57 : always after the device. If the path does not contain : than
58 the default (the device of the current directory) is assumed.
59 [ start of directory specification
60 . separator between directory and subdirectory
61 ] between directory and file
64 // ============================================================================
66 // ============================================================================
68 // ----------------------------------------------------------------------------
70 // ----------------------------------------------------------------------------
72 // For compilers that support precompilation, includes "wx.h".
73 #include "wx/wxprec.h"
81 #include "wx/msw/wrapwin.h" // For GetShort/LongPathName
83 #include "wx/dynarray.h"
90 #include "wx/filename.h"
91 #include "wx/private/filename.h"
92 #include "wx/tokenzr.h"
93 #include "wx/config.h" // for wxExpandEnvVars
94 #include "wx/dynlib.h"
97 #if defined(__WIN32__) && defined(__MINGW32__)
98 #include "wx/msw/gccpriv.h"
102 #include "wx/msw/private.h"
105 #if defined(__WXMAC__)
106 #include "wx/osx/private.h" // includes mac headers
109 // utime() is POSIX so should normally be available on all Unices
111 #include <sys/types.h>
113 #include <sys/stat.h>
123 #include <sys/utime.h>
124 #include <sys/stat.h>
135 #define MAX_PATH _MAX_PATH
139 #define S_ISREG(mode) ((mode) & S_IFREG)
142 #define S_ISDIR(mode) ((mode) & S_IFDIR)
146 extern const wxULongLong wxInvalidSize
= (unsigned)-1;
147 #endif // wxUSE_LONGLONG
152 // ----------------------------------------------------------------------------
154 // ----------------------------------------------------------------------------
156 // small helper class which opens and closes the file - we use it just to get
157 // a file handle for the given file name to pass it to some Win32 API function
158 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
169 wxFileHandle(const wxString
& filename
, OpenMode mode
, int flags
= 0)
171 // be careful and use FILE_{READ,WRITE}_ATTRIBUTES here instead of the
172 // usual GENERIC_{READ,WRITE} as we don't want the file access time to
173 // be changed when we open it because this class is used for setting
174 // access time (see #10567)
175 m_hFile
= ::CreateFile
177 filename
.t_str(), // name
178 mode
== ReadAttr
? FILE_READ_ATTRIBUTES
// access mask
179 : FILE_WRITE_ATTRIBUTES
,
180 FILE_SHARE_READ
| // sharing mode
181 FILE_SHARE_WRITE
, // (allow everything)
182 NULL
, // no secutity attr
183 OPEN_EXISTING
, // creation disposition
185 NULL
// no template file
188 if ( m_hFile
== INVALID_HANDLE_VALUE
)
190 if ( mode
== ReadAttr
)
192 wxLogSysError(_("Failed to open '%s' for reading"),
197 wxLogSysError(_("Failed to open '%s' for writing"),
205 if ( m_hFile
!= INVALID_HANDLE_VALUE
)
207 if ( !::CloseHandle(m_hFile
) )
209 wxLogSysError(_("Failed to close file handle"));
214 // return true only if the file could be opened successfully
215 bool IsOk() const { return m_hFile
!= INVALID_HANDLE_VALUE
; }
218 operator HANDLE() const { return m_hFile
; }
226 // ----------------------------------------------------------------------------
228 // ----------------------------------------------------------------------------
230 #if wxUSE_DATETIME && defined(__WIN32__) && !defined(__WXMICROWIN__)
232 // convert between wxDateTime and FILETIME which is a 64-bit value representing
233 // the number of 100-nanosecond intervals since January 1, 1601.
235 static void ConvertFileTimeToWx(wxDateTime
*dt
, const FILETIME
&ft
)
237 FILETIME ftcopy
= ft
;
239 if ( !::FileTimeToLocalFileTime(&ftcopy
, &ftLocal
) )
241 wxLogLastError(wxT("FileTimeToLocalFileTime"));
245 if ( !::FileTimeToSystemTime(&ftLocal
, &st
) )
247 wxLogLastError(wxT("FileTimeToSystemTime"));
250 dt
->Set(st
.wDay
, wxDateTime::Month(st
.wMonth
- 1), st
.wYear
,
251 st
.wHour
, st
.wMinute
, st
.wSecond
, st
.wMilliseconds
);
254 static void ConvertWxToFileTime(FILETIME
*ft
, const wxDateTime
& dt
)
257 st
.wDay
= dt
.GetDay();
258 st
.wMonth
= (WORD
)(dt
.GetMonth() + 1);
259 st
.wYear
= (WORD
)dt
.GetYear();
260 st
.wHour
= dt
.GetHour();
261 st
.wMinute
= dt
.GetMinute();
262 st
.wSecond
= dt
.GetSecond();
263 st
.wMilliseconds
= dt
.GetMillisecond();
266 if ( !::SystemTimeToFileTime(&st
, &ftLocal
) )
268 wxLogLastError(wxT("SystemTimeToFileTime"));
271 if ( !::LocalFileTimeToFileTime(&ftLocal
, ft
) )
273 wxLogLastError(wxT("LocalFileTimeToFileTime"));
277 #endif // wxUSE_DATETIME && __WIN32__
279 // return a string with the volume par
280 static wxString
wxGetVolumeString(const wxString
& volume
, wxPathFormat format
)
284 if ( !volume
.empty() )
286 format
= wxFileName::GetFormat(format
);
288 // Special Windows UNC paths hack, part 2: undo what we did in
289 // SplitPath() and make an UNC path if we have a drive which is not a
290 // single letter (hopefully the network shares can't be one letter only
291 // although I didn't find any authoritative docs on this)
292 if ( format
== wxPATH_DOS
&& volume
.length() > 1 )
294 // We also have to check for Windows unique volume names here and
295 // return it with '\\?\' prepended to it
296 if ( wxFileName::IsMSWUniqueVolumeNamePath("\\\\?\\" + volume
+ "\\",
299 path
<< "\\\\?\\" << volume
;
303 // it must be a UNC path
304 path
<< wxFILE_SEP_PATH_DOS
<< wxFILE_SEP_PATH_DOS
<< volume
;
307 else if ( format
== wxPATH_DOS
|| format
== wxPATH_VMS
)
309 path
<< volume
<< wxFileName::GetVolumeSeparator(format
);
317 // return true if the character is a DOS path separator i.e. either a slash or
319 inline bool IsDOSPathSep(wxUniChar ch
)
321 return ch
== wxFILE_SEP_PATH_DOS
|| ch
== wxFILE_SEP_PATH_UNIX
;
324 // return true if the format used is the DOS/Windows one and the string looks
326 static bool IsUNCPath(const wxString
& path
, wxPathFormat format
)
328 return format
== wxPATH_DOS
&&
329 path
.length() >= 4 && // "\\a" can't be a UNC path
330 IsDOSPathSep(path
[0u]) &&
331 IsDOSPathSep(path
[1u]) &&
332 !IsDOSPathSep(path
[2u]);
335 // ----------------------------------------------------------------------------
337 // ----------------------------------------------------------------------------
339 // length of \\?\Volume{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}\ string
340 static const size_t wxMSWUniqueVolumePrefixLength
= 49;
342 } // anonymous namespace
344 // ============================================================================
346 // ============================================================================
348 // ----------------------------------------------------------------------------
349 // wxFileName construction
350 // ----------------------------------------------------------------------------
352 void wxFileName::Assign( const wxFileName
&filepath
)
354 m_volume
= filepath
.GetVolume();
355 m_dirs
= filepath
.GetDirs();
356 m_name
= filepath
.GetName();
357 m_ext
= filepath
.GetExt();
358 m_relative
= filepath
.m_relative
;
359 m_hasExt
= filepath
.m_hasExt
;
362 void wxFileName::Assign(const wxString
& volume
,
363 const wxString
& path
,
364 const wxString
& name
,
369 // we should ignore paths which look like UNC shares because we already
370 // have the volume here and the UNC notation (\\server\path) is only valid
371 // for paths which don't start with a volume, so prevent SetPath() from
372 // recognizing "\\foo\bar" in "c:\\foo\bar" as an UNC path
374 // note also that this is a rather ugly way to do what we want (passing
375 // some kind of flag telling to ignore UNC paths to SetPath() would be
376 // better) but this is the safest thing to do to avoid breaking backwards
377 // compatibility in 2.8
378 if ( IsUNCPath(path
, format
) )
380 // remove one of the 2 leading backslashes to ensure that it's not
381 // recognized as an UNC path by SetPath()
382 wxString
pathNonUNC(path
, 1, wxString::npos
);
383 SetPath(pathNonUNC
, format
);
385 else // no UNC complications
387 SetPath(path
, format
);
397 void wxFileName::SetPath( const wxString
& pathOrig
, wxPathFormat format
)
401 if ( pathOrig
.empty() )
409 format
= GetFormat( format
);
411 // 0) deal with possible volume part first
414 SplitVolume(pathOrig
, &volume
, &path
, format
);
415 if ( !volume
.empty() )
422 // 1) Determine if the path is relative or absolute.
426 // we had only the volume
430 wxChar leadingChar
= path
[0u];
435 m_relative
= leadingChar
== wxT(':');
437 // We then remove a leading ":". The reason is in our
438 // storage form for relative paths:
439 // ":dir:file.txt" actually means "./dir/file.txt" in
440 // DOS notation and should get stored as
441 // (relative) (dir) (file.txt)
442 // "::dir:file.txt" actually means "../dir/file.txt"
443 // stored as (relative) (..) (dir) (file.txt)
444 // This is important only for the Mac as an empty dir
445 // actually means <UP>, whereas under DOS, double
446 // slashes can be ignored: "\\\\" is the same as "\\".
452 // TODO: what is the relative path format here?
457 wxFAIL_MSG( wxT("Unknown path format") );
458 // !! Fall through !!
461 m_relative
= leadingChar
!= wxT('/');
465 m_relative
= !IsPathSeparator(leadingChar
, format
);
470 // 2) Break up the path into its members. If the original path
471 // was just "/" or "\\", m_dirs will be empty. We know from
472 // the m_relative field, if this means "nothing" or "root dir".
474 wxStringTokenizer
tn( path
, GetPathSeparators(format
) );
476 while ( tn
.HasMoreTokens() )
478 wxString token
= tn
.GetNextToken();
480 // Remove empty token under DOS and Unix, interpret them
484 if (format
== wxPATH_MAC
)
485 m_dirs
.Add( wxT("..") );
495 void wxFileName::Assign(const wxString
& fullpath
,
498 wxString volume
, path
, name
, ext
;
500 SplitPath(fullpath
, &volume
, &path
, &name
, &ext
, &hasExt
, format
);
502 Assign(volume
, path
, name
, ext
, hasExt
, format
);
505 void wxFileName::Assign(const wxString
& fullpathOrig
,
506 const wxString
& fullname
,
509 // always recognize fullpath as directory, even if it doesn't end with a
511 wxString fullpath
= fullpathOrig
;
512 if ( !fullpath
.empty() && !wxEndsWithPathSeparator(fullpath
) )
514 fullpath
+= GetPathSeparator(format
);
517 wxString volume
, path
, name
, ext
;
520 // do some consistency checks: the name should be really just the filename
521 // and the path should be really just a path
522 wxString volDummy
, pathDummy
, nameDummy
, extDummy
;
524 SplitPath(fullname
, &volDummy
, &pathDummy
, &name
, &ext
, &hasExt
, format
);
526 wxASSERT_MSG( volDummy
.empty() && pathDummy
.empty(),
527 wxT("the file name shouldn't contain the path") );
529 SplitPath(fullpath
, &volume
, &path
, &nameDummy
, &extDummy
, format
);
532 // This test makes no sense on an OpenVMS system.
533 wxASSERT_MSG( nameDummy
.empty() && extDummy
.empty(),
534 wxT("the path shouldn't contain file name nor extension") );
536 Assign(volume
, path
, name
, ext
, hasExt
, format
);
539 void wxFileName::Assign(const wxString
& pathOrig
,
540 const wxString
& name
,
546 SplitVolume(pathOrig
, &volume
, &path
, format
);
548 Assign(volume
, path
, name
, ext
, format
);
551 void wxFileName::AssignDir(const wxString
& dir
, wxPathFormat format
)
553 Assign(dir
, wxEmptyString
, format
);
556 void wxFileName::Clear()
562 m_ext
= wxEmptyString
;
564 // we don't have any absolute path for now
572 wxFileName
wxFileName::FileName(const wxString
& file
, wxPathFormat format
)
574 return wxFileName(file
, format
);
578 wxFileName
wxFileName::DirName(const wxString
& dir
, wxPathFormat format
)
581 fn
.AssignDir(dir
, format
);
585 // ----------------------------------------------------------------------------
587 // ----------------------------------------------------------------------------
592 // Flags for wxFileSystemObjectExists() asking it to check for:
595 wxFileSystemObject_File
= 1, // file existence
596 wxFileSystemObject_Dir
= 2, // directory existence
597 wxFileSystemObject_Other
= 4, // existence of something else, e.g.
598 // device, socket, FIFO under Unix
599 wxFileSystemObject_Any
= 7 // existence of anything at all
602 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
604 void RemoveTrailingSeparatorsFromPath(wxString
& strPath
)
606 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
607 // so remove all trailing backslashes from the path - but don't do this for
608 // the paths "d:\" (which are different from "d:"), for just "\" or for
609 // windows unique volume names ("\\?\Volume{GUID}\")
610 while ( wxEndsWithPathSeparator( strPath
) )
612 size_t len
= strPath
.length();
613 if ( len
== 1 || (len
== 3 && strPath
[len
- 2] == wxT(':')) ||
614 (len
== wxMSWUniqueVolumePrefixLength
&&
615 wxFileName::IsMSWUniqueVolumeNamePath(strPath
)))
620 strPath
.Truncate(len
- 1);
624 #endif // __WINDOWS__ || __OS2__
626 bool wxFileSystemObjectExists(const wxString
& path
, int flags
)
628 // Should the existence of file/directory with this name be accepted, i.e.
629 // result in the true return value from this function?
630 const bool acceptFile
= (flags
& wxFileSystemObject_File
) != 0;
631 const bool acceptDir
= (flags
& wxFileSystemObject_Dir
) != 0;
633 wxString
strPath(path
);
635 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
638 // Ensure that the path doesn't have any trailing separators when
639 // checking for directories.
640 RemoveTrailingSeparatorsFromPath(strPath
);
643 // we must use GetFileAttributes() instead of the ANSI C functions because
644 // it can cope with network (UNC) paths unlike them
645 DWORD ret
= ::GetFileAttributes(path
.t_str());
647 if ( ret
== INVALID_FILE_ATTRIBUTES
)
650 if ( ret
& FILE_ATTRIBUTE_DIRECTORY
)
653 // Anything else must be a file (perhaps we should check for
654 // FILE_ATTRIBUTE_REPARSE_POINT?)
656 #elif defined(__OS2__)
659 // OS/2 can't handle "d:", it wants either "d:\" or "d:."
660 if (strPath
.length() == 2 && strPath
[1u] == wxT(':'))
664 FILESTATUS3 Info
= {{0}};
665 APIRET rc
= ::DosQueryPathInfo((PSZ
)(WXSTRINGCAST strPath
), FIL_STANDARD
,
666 (void*) &Info
, sizeof(FILESTATUS3
));
668 if ( rc
== NO_ERROR
)
670 if ( Info
.attrFile
& FILE_DIRECTORY
)
676 // We consider that the path must exist if we get a sharing violation for
677 // it but we don't know what is it in this case.
678 if ( rc
== ERROR_SHARING_VIOLATION
)
679 return flags
& wxFileSystemObject_Other
;
681 // Any other error (usually ERROR_PATH_NOT_FOUND), means there is nothing
684 #else // Non-MSW, non-OS/2
686 if ( wxStat(strPath
, &st
) != 0 )
689 if ( S_ISREG(st
.st_mode
) )
691 if ( S_ISDIR(st
.st_mode
) )
694 return flags
& wxFileSystemObject_Other
;
698 } // anonymous namespace
700 bool wxFileName::FileExists() const
702 return wxFileName::FileExists( GetFullPath() );
706 bool wxFileName::FileExists( const wxString
&filePath
)
708 return wxFileSystemObjectExists(filePath
, wxFileSystemObject_File
);
711 bool wxFileName::DirExists() const
713 return wxFileName::DirExists( GetPath() );
717 bool wxFileName::DirExists( const wxString
&dirPath
)
719 return wxFileSystemObjectExists(dirPath
, wxFileSystemObject_Dir
);
723 bool wxFileName::Exists(const wxString
& path
)
725 return wxFileSystemObjectExists(path
, wxFileSystemObject_Any
);
728 // ----------------------------------------------------------------------------
729 // CWD and HOME stuff
730 // ----------------------------------------------------------------------------
732 void wxFileName::AssignCwd(const wxString
& volume
)
734 AssignDir(wxFileName::GetCwd(volume
));
738 wxString
wxFileName::GetCwd(const wxString
& volume
)
740 // if we have the volume, we must get the current directory on this drive
741 // and to do this we have to chdir to this volume - at least under Windows,
742 // I don't know how to get the current drive on another volume elsewhere
745 if ( !volume
.empty() )
748 SetCwd(volume
+ GetVolumeSeparator());
751 wxString cwd
= ::wxGetCwd();
753 if ( !volume
.empty() )
761 bool wxFileName::SetCwd() const
763 return wxFileName::SetCwd( GetPath() );
766 bool wxFileName::SetCwd( const wxString
&cwd
)
768 return ::wxSetWorkingDirectory( cwd
);
771 void wxFileName::AssignHomeDir()
773 AssignDir(wxFileName::GetHomeDir());
776 wxString
wxFileName::GetHomeDir()
778 return ::wxGetHomeDir();
782 // ----------------------------------------------------------------------------
783 // CreateTempFileName
784 // ----------------------------------------------------------------------------
786 #if wxUSE_FILE || wxUSE_FFILE
789 #if !defined wx_fdopen && defined HAVE_FDOPEN
790 #define wx_fdopen fdopen
793 // NB: GetTempFileName() under Windows creates the file, so using
794 // O_EXCL there would fail
796 #define wxOPEN_EXCL 0
798 #define wxOPEN_EXCL O_EXCL
802 #ifdef wxOpenOSFHandle
803 #define WX_HAVE_DELETE_ON_CLOSE
804 // On Windows create a file with the FILE_FLAGS_DELETE_ON_CLOSE flags.
806 static int wxOpenWithDeleteOnClose(const wxString
& filename
)
808 DWORD access
= GENERIC_READ
| GENERIC_WRITE
;
810 DWORD disposition
= OPEN_ALWAYS
;
812 DWORD attributes
= FILE_ATTRIBUTE_TEMPORARY
|
813 FILE_FLAG_DELETE_ON_CLOSE
;
815 HANDLE h
= ::CreateFile(filename
.fn_str(), access
, 0, NULL
,
816 disposition
, attributes
, NULL
);
818 return wxOpenOSFHandle(h
, wxO_BINARY
);
820 #endif // wxOpenOSFHandle
823 // Helper to open the file
825 static int wxTempOpen(const wxString
& path
, bool *deleteOnClose
)
827 #ifdef WX_HAVE_DELETE_ON_CLOSE
829 return wxOpenWithDeleteOnClose(path
);
832 *deleteOnClose
= false;
834 return wxOpen(path
, wxO_BINARY
| O_RDWR
| O_CREAT
| wxOPEN_EXCL
, 0600);
839 // Helper to open the file and attach it to the wxFFile
841 static bool wxTempOpen(wxFFile
*file
, const wxString
& path
, bool *deleteOnClose
)
844 *deleteOnClose
= false;
845 return file
->Open(path
, wxT("w+b"));
847 int fd
= wxTempOpen(path
, deleteOnClose
);
850 file
->Attach(wx_fdopen(fd
, "w+b"), path
);
851 return file
->IsOpened();
854 #endif // wxUSE_FFILE
858 #define WXFILEARGS(x, y) y
860 #define WXFILEARGS(x, y) x
862 #define WXFILEARGS(x, y) x, y
866 // Implementation of wxFileName::CreateTempFileName().
868 static wxString
wxCreateTempImpl(
869 const wxString
& prefix
,
870 WXFILEARGS(wxFile
*fileTemp
, wxFFile
*ffileTemp
),
871 bool *deleteOnClose
= NULL
)
873 #if wxUSE_FILE && wxUSE_FFILE
874 wxASSERT(fileTemp
== NULL
|| ffileTemp
== NULL
);
876 wxString path
, dir
, name
;
877 bool wantDeleteOnClose
= false;
881 // set the result to false initially
882 wantDeleteOnClose
= *deleteOnClose
;
883 *deleteOnClose
= false;
887 // easier if it alwasys points to something
888 deleteOnClose
= &wantDeleteOnClose
;
891 // use the directory specified by the prefix
892 wxFileName::SplitPath(prefix
, &dir
, &name
, NULL
/* extension */);
896 dir
= wxFileName::GetTempDir();
899 #if defined(__WXWINCE__)
900 path
= dir
+ wxT("\\") + name
;
902 while (wxFileName::FileExists(path
))
904 path
= dir
+ wxT("\\") + name
;
909 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
910 if (!::GetTempFileName(dir
.t_str(), name
.t_str(), 0,
911 wxStringBuffer(path
, MAX_PATH
+ 1)))
913 wxLogLastError(wxT("GetTempFileName"));
921 if ( !wxEndsWithPathSeparator(dir
) &&
922 (name
.empty() || !wxIsPathSeparator(name
[0u])) )
924 path
+= wxFILE_SEP_PATH
;
929 #if defined(HAVE_MKSTEMP)
930 // scratch space for mkstemp()
931 path
+= wxT("XXXXXX");
933 // we need to copy the path to the buffer in which mkstemp() can modify it
934 wxCharBuffer
buf(path
.fn_str());
936 // cast is safe because the string length doesn't change
937 int fdTemp
= mkstemp( (char*)(const char*) buf
);
940 // this might be not necessary as mkstemp() on most systems should have
941 // already done it but it doesn't hurt neither...
944 else // mkstemp() succeeded
946 path
= wxConvFile
.cMB2WX( (const char*) buf
);
949 // avoid leaking the fd
952 fileTemp
->Attach(fdTemp
);
961 ffileTemp
->Attach(wx_fdopen(fdTemp
, "r+b"), path
);
963 ffileTemp
->Open(path
, wxT("r+b"));
974 #else // !HAVE_MKSTEMP
978 path
+= wxT("XXXXXX");
980 wxCharBuffer buf
= wxConvFile
.cWX2MB( path
);
981 if ( !mktemp( (char*)(const char*) buf
) )
987 path
= wxConvFile
.cMB2WX( (const char*) buf
);
989 #else // !HAVE_MKTEMP (includes __DOS__)
990 // generate the unique file name ourselves
991 #if !defined(__DOS__)
992 path
<< (unsigned int)getpid();
997 static const size_t numTries
= 1000;
998 for ( size_t n
= 0; n
< numTries
; n
++ )
1000 // 3 hex digits is enough for numTries == 1000 < 4096
1001 pathTry
= path
+ wxString::Format(wxT("%.03x"), (unsigned int) n
);
1002 if ( !wxFileName::FileExists(pathTry
) )
1011 #endif // HAVE_MKTEMP/!HAVE_MKTEMP
1013 #endif // HAVE_MKSTEMP/!HAVE_MKSTEMP
1015 #endif // Windows/!Windows
1019 wxLogSysError(_("Failed to create a temporary file name"));
1025 // open the file - of course, there is a race condition here, this is
1026 // why we always prefer using mkstemp()...
1028 if ( fileTemp
&& !fileTemp
->IsOpened() )
1030 *deleteOnClose
= wantDeleteOnClose
;
1031 int fd
= wxTempOpen(path
, deleteOnClose
);
1033 fileTemp
->Attach(fd
);
1040 if ( ffileTemp
&& !ffileTemp
->IsOpened() )
1042 *deleteOnClose
= wantDeleteOnClose
;
1043 ok
= wxTempOpen(ffileTemp
, path
, deleteOnClose
);
1049 // FIXME: If !ok here should we loop and try again with another
1050 // file name? That is the standard recourse if open(O_EXCL)
1051 // fails, though of course it should be protected against
1052 // possible infinite looping too.
1054 wxLogError(_("Failed to open temporary file."));
1064 static bool wxCreateTempImpl(
1065 const wxString
& prefix
,
1066 WXFILEARGS(wxFile
*fileTemp
, wxFFile
*ffileTemp
),
1069 bool deleteOnClose
= true;
1071 *name
= wxCreateTempImpl(prefix
,
1072 WXFILEARGS(fileTemp
, ffileTemp
),
1075 bool ok
= !name
->empty();
1080 else if (ok
&& wxRemoveFile(*name
))
1088 static void wxAssignTempImpl(
1090 const wxString
& prefix
,
1091 WXFILEARGS(wxFile
*fileTemp
, wxFFile
*ffileTemp
))
1094 tempname
= wxCreateTempImpl(prefix
, WXFILEARGS(fileTemp
, ffileTemp
));
1096 if ( tempname
.empty() )
1098 // error, failed to get temp file name
1103 fn
->Assign(tempname
);
1108 void wxFileName::AssignTempFileName(const wxString
& prefix
)
1110 wxAssignTempImpl(this, prefix
, WXFILEARGS(NULL
, NULL
));
1114 wxString
wxFileName::CreateTempFileName(const wxString
& prefix
)
1116 return wxCreateTempImpl(prefix
, WXFILEARGS(NULL
, NULL
));
1119 #endif // wxUSE_FILE || wxUSE_FFILE
1124 wxString
wxCreateTempFileName(const wxString
& prefix
,
1126 bool *deleteOnClose
)
1128 return wxCreateTempImpl(prefix
, WXFILEARGS(fileTemp
, NULL
), deleteOnClose
);
1131 bool wxCreateTempFile(const wxString
& prefix
,
1135 return wxCreateTempImpl(prefix
, WXFILEARGS(fileTemp
, NULL
), name
);
1138 void wxFileName::AssignTempFileName(const wxString
& prefix
, wxFile
*fileTemp
)
1140 wxAssignTempImpl(this, prefix
, WXFILEARGS(fileTemp
, NULL
));
1145 wxFileName::CreateTempFileName(const wxString
& prefix
, wxFile
*fileTemp
)
1147 return wxCreateTempFileName(prefix
, fileTemp
);
1150 #endif // wxUSE_FILE
1155 wxString
wxCreateTempFileName(const wxString
& prefix
,
1157 bool *deleteOnClose
)
1159 return wxCreateTempImpl(prefix
, WXFILEARGS(NULL
, fileTemp
), deleteOnClose
);
1162 bool wxCreateTempFile(const wxString
& prefix
,
1166 return wxCreateTempImpl(prefix
, WXFILEARGS(NULL
, fileTemp
), name
);
1170 void wxFileName::AssignTempFileName(const wxString
& prefix
, wxFFile
*fileTemp
)
1172 wxAssignTempImpl(this, prefix
, WXFILEARGS(NULL
, fileTemp
));
1177 wxFileName::CreateTempFileName(const wxString
& prefix
, wxFFile
*fileTemp
)
1179 return wxCreateTempFileName(prefix
, fileTemp
);
1182 #endif // wxUSE_FFILE
1185 // ----------------------------------------------------------------------------
1186 // directory operations
1187 // ----------------------------------------------------------------------------
1189 // helper of GetTempDir(): check if the given directory exists and return it if
1190 // it does or an empty string otherwise
1194 wxString
CheckIfDirExists(const wxString
& dir
)
1196 return wxFileName::DirExists(dir
) ? dir
: wxString();
1199 } // anonymous namespace
1201 wxString
wxFileName::GetTempDir()
1203 // first try getting it from environment: this allows overriding the values
1204 // used by default if the user wants to create temporary files in another
1206 wxString dir
= CheckIfDirExists(wxGetenv("TMPDIR"));
1209 dir
= CheckIfDirExists(wxGetenv("TMP"));
1211 dir
= CheckIfDirExists(wxGetenv("TEMP"));
1214 // if no environment variables are set, use the system default
1217 #if defined(__WXWINCE__)
1218 dir
= CheckIfDirExists(wxT("\\temp"));
1219 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1220 if ( !::GetTempPath(MAX_PATH
, wxStringBuffer(dir
, MAX_PATH
+ 1)) )
1222 wxLogLastError(wxT("GetTempPath"));
1224 #elif defined(__WXMAC__) && wxOSX_USE_CARBON
1225 dir
= wxMacFindFolderNoSeparator(short(kOnSystemDisk
), kTemporaryFolderType
, kCreateFolder
);
1226 #endif // systems with native way
1228 else // we got directory from an environment variable
1230 // remove any trailing path separators, we don't want to ever return
1231 // them from this function for consistency
1232 const size_t lastNonSep
= dir
.find_last_not_of(GetPathSeparators());
1233 if ( lastNonSep
== wxString::npos
)
1235 // the string consists entirely of separators, leave only one
1236 dir
= GetPathSeparator();
1240 dir
.erase(lastNonSep
+ 1);
1244 // fall back to hard coded value
1247 #ifdef __UNIX_LIKE__
1248 dir
= CheckIfDirExists("/tmp");
1250 #endif // __UNIX_LIKE__
1257 bool wxFileName::Mkdir( int perm
, int flags
) const
1259 return wxFileName::Mkdir(GetPath(), perm
, flags
);
1262 bool wxFileName::Mkdir( const wxString
& dir
, int perm
, int flags
)
1264 if ( flags
& wxPATH_MKDIR_FULL
)
1266 // split the path in components
1267 wxFileName filename
;
1268 filename
.AssignDir(dir
);
1271 if ( filename
.HasVolume())
1273 currPath
<< wxGetVolumeString(filename
.GetVolume(), wxPATH_NATIVE
);
1276 wxArrayString dirs
= filename
.GetDirs();
1277 size_t count
= dirs
.GetCount();
1278 for ( size_t i
= 0; i
< count
; i
++ )
1280 if ( i
> 0 || filename
.IsAbsolute() )
1281 currPath
+= wxFILE_SEP_PATH
;
1282 currPath
+= dirs
[i
];
1284 if (!DirExists(currPath
))
1286 if (!wxMkdir(currPath
, perm
))
1288 // no need to try creating further directories
1298 return ::wxMkdir( dir
, perm
);
1301 bool wxFileName::Rmdir(int flags
) const
1303 return wxFileName::Rmdir( GetPath(), flags
);
1306 bool wxFileName::Rmdir(const wxString
& dir
, int flags
)
1309 if ( flags
& wxPATH_RMDIR_RECURSIVE
)
1311 // SHFileOperation needs double null termination string
1312 // but without separator at the end of the path
1314 if ( path
.Last() == wxFILE_SEP_PATH
)
1318 SHFILEOPSTRUCT fileop
;
1319 wxZeroMemory(fileop
);
1320 fileop
.wFunc
= FO_DELETE
;
1321 #if defined(__CYGWIN__) && defined(wxUSE_UNICODE)
1322 fileop
.pFrom
= path
.wc_str();
1324 fileop
.pFrom
= path
.fn_str();
1326 fileop
.fFlags
= FOF_SILENT
| FOF_NOCONFIRMATION
;
1328 // FOF_NOERRORUI is not defined in WinCE
1329 fileop
.fFlags
|= FOF_NOERRORUI
;
1332 int ret
= SHFileOperation(&fileop
);
1335 // SHFileOperation may return non-Win32 error codes, so the error
1336 // message can be incorrect
1337 wxLogApiError(wxT("SHFileOperation"), ret
);
1343 else if ( flags
& wxPATH_RMDIR_FULL
)
1344 #else // !__WINDOWS__
1345 if ( flags
!= 0 ) // wxPATH_RMDIR_FULL or wxPATH_RMDIR_RECURSIVE
1346 #endif // !__WINDOWS__
1349 if ( path
.Last() != wxFILE_SEP_PATH
)
1350 path
+= wxFILE_SEP_PATH
;
1354 if ( !d
.IsOpened() )
1359 // first delete all subdirectories
1360 bool cont
= d
.GetFirst(&filename
, "", wxDIR_DIRS
| wxDIR_HIDDEN
);
1363 wxFileName::Rmdir(path
+ filename
, flags
);
1364 cont
= d
.GetNext(&filename
);
1368 if ( flags
& wxPATH_RMDIR_RECURSIVE
)
1370 // delete all files too
1371 cont
= d
.GetFirst(&filename
, "", wxDIR_FILES
| wxDIR_HIDDEN
);
1374 ::wxRemoveFile(path
+ filename
);
1375 cont
= d
.GetNext(&filename
);
1378 #endif // !__WINDOWS__
1381 return ::wxRmdir(dir
);
1384 // ----------------------------------------------------------------------------
1385 // path normalization
1386 // ----------------------------------------------------------------------------
1388 bool wxFileName::Normalize(int flags
,
1389 const wxString
& cwd
,
1390 wxPathFormat format
)
1392 // deal with env vars renaming first as this may seriously change the path
1393 if ( flags
& wxPATH_NORM_ENV_VARS
)
1395 wxString pathOrig
= GetFullPath(format
);
1396 wxString path
= wxExpandEnvVars(pathOrig
);
1397 if ( path
!= pathOrig
)
1403 // the existing path components
1404 wxArrayString dirs
= GetDirs();
1406 // the path to prepend in front to make the path absolute
1409 format
= GetFormat(format
);
1411 // set up the directory to use for making the path absolute later
1412 if ( (flags
& wxPATH_NORM_ABSOLUTE
) && !IsAbsolute(format
) )
1416 curDir
.AssignCwd(GetVolume());
1418 else // cwd provided
1420 curDir
.AssignDir(cwd
);
1424 // handle ~ stuff under Unix only
1425 if ( (format
== wxPATH_UNIX
) && (flags
& wxPATH_NORM_TILDE
) && m_relative
)
1427 if ( !dirs
.IsEmpty() )
1429 wxString dir
= dirs
[0u];
1430 if ( !dir
.empty() && dir
[0u] == wxT('~') )
1432 // to make the path absolute use the home directory
1433 curDir
.AssignDir(wxGetUserHome(dir
.c_str() + 1));
1439 // transform relative path into abs one
1440 if ( curDir
.IsOk() )
1442 // this path may be relative because it doesn't have the volume name
1443 // and still have m_relative=true; in this case we shouldn't modify
1444 // our directory components but just set the current volume
1445 if ( !HasVolume() && curDir
.HasVolume() )
1447 SetVolume(curDir
.GetVolume());
1451 // yes, it was the case - we don't need curDir then
1456 // finally, prepend curDir to the dirs array
1457 wxArrayString dirsNew
= curDir
.GetDirs();
1458 WX_PREPEND_ARRAY(dirs
, dirsNew
);
1460 // if we used e.g. tilde expansion previously and wxGetUserHome didn't
1461 // return for some reason an absolute path, then curDir maybe not be absolute!
1462 if ( !curDir
.m_relative
)
1464 // we have prepended an absolute path and thus we are now an absolute
1468 // else if (flags & wxPATH_NORM_ABSOLUTE):
1469 // should we warn the user that we didn't manage to make the path absolute?
1472 // now deal with ".", ".." and the rest
1474 size_t count
= dirs
.GetCount();
1475 for ( size_t n
= 0; n
< count
; n
++ )
1477 wxString dir
= dirs
[n
];
1479 if ( flags
& wxPATH_NORM_DOTS
)
1481 if ( dir
== wxT(".") )
1487 if ( dir
== wxT("..") )
1489 if ( m_dirs
.empty() )
1491 // We have more ".." than directory components so far.
1492 // Don't treat this as an error as the path could have been
1493 // entered by user so try to handle it reasonably: if the
1494 // path is absolute, just ignore the extra ".." because
1495 // "/.." is the same as "/". Otherwise, i.e. for relative
1496 // paths, keep ".." unchanged because removing it would
1497 // modify the file a relative path refers to.
1502 else // Normal case, go one step up.
1513 #if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE
1514 if ( (flags
& wxPATH_NORM_SHORTCUT
) )
1517 if (GetShortcutTarget(GetFullPath(format
), filename
))
1525 #if defined(__WIN32__)
1526 if ( (flags
& wxPATH_NORM_LONG
) && (format
== wxPATH_DOS
) )
1528 Assign(GetLongPath());
1532 // Change case (this should be kept at the end of the function, to ensure
1533 // that the path doesn't change any more after we normalize its case)
1534 if ( (flags
& wxPATH_NORM_CASE
) && !IsCaseSensitive(format
) )
1536 m_volume
.MakeLower();
1540 // directory entries must be made lower case as well
1541 count
= m_dirs
.GetCount();
1542 for ( size_t i
= 0; i
< count
; i
++ )
1544 m_dirs
[i
].MakeLower();
1552 bool wxFileName::ReplaceEnvVariable(const wxString
& envname
,
1553 const wxString
& replacementFmtString
,
1554 wxPathFormat format
)
1556 // look into stringForm for the contents of the given environment variable
1558 if (envname
.empty() ||
1559 !wxGetEnv(envname
, &val
))
1564 wxString stringForm
= GetPath(wxPATH_GET_VOLUME
, format
);
1565 // do not touch the file name and the extension
1567 wxString replacement
= wxString::Format(replacementFmtString
, envname
);
1568 stringForm
.Replace(val
, replacement
);
1570 // Now assign ourselves the modified path:
1571 Assign(stringForm
, GetFullName(), format
);
1577 bool wxFileName::ReplaceHomeDir(wxPathFormat format
)
1579 wxString homedir
= wxGetHomeDir();
1580 if (homedir
.empty())
1583 wxString stringForm
= GetPath(wxPATH_GET_VOLUME
, format
);
1584 // do not touch the file name and the extension
1586 stringForm
.Replace(homedir
, "~");
1588 // Now assign ourselves the modified path:
1589 Assign(stringForm
, GetFullName(), format
);
1594 // ----------------------------------------------------------------------------
1595 // get the shortcut target
1596 // ----------------------------------------------------------------------------
1598 // WinCE (3) doesn't have CLSID_ShellLink, IID_IShellLink definitions.
1599 // The .lnk file is a plain text file so it should be easy to
1600 // make it work. Hint from Google Groups:
1601 // "If you open up a lnk file, you'll see a
1602 // number, followed by a pound sign (#), followed by more text. The
1603 // number is the number of characters that follows the pound sign. The
1604 // characters after the pound sign are the command line (which _can_
1605 // include arguments) to be executed. Any path (e.g. \windows\program
1606 // files\myapp.exe) that includes spaces needs to be enclosed in
1607 // quotation marks."
1609 #if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE
1610 // The following lines are necessary under WinCE
1611 // #include "wx/msw/private.h"
1612 // #include <ole2.h>
1614 #if defined(__WXWINCE__)
1615 #include <shlguid.h>
1618 bool wxFileName::GetShortcutTarget(const wxString
& shortcutPath
,
1619 wxString
& targetFilename
,
1620 wxString
* arguments
) const
1622 wxString path
, file
, ext
;
1623 wxFileName::SplitPath(shortcutPath
, & path
, & file
, & ext
);
1627 bool success
= false;
1629 // Assume it's not a shortcut if it doesn't end with lnk
1630 if (ext
.CmpNoCase(wxT("lnk"))!=0)
1633 // create a ShellLink object
1634 hres
= CoCreateInstance(CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
1635 IID_IShellLink
, (LPVOID
*) &psl
);
1637 if (SUCCEEDED(hres
))
1640 hres
= psl
->QueryInterface( IID_IPersistFile
, (LPVOID
*) &ppf
);
1641 if (SUCCEEDED(hres
))
1643 WCHAR wsz
[MAX_PATH
];
1645 MultiByteToWideChar(CP_ACP
, MB_PRECOMPOSED
, shortcutPath
.mb_str(), -1, wsz
,
1648 hres
= ppf
->Load(wsz
, 0);
1651 if (SUCCEEDED(hres
))
1654 // Wrong prototype in early versions
1655 #if defined(__MINGW32__) && !wxCHECK_W32API_VERSION(2, 2)
1656 psl
->GetPath((CHAR
*) buf
, 2048, NULL
, SLGP_UNCPRIORITY
);
1658 psl
->GetPath(buf
, 2048, NULL
, SLGP_UNCPRIORITY
);
1660 targetFilename
= wxString(buf
);
1661 success
= (shortcutPath
!= targetFilename
);
1663 psl
->GetArguments(buf
, 2048);
1665 if (!args
.empty() && arguments
)
1677 #endif // __WIN32__ && !__WXWINCE__
1680 // ----------------------------------------------------------------------------
1681 // absolute/relative paths
1682 // ----------------------------------------------------------------------------
1684 bool wxFileName::IsAbsolute(wxPathFormat format
) const
1686 // unix paths beginning with ~ are reported as being absolute
1687 if ( format
== wxPATH_UNIX
)
1689 if ( !m_dirs
.IsEmpty() )
1691 wxString dir
= m_dirs
[0u];
1693 if (!dir
.empty() && dir
[0u] == wxT('~'))
1698 // if our path doesn't start with a path separator, it's not an absolute
1703 if ( !GetVolumeSeparator(format
).empty() )
1705 // this format has volumes and an absolute path must have one, it's not
1706 // enough to have the full path to be an absolute file under Windows
1707 if ( GetVolume().empty() )
1714 bool wxFileName::MakeRelativeTo(const wxString
& pathBase
, wxPathFormat format
)
1716 wxFileName fnBase
= wxFileName::DirName(pathBase
, format
);
1718 // get cwd only once - small time saving
1719 wxString cwd
= wxGetCwd();
1720 Normalize(wxPATH_NORM_ALL
& ~wxPATH_NORM_CASE
, cwd
, format
);
1721 fnBase
.Normalize(wxPATH_NORM_ALL
& ~wxPATH_NORM_CASE
, cwd
, format
);
1723 bool withCase
= IsCaseSensitive(format
);
1725 // we can't do anything if the files live on different volumes
1726 if ( !GetVolume().IsSameAs(fnBase
.GetVolume(), withCase
) )
1732 // same drive, so we don't need our volume
1735 // remove common directories starting at the top
1736 while ( !m_dirs
.IsEmpty() && !fnBase
.m_dirs
.IsEmpty() &&
1737 m_dirs
[0u].IsSameAs(fnBase
.m_dirs
[0u], withCase
) )
1740 fnBase
.m_dirs
.RemoveAt(0);
1743 // add as many ".." as needed
1744 size_t count
= fnBase
.m_dirs
.GetCount();
1745 for ( size_t i
= 0; i
< count
; i
++ )
1747 m_dirs
.Insert(wxT(".."), 0u);
1750 if ( format
== wxPATH_UNIX
|| format
== wxPATH_DOS
)
1752 // a directory made relative with respect to itself is '.' under Unix
1753 // and DOS, by definition (but we don't have to insert "./" for the
1755 if ( m_dirs
.IsEmpty() && IsDir() )
1757 m_dirs
.Add(wxT('.'));
1767 // ----------------------------------------------------------------------------
1768 // filename kind tests
1769 // ----------------------------------------------------------------------------
1771 bool wxFileName::SameAs(const wxFileName
& filepath
, wxPathFormat format
) const
1773 wxFileName fn1
= *this,
1776 // get cwd only once - small time saving
1777 wxString cwd
= wxGetCwd();
1778 fn1
.Normalize(wxPATH_NORM_ALL
| wxPATH_NORM_CASE
, cwd
, format
);
1779 fn2
.Normalize(wxPATH_NORM_ALL
| wxPATH_NORM_CASE
, cwd
, format
);
1781 if ( fn1
.GetFullPath() == fn2
.GetFullPath() )
1784 #if defined(__UNIX__)
1785 wxStructStat st1
, st2
;
1786 if ( wxStat(fn1
.GetFullPath(), &st1
) == 0 &&
1787 wxStat(fn2
.GetFullPath(), &st2
) == 0 )
1789 if ( st1
.st_ino
== st2
.st_ino
&& st1
.st_dev
== st2
.st_dev
)
1792 //else: It's not an error if one or both files don't exist.
1793 #endif // defined __UNIX__
1799 bool wxFileName::IsCaseSensitive( wxPathFormat format
)
1801 // only Unix filenames are truely case-sensitive
1802 return GetFormat(format
) == wxPATH_UNIX
;
1806 wxString
wxFileName::GetForbiddenChars(wxPathFormat format
)
1808 // Inits to forbidden characters that are common to (almost) all platforms.
1809 wxString strForbiddenChars
= wxT("*?");
1811 // If asserts, wxPathFormat has been changed. In case of a new path format
1812 // addition, the following code might have to be updated.
1813 wxCOMPILE_TIME_ASSERT(wxPATH_MAX
== 5, wxPathFormatChanged
);
1814 switch ( GetFormat(format
) )
1817 wxFAIL_MSG( wxT("Unknown path format") );
1818 // !! Fall through !!
1824 // On a Mac even names with * and ? are allowed (Tested with OS
1825 // 9.2.1 and OS X 10.2.5)
1826 strForbiddenChars
= wxEmptyString
;
1830 strForbiddenChars
+= wxT("\\/:\"<>|");
1837 return strForbiddenChars
;
1841 wxString
wxFileName::GetVolumeSeparator(wxPathFormat
WXUNUSED_IN_WINCE(format
))
1844 return wxEmptyString
;
1848 if ( (GetFormat(format
) == wxPATH_DOS
) ||
1849 (GetFormat(format
) == wxPATH_VMS
) )
1851 sepVol
= wxFILE_SEP_DSK
;
1860 wxString
wxFileName::GetPathSeparators(wxPathFormat format
)
1863 switch ( GetFormat(format
) )
1866 // accept both as native APIs do but put the native one first as
1867 // this is the one we use in GetFullPath()
1868 seps
<< wxFILE_SEP_PATH_DOS
<< wxFILE_SEP_PATH_UNIX
;
1872 wxFAIL_MSG( wxT("Unknown wxPATH_XXX style") );
1876 seps
= wxFILE_SEP_PATH_UNIX
;
1880 seps
= wxFILE_SEP_PATH_MAC
;
1884 seps
= wxFILE_SEP_PATH_VMS
;
1892 wxString
wxFileName::GetPathTerminators(wxPathFormat format
)
1894 format
= GetFormat(format
);
1896 // under VMS the end of the path is ']', not the path separator used to
1897 // separate the components
1898 return format
== wxPATH_VMS
? wxString(wxT(']')) : GetPathSeparators(format
);
1902 bool wxFileName::IsPathSeparator(wxChar ch
, wxPathFormat format
)
1904 // wxString::Find() doesn't work as expected with NUL - it will always find
1905 // it, so test for it separately
1906 return ch
!= wxT('\0') && GetPathSeparators(format
).Find(ch
) != wxNOT_FOUND
;
1911 wxFileName::IsMSWUniqueVolumeNamePath(const wxString
& path
, wxPathFormat format
)
1913 // return true if the format used is the DOS/Windows one and the string begins
1914 // with a Windows unique volume name ("\\?\Volume{guid}\")
1915 return format
== wxPATH_DOS
&&
1916 path
.length() >= wxMSWUniqueVolumePrefixLength
&&
1917 path
.StartsWith(wxS("\\\\?\\Volume{")) &&
1918 path
[wxMSWUniqueVolumePrefixLength
- 1] == wxFILE_SEP_PATH_DOS
;
1921 // ----------------------------------------------------------------------------
1922 // path components manipulation
1923 // ----------------------------------------------------------------------------
1925 /* static */ bool wxFileName::IsValidDirComponent(const wxString
& dir
)
1929 wxFAIL_MSG( wxT("empty directory passed to wxFileName::InsertDir()") );
1934 const size_t len
= dir
.length();
1935 for ( size_t n
= 0; n
< len
; n
++ )
1937 if ( dir
[n
] == GetVolumeSeparator() || IsPathSeparator(dir
[n
]) )
1939 wxFAIL_MSG( wxT("invalid directory component in wxFileName") );
1948 void wxFileName::AppendDir( const wxString
& dir
)
1950 if ( IsValidDirComponent(dir
) )
1954 void wxFileName::PrependDir( const wxString
& dir
)
1959 void wxFileName::InsertDir(size_t before
, const wxString
& dir
)
1961 if ( IsValidDirComponent(dir
) )
1962 m_dirs
.Insert(dir
, before
);
1965 void wxFileName::RemoveDir(size_t pos
)
1967 m_dirs
.RemoveAt(pos
);
1970 // ----------------------------------------------------------------------------
1972 // ----------------------------------------------------------------------------
1974 void wxFileName::SetFullName(const wxString
& fullname
)
1976 SplitPath(fullname
, NULL
/* no volume */, NULL
/* no path */,
1977 &m_name
, &m_ext
, &m_hasExt
);
1980 wxString
wxFileName::GetFullName() const
1982 wxString fullname
= m_name
;
1985 fullname
<< wxFILE_SEP_EXT
<< m_ext
;
1991 wxString
wxFileName::GetPath( int flags
, wxPathFormat format
) const
1993 format
= GetFormat( format
);
1997 // return the volume with the path as well if requested
1998 if ( flags
& wxPATH_GET_VOLUME
)
2000 fullpath
+= wxGetVolumeString(GetVolume(), format
);
2003 // the leading character
2008 fullpath
+= wxFILE_SEP_PATH_MAC
;
2013 fullpath
+= wxFILE_SEP_PATH_DOS
;
2017 wxFAIL_MSG( wxT("Unknown path format") );
2023 fullpath
+= wxFILE_SEP_PATH_UNIX
;
2028 // no leading character here but use this place to unset
2029 // wxPATH_GET_SEPARATOR flag: under VMS it doesn't make sense
2030 // as, if I understand correctly, there should never be a dot
2031 // before the closing bracket
2032 flags
&= ~wxPATH_GET_SEPARATOR
;
2035 if ( m_dirs
.empty() )
2037 // there is nothing more
2041 // then concatenate all the path components using the path separator
2042 if ( format
== wxPATH_VMS
)
2044 fullpath
+= wxT('[');
2047 const size_t dirCount
= m_dirs
.GetCount();
2048 for ( size_t i
= 0; i
< dirCount
; i
++ )
2053 if ( m_dirs
[i
] == wxT(".") )
2055 // skip appending ':', this shouldn't be done in this
2056 // case as "::" is interpreted as ".." under Unix
2060 // convert back from ".." to nothing
2061 if ( !m_dirs
[i
].IsSameAs(wxT("..")) )
2062 fullpath
+= m_dirs
[i
];
2066 wxFAIL_MSG( wxT("Unexpected path format") );
2067 // still fall through
2071 fullpath
+= m_dirs
[i
];
2075 // TODO: What to do with ".." under VMS
2077 // convert back from ".." to nothing
2078 if ( !m_dirs
[i
].IsSameAs(wxT("..")) )
2079 fullpath
+= m_dirs
[i
];
2083 if ( (flags
& wxPATH_GET_SEPARATOR
) || (i
!= dirCount
- 1) )
2084 fullpath
+= GetPathSeparator(format
);
2087 if ( format
== wxPATH_VMS
)
2089 fullpath
+= wxT(']');
2095 wxString
wxFileName::GetFullPath( wxPathFormat format
) const
2097 // we already have a function to get the path
2098 wxString fullpath
= GetPath(wxPATH_GET_VOLUME
| wxPATH_GET_SEPARATOR
,
2101 // now just add the file name and extension to it
2102 fullpath
+= GetFullName();
2107 // Return the short form of the path (returns identity on non-Windows platforms)
2108 wxString
wxFileName::GetShortPath() const
2110 wxString
path(GetFullPath());
2112 #if defined(__WINDOWS__) && defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
2113 DWORD sz
= ::GetShortPathName(path
.t_str(), NULL
, 0);
2117 if ( ::GetShortPathName
2120 wxStringBuffer(pathOut
, sz
),
2132 // Return the long form of the path (returns identity on non-Windows platforms)
2133 wxString
wxFileName::GetLongPath() const
2136 path
= GetFullPath();
2138 #if defined(__WIN32__) && !defined(__WXWINCE__) && !defined(__WXMICROWIN__)
2140 #if wxUSE_DYNLIB_CLASS
2141 typedef DWORD (WINAPI
*GET_LONG_PATH_NAME
)(const wxChar
*, wxChar
*, DWORD
);
2143 // this is MT-safe as in the worst case we're going to resolve the function
2144 // twice -- but as the result is the same in both threads, it's ok
2145 static GET_LONG_PATH_NAME s_pfnGetLongPathName
= NULL
;
2146 if ( !s_pfnGetLongPathName
)
2148 static bool s_triedToLoad
= false;
2150 if ( !s_triedToLoad
)
2152 s_triedToLoad
= true;
2154 wxDynamicLibrary
dllKernel(wxT("kernel32"));
2156 const wxChar
* GetLongPathName
= wxT("GetLongPathName")
2161 #endif // Unicode/ANSI
2163 if ( dllKernel
.HasSymbol(GetLongPathName
) )
2165 s_pfnGetLongPathName
= (GET_LONG_PATH_NAME
)
2166 dllKernel
.GetSymbol(GetLongPathName
);
2169 // note that kernel32.dll can be unloaded, it stays in memory
2170 // anyhow as all Win32 programs link to it and so it's safe to call
2171 // GetLongPathName() even after unloading it
2175 if ( s_pfnGetLongPathName
)
2177 DWORD dwSize
= (*s_pfnGetLongPathName
)(path
.t_str(), NULL
, 0);
2180 if ( (*s_pfnGetLongPathName
)
2183 wxStringBuffer(pathOut
, dwSize
),
2191 #endif // wxUSE_DYNLIB_CLASS
2193 // The OS didn't support GetLongPathName, or some other error.
2194 // We need to call FindFirstFile on each component in turn.
2196 WIN32_FIND_DATA findFileData
;
2200 pathOut
= GetVolume() +
2201 GetVolumeSeparator(wxPATH_DOS
) +
2202 GetPathSeparator(wxPATH_DOS
);
2204 pathOut
= wxEmptyString
;
2206 wxArrayString dirs
= GetDirs();
2207 dirs
.Add(GetFullName());
2211 size_t count
= dirs
.GetCount();
2212 for ( size_t i
= 0; i
< count
; i
++ )
2214 const wxString
& dir
= dirs
[i
];
2216 // We're using pathOut to collect the long-name path, but using a
2217 // temporary for appending the last path component which may be
2219 tmpPath
= pathOut
+ dir
;
2221 // We must not process "." or ".." here as they would be (unexpectedly)
2222 // replaced by the corresponding directory names so just leave them
2225 // And we can't pass a drive and root dir to FindFirstFile (VZ: why?)
2226 if ( tmpPath
.empty() || dir
== '.' || dir
== ".." ||
2227 tmpPath
.Last() == GetVolumeSeparator(wxPATH_DOS
) )
2229 tmpPath
+= wxFILE_SEP_PATH
;
2234 hFind
= ::FindFirstFile(tmpPath
.t_str(), &findFileData
);
2235 if (hFind
== INVALID_HANDLE_VALUE
)
2237 // Error: most likely reason is that path doesn't exist, so
2238 // append any unprocessed parts and return
2239 for ( i
+= 1; i
< count
; i
++ )
2240 tmpPath
+= wxFILE_SEP_PATH
+ dirs
[i
];
2245 pathOut
+= findFileData
.cFileName
;
2246 if ( (i
< (count
-1)) )
2247 pathOut
+= wxFILE_SEP_PATH
;
2253 #endif // Win32/!Win32
2258 wxPathFormat
wxFileName::GetFormat( wxPathFormat format
)
2260 if (format
== wxPATH_NATIVE
)
2262 #if defined(__WINDOWS__) || defined(__OS2__) || defined(__DOS__)
2263 format
= wxPATH_DOS
;
2264 #elif defined(__VMS)
2265 format
= wxPATH_VMS
;
2267 format
= wxPATH_UNIX
;
2273 #ifdef wxHAS_FILESYSTEM_VOLUMES
2276 wxString
wxFileName::GetVolumeString(char drive
, int flags
)
2278 wxASSERT_MSG( !(flags
& ~wxPATH_GET_SEPARATOR
), "invalid flag specified" );
2280 wxString
vol(drive
);
2281 vol
+= wxFILE_SEP_DSK
;
2282 if ( flags
& wxPATH_GET_SEPARATOR
)
2283 vol
+= wxFILE_SEP_PATH
;
2288 #endif // wxHAS_FILESYSTEM_VOLUMES
2290 // ----------------------------------------------------------------------------
2291 // path splitting function
2292 // ----------------------------------------------------------------------------
2296 wxFileName::SplitVolume(const wxString
& fullpathWithVolume
,
2297 wxString
*pstrVolume
,
2299 wxPathFormat format
)
2301 format
= GetFormat(format
);
2303 wxString fullpath
= fullpathWithVolume
;
2305 if ( IsMSWUniqueVolumeNamePath(fullpath
, format
) )
2307 // special Windows unique volume names hack: transform
2308 // \\?\Volume{guid}\path into Volume{guid}:path
2309 // note: this check must be done before the check for UNC path
2311 // we know the last backslash from the unique volume name is located
2312 // there from IsMSWUniqueVolumeNamePath
2313 fullpath
[wxMSWUniqueVolumePrefixLength
- 1] = wxFILE_SEP_DSK
;
2315 // paths starting with a unique volume name should always be absolute
2316 fullpath
.insert(wxMSWUniqueVolumePrefixLength
, 1, wxFILE_SEP_PATH_DOS
);
2318 // remove the leading "\\?\" part
2319 fullpath
.erase(0, 4);
2321 else if ( IsUNCPath(fullpath
, format
) )
2323 // special Windows UNC paths hack: transform \\share\path into share:path
2325 fullpath
.erase(0, 2);
2327 size_t posFirstSlash
=
2328 fullpath
.find_first_of(GetPathTerminators(format
));
2329 if ( posFirstSlash
!= wxString::npos
)
2331 fullpath
[posFirstSlash
] = wxFILE_SEP_DSK
;
2333 // UNC paths are always absolute, right? (FIXME)
2334 fullpath
.insert(posFirstSlash
+ 1, 1, wxFILE_SEP_PATH_DOS
);
2338 // We separate the volume here
2339 if ( format
== wxPATH_DOS
|| format
== wxPATH_VMS
)
2341 wxString sepVol
= GetVolumeSeparator(format
);
2343 // we have to exclude the case of a colon in the very beginning of the
2344 // string as it can't be a volume separator (nor can this be a valid
2345 // DOS file name at all but we'll leave dealing with this to our caller)
2346 size_t posFirstColon
= fullpath
.find_first_of(sepVol
);
2347 if ( posFirstColon
&& posFirstColon
!= wxString::npos
)
2351 *pstrVolume
= fullpath
.Left(posFirstColon
);
2354 // remove the volume name and the separator from the full path
2355 fullpath
.erase(0, posFirstColon
+ sepVol
.length());
2360 *pstrPath
= fullpath
;
2364 void wxFileName::SplitPath(const wxString
& fullpathWithVolume
,
2365 wxString
*pstrVolume
,
2370 wxPathFormat format
)
2372 format
= GetFormat(format
);
2375 SplitVolume(fullpathWithVolume
, pstrVolume
, &fullpath
, format
);
2377 // find the positions of the last dot and last path separator in the path
2378 size_t posLastDot
= fullpath
.find_last_of(wxFILE_SEP_EXT
);
2379 size_t posLastSlash
= fullpath
.find_last_of(GetPathTerminators(format
));
2381 // check whether this dot occurs at the very beginning of a path component
2382 if ( (posLastDot
!= wxString::npos
) &&
2384 IsPathSeparator(fullpath
[posLastDot
- 1]) ||
2385 (format
== wxPATH_VMS
&& fullpath
[posLastDot
- 1] == wxT(']'))) )
2387 // dot may be (and commonly -- at least under Unix -- is) the first
2388 // character of the filename, don't treat the entire filename as
2389 // extension in this case
2390 posLastDot
= wxString::npos
;
2393 // if we do have a dot and a slash, check that the dot is in the name part
2394 if ( (posLastDot
!= wxString::npos
) &&
2395 (posLastSlash
!= wxString::npos
) &&
2396 (posLastDot
< posLastSlash
) )
2398 // the dot is part of the path, not the start of the extension
2399 posLastDot
= wxString::npos
;
2402 // now fill in the variables provided by user
2405 if ( posLastSlash
== wxString::npos
)
2412 // take everything up to the path separator but take care to make
2413 // the path equal to something like '/', not empty, for the files
2414 // immediately under root directory
2415 size_t len
= posLastSlash
;
2417 // this rule does not apply to mac since we do not start with colons (sep)
2418 // except for relative paths
2419 if ( !len
&& format
!= wxPATH_MAC
)
2422 *pstrPath
= fullpath
.Left(len
);
2424 // special VMS hack: remove the initial bracket
2425 if ( format
== wxPATH_VMS
)
2427 if ( (*pstrPath
)[0u] == wxT('[') )
2428 pstrPath
->erase(0, 1);
2435 // take all characters starting from the one after the last slash and
2436 // up to, but excluding, the last dot
2437 size_t nStart
= posLastSlash
== wxString::npos
? 0 : posLastSlash
+ 1;
2439 if ( posLastDot
== wxString::npos
)
2441 // take all until the end
2442 count
= wxString::npos
;
2444 else if ( posLastSlash
== wxString::npos
)
2448 else // have both dot and slash
2450 count
= posLastDot
- posLastSlash
- 1;
2453 *pstrName
= fullpath
.Mid(nStart
, count
);
2456 // finally deal with the extension here: we have an added complication that
2457 // extension may be empty (but present) as in "foo." where trailing dot
2458 // indicates the empty extension at the end -- and hence we must remember
2459 // that we have it independently of pstrExt
2460 if ( posLastDot
== wxString::npos
)
2470 // take everything after the dot
2472 *pstrExt
= fullpath
.Mid(posLastDot
+ 1);
2479 void wxFileName::SplitPath(const wxString
& fullpath
,
2483 wxPathFormat format
)
2486 SplitPath(fullpath
, &volume
, path
, name
, ext
, format
);
2490 path
->Prepend(wxGetVolumeString(volume
, format
));
2495 wxString
wxFileName::StripExtension(const wxString
& fullpath
)
2497 wxFileName
fn(fullpath
);
2499 return fn
.GetFullPath();
2502 // ----------------------------------------------------------------------------
2504 // ----------------------------------------------------------------------------
2508 bool wxFileName::SetTimes(const wxDateTime
*dtAccess
,
2509 const wxDateTime
*dtMod
,
2510 const wxDateTime
*dtCreate
) const
2512 #if defined(__WIN32__)
2513 FILETIME ftAccess
, ftCreate
, ftWrite
;
2516 ConvertWxToFileTime(&ftCreate
, *dtCreate
);
2518 ConvertWxToFileTime(&ftAccess
, *dtAccess
);
2520 ConvertWxToFileTime(&ftWrite
, *dtMod
);
2526 if ( wxGetOsVersion() == wxOS_WINDOWS_9X
)
2528 wxLogError(_("Setting directory access times is not supported "
2529 "under this OS version"));
2534 flags
= FILE_FLAG_BACKUP_SEMANTICS
;
2538 path
= GetFullPath();
2542 wxFileHandle
fh(path
, wxFileHandle::WriteAttr
, flags
);
2545 if ( ::SetFileTime(fh
,
2546 dtCreate
? &ftCreate
: NULL
,
2547 dtAccess
? &ftAccess
: NULL
,
2548 dtMod
? &ftWrite
: NULL
) )
2553 #elif defined(__UNIX_LIKE__) || (defined(__DOS__) && defined(__WATCOMC__))
2554 wxUnusedVar(dtCreate
);
2556 if ( !dtAccess
&& !dtMod
)
2558 // can't modify the creation time anyhow, don't try
2562 // if dtAccess or dtMod is not specified, use the other one (which must be
2563 // non NULL because of the test above) for both times
2565 utm
.actime
= dtAccess
? dtAccess
->GetTicks() : dtMod
->GetTicks();
2566 utm
.modtime
= dtMod
? dtMod
->GetTicks() : dtAccess
->GetTicks();
2567 if ( utime(GetFullPath().fn_str(), &utm
) == 0 )
2571 #else // other platform
2572 wxUnusedVar(dtAccess
);
2574 wxUnusedVar(dtCreate
);
2577 wxLogSysError(_("Failed to modify file times for '%s'"),
2578 GetFullPath().c_str());
2583 bool wxFileName::Touch() const
2585 #if defined(__UNIX_LIKE__)
2586 // under Unix touching file is simple: just pass NULL to utime()
2587 if ( utime(GetFullPath().fn_str(), NULL
) == 0 )
2592 wxLogSysError(_("Failed to touch the file '%s'"), GetFullPath().c_str());
2595 #else // other platform
2596 wxDateTime dtNow
= wxDateTime::Now();
2598 return SetTimes(&dtNow
, &dtNow
, NULL
/* don't change create time */);
2602 bool wxFileName::GetTimes(wxDateTime
*dtAccess
,
2604 wxDateTime
*dtCreate
) const
2606 #if defined(__WIN32__)
2607 // we must use different methods for the files and directories under
2608 // Windows as CreateFile(GENERIC_READ) doesn't work for the directories and
2609 // CreateFile(FILE_FLAG_BACKUP_SEMANTICS) works -- but only under NT and
2612 FILETIME ftAccess
, ftCreate
, ftWrite
;
2615 // implemented in msw/dir.cpp
2616 extern bool wxGetDirectoryTimes(const wxString
& dirname
,
2617 FILETIME
*, FILETIME
*, FILETIME
*);
2619 // we should pass the path without the trailing separator to
2620 // wxGetDirectoryTimes()
2621 ok
= wxGetDirectoryTimes(GetPath(wxPATH_GET_VOLUME
),
2622 &ftAccess
, &ftCreate
, &ftWrite
);
2626 wxFileHandle
fh(GetFullPath(), wxFileHandle::ReadAttr
);
2629 ok
= ::GetFileTime(fh
,
2630 dtCreate
? &ftCreate
: NULL
,
2631 dtAccess
? &ftAccess
: NULL
,
2632 dtMod
? &ftWrite
: NULL
) != 0;
2643 ConvertFileTimeToWx(dtCreate
, ftCreate
);
2645 ConvertFileTimeToWx(dtAccess
, ftAccess
);
2647 ConvertFileTimeToWx(dtMod
, ftWrite
);
2651 #elif defined(__UNIX_LIKE__) || defined(__WXMAC__) || defined(__OS2__) || (defined(__DOS__) && defined(__WATCOMC__))
2652 // no need to test for IsDir() here
2654 if ( wxStat( GetFullPath(), &stBuf
) == 0 )
2656 // Android defines st_*time fields as unsigned long, but time_t as long,
2657 // hence the static_casts.
2659 dtAccess
->Set(static_cast<time_t>(stBuf
.st_atime
));
2661 dtMod
->Set(static_cast<time_t>(stBuf
.st_mtime
));
2663 dtCreate
->Set(static_cast<time_t>(stBuf
.st_ctime
));
2667 #else // other platform
2668 wxUnusedVar(dtAccess
);
2670 wxUnusedVar(dtCreate
);
2673 wxLogSysError(_("Failed to retrieve file times for '%s'"),
2674 GetFullPath().c_str());
2679 #endif // wxUSE_DATETIME
2682 // ----------------------------------------------------------------------------
2683 // file size functions
2684 // ----------------------------------------------------------------------------
2689 wxULongLong
wxFileName::GetSize(const wxString
&filename
)
2691 if (!wxFileExists(filename
))
2692 return wxInvalidSize
;
2694 #if defined(__WIN32__)
2695 wxFileHandle
f(filename
, wxFileHandle::ReadAttr
);
2697 return wxInvalidSize
;
2699 DWORD lpFileSizeHigh
;
2700 DWORD ret
= GetFileSize(f
, &lpFileSizeHigh
);
2701 if ( ret
== INVALID_FILE_SIZE
&& ::GetLastError() != NO_ERROR
)
2702 return wxInvalidSize
;
2704 return wxULongLong(lpFileSizeHigh
, ret
);
2705 #else // ! __WIN32__
2707 if (wxStat( filename
, &st
) != 0)
2708 return wxInvalidSize
;
2709 return wxULongLong(st
.st_size
);
2714 wxString
wxFileName::GetHumanReadableSize(const wxULongLong
&bs
,
2715 const wxString
&nullsize
,
2717 wxSizeConvention conv
)
2719 // deal with trivial case first
2720 if ( bs
== 0 || bs
== wxInvalidSize
)
2723 // depending on the convention used the multiplier may be either 1000 or
2724 // 1024 and the binary infix may be empty (for "KB") or "i" (for "KiB")
2725 double multiplier
= 1024.;
2730 case wxSIZE_CONV_TRADITIONAL
:
2731 // nothing to do, this corresponds to the default values of both
2732 // the multiplier and infix string
2735 case wxSIZE_CONV_IEC
:
2739 case wxSIZE_CONV_SI
:
2744 const double kiloByteSize
= multiplier
;
2745 const double megaByteSize
= multiplier
* kiloByteSize
;
2746 const double gigaByteSize
= multiplier
* megaByteSize
;
2747 const double teraByteSize
= multiplier
* gigaByteSize
;
2749 const double bytesize
= bs
.ToDouble();
2752 if ( bytesize
< kiloByteSize
)
2753 result
.Printf("%s B", bs
.ToString());
2754 else if ( bytesize
< megaByteSize
)
2755 result
.Printf("%.*f K%sB", precision
, bytesize
/kiloByteSize
, biInfix
);
2756 else if (bytesize
< gigaByteSize
)
2757 result
.Printf("%.*f M%sB", precision
, bytesize
/megaByteSize
, biInfix
);
2758 else if (bytesize
< teraByteSize
)
2759 result
.Printf("%.*f G%sB", precision
, bytesize
/gigaByteSize
, biInfix
);
2761 result
.Printf("%.*f T%sB", precision
, bytesize
/teraByteSize
, biInfix
);
2766 wxULongLong
wxFileName::GetSize() const
2768 return GetSize(GetFullPath());
2771 wxString
wxFileName::GetHumanReadableSize(const wxString
& failmsg
,
2773 wxSizeConvention conv
) const
2775 return GetHumanReadableSize(GetSize(), failmsg
, precision
, conv
);
2778 #endif // wxUSE_LONGLONG
2780 // ----------------------------------------------------------------------------
2781 // Mac-specific functions
2782 // ----------------------------------------------------------------------------
2784 #if defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON
2789 class MacDefaultExtensionRecord
2792 MacDefaultExtensionRecord()
2798 // default copy ctor, assignment operator and dtor are ok
2800 MacDefaultExtensionRecord(const wxString
& ext
, OSType type
, OSType creator
)
2804 m_creator
= creator
;
2812 WX_DECLARE_OBJARRAY(MacDefaultExtensionRecord
, MacDefaultExtensionArray
);
2814 bool gMacDefaultExtensionsInited
= false;
2816 #include "wx/arrimpl.cpp"
2818 WX_DEFINE_EXPORTED_OBJARRAY(MacDefaultExtensionArray
);
2820 MacDefaultExtensionArray gMacDefaultExtensions
;
2822 // load the default extensions
2823 const MacDefaultExtensionRecord gDefaults
[] =
2825 MacDefaultExtensionRecord( "txt", 'TEXT', 'ttxt' ),
2826 MacDefaultExtensionRecord( "tif", 'TIFF', '****' ),
2827 MacDefaultExtensionRecord( "jpg", 'JPEG', '****' ),
2830 void MacEnsureDefaultExtensionsLoaded()
2832 if ( !gMacDefaultExtensionsInited
)
2834 // we could load the pc exchange prefs here too
2835 for ( size_t i
= 0 ; i
< WXSIZEOF( gDefaults
) ; ++i
)
2837 gMacDefaultExtensions
.Add( gDefaults
[i
] ) ;
2839 gMacDefaultExtensionsInited
= true;
2843 } // anonymous namespace
2845 bool wxFileName::MacSetTypeAndCreator( wxUint32 type
, wxUint32 creator
)
2848 FSCatalogInfo catInfo
;
2851 if ( wxMacPathToFSRef( GetFullPath() , &fsRef
) == noErr
)
2853 if ( FSGetCatalogInfo (&fsRef
, kFSCatInfoFinderInfo
, &catInfo
, NULL
, NULL
, NULL
) == noErr
)
2855 finfo
= (FileInfo
*)&catInfo
.finderInfo
;
2856 finfo
->fileType
= type
;
2857 finfo
->fileCreator
= creator
;
2858 FSSetCatalogInfo( &fsRef
, kFSCatInfoFinderInfo
, &catInfo
) ;
2865 bool wxFileName::MacGetTypeAndCreator( wxUint32
*type
, wxUint32
*creator
) const
2868 FSCatalogInfo catInfo
;
2871 if ( wxMacPathToFSRef( GetFullPath() , &fsRef
) == noErr
)
2873 if ( FSGetCatalogInfo (&fsRef
, kFSCatInfoFinderInfo
, &catInfo
, NULL
, NULL
, NULL
) == noErr
)
2875 finfo
= (FileInfo
*)&catInfo
.finderInfo
;
2876 *type
= finfo
->fileType
;
2877 *creator
= finfo
->fileCreator
;
2884 bool wxFileName::MacSetDefaultTypeAndCreator()
2886 wxUint32 type
, creator
;
2887 if ( wxFileName::MacFindDefaultTypeAndCreator(GetExt() , &type
,
2890 return MacSetTypeAndCreator( type
, creator
) ;
2895 bool wxFileName::MacFindDefaultTypeAndCreator( const wxString
& ext
, wxUint32
*type
, wxUint32
*creator
)
2897 MacEnsureDefaultExtensionsLoaded() ;
2898 wxString extl
= ext
.Lower() ;
2899 for( int i
= gMacDefaultExtensions
.Count() - 1 ; i
>= 0 ; --i
)
2901 if ( gMacDefaultExtensions
.Item(i
).m_ext
== extl
)
2903 *type
= gMacDefaultExtensions
.Item(i
).m_type
;
2904 *creator
= gMacDefaultExtensions
.Item(i
).m_creator
;
2911 void wxFileName::MacRegisterDefaultTypeAndCreator( const wxString
& ext
, wxUint32 type
, wxUint32 creator
)
2913 MacEnsureDefaultExtensionsLoaded();
2914 MacDefaultExtensionRecord
rec(ext
.Lower(), type
, creator
);
2915 gMacDefaultExtensions
.Add( rec
);
2918 #endif // defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON