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
27 wxPATH_MAC: Mac OS 8/9 and Mac OS X under CodeWarrior 7 format, absolute file
29 volume:dir1:...:dirN:filename
30 and the relative file names are either
31 :dir1:...:dirN:filename
34 (although :filename works as well).
35 Since the volume is just part of the file path, it is not
36 treated like a separate entity as it is done under DOS and
37 VMS, it is just treated as another dir.
39 wxPATH_VMS: VMS native format, absolute file names have the form
40 <device>:[dir1.dir2.dir3]file.txt
42 <device>:[000000.dir1.dir2.dir3]file.txt
44 the <device> is the physical device (i.e. disk). 000000 is the
45 root directory on the device which can be omitted.
47 Note that VMS uses different separators unlike Unix:
48 : always after the device. If the path does not contain : than
49 the default (the device of the current directory) is assumed.
50 [ start of directory specification
51 . separator between directory and subdirectory
52 ] between directory and file
55 // ============================================================================
57 // ============================================================================
59 // ----------------------------------------------------------------------------
61 // ----------------------------------------------------------------------------
63 // For compilers that support precompilation, includes "wx.h".
64 #include "wx/wxprec.h"
76 #include "wx/filename.h"
77 #include "wx/tokenzr.h"
78 #include "wx/config.h" // for wxExpandEnvVars
81 #include "wx/dynlib.h"
83 // For GetShort/LongPathName
85 #include "wx/msw/wrapwin.h"
86 #if defined(__MINGW32__)
87 #include "wx/msw/gccpriv.h"
92 #include "wx/msw/private.h"
95 #if defined(__WXMAC__)
96 #include "wx/mac/private.h" // includes mac headers
99 // utime() is POSIX so should normally be available on all Unices
101 #include <sys/types.h>
103 #include <sys/stat.h>
113 #include <sys/types.h>
115 #include <sys/stat.h>
126 #include <sys/utime.h>
127 #include <sys/stat.h>
138 #define MAX_PATH _MAX_PATH
141 // ----------------------------------------------------------------------------
143 // ----------------------------------------------------------------------------
145 // small helper class which opens and closes the file - we use it just to get
146 // a file handle for the given file name to pass it to some Win32 API function
147 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
158 wxFileHandle(const wxString
& filename
, OpenMode mode
)
160 m_hFile
= ::CreateFile
163 mode
== Read
? GENERIC_READ
// access mask
165 FILE_SHARE_READ
| // sharing mode
166 FILE_SHARE_WRITE
, // (allow everything)
167 NULL
, // no secutity attr
168 OPEN_EXISTING
, // creation disposition
170 NULL
// no template file
173 if ( m_hFile
== INVALID_HANDLE_VALUE
)
175 wxLogSysError(_("Failed to open '%s' for %s"),
177 mode
== Read
? _("reading") : _("writing"));
183 if ( m_hFile
!= INVALID_HANDLE_VALUE
)
185 if ( !::CloseHandle(m_hFile
) )
187 wxLogSysError(_("Failed to close file handle"));
192 // return true only if the file could be opened successfully
193 bool IsOk() const { return m_hFile
!= INVALID_HANDLE_VALUE
; }
196 operator HANDLE() const { return m_hFile
; }
204 // ----------------------------------------------------------------------------
206 // ----------------------------------------------------------------------------
208 #if wxUSE_DATETIME && defined(__WIN32__) && !defined(__WXMICROWIN__)
210 // convert between wxDateTime and FILETIME which is a 64-bit value representing
211 // the number of 100-nanosecond intervals since January 1, 1601.
213 static void ConvertFileTimeToWx(wxDateTime
*dt
, const FILETIME
&ft
)
215 FILETIME ftcopy
= ft
;
217 if ( !::FileTimeToLocalFileTime(&ftcopy
, &ftLocal
) )
219 wxLogLastError(_T("FileTimeToLocalFileTime"));
223 if ( !::FileTimeToSystemTime(&ftLocal
, &st
) )
225 wxLogLastError(_T("FileTimeToSystemTime"));
228 dt
->Set(st
.wDay
, wxDateTime::Month(st
.wMonth
- 1), st
.wYear
,
229 st
.wHour
, st
.wMinute
, st
.wSecond
, st
.wMilliseconds
);
232 static void ConvertWxToFileTime(FILETIME
*ft
, const wxDateTime
& dt
)
235 st
.wDay
= dt
.GetDay();
236 st
.wMonth
= (WORD
)(dt
.GetMonth() + 1);
237 st
.wYear
= (WORD
)dt
.GetYear();
238 st
.wHour
= dt
.GetHour();
239 st
.wMinute
= dt
.GetMinute();
240 st
.wSecond
= dt
.GetSecond();
241 st
.wMilliseconds
= dt
.GetMillisecond();
244 if ( !::SystemTimeToFileTime(&st
, &ftLocal
) )
246 wxLogLastError(_T("SystemTimeToFileTime"));
249 if ( !::LocalFileTimeToFileTime(&ftLocal
, ft
) )
251 wxLogLastError(_T("LocalFileTimeToFileTime"));
255 #endif // wxUSE_DATETIME && __WIN32__
257 // return a string with the volume par
258 static wxString
wxGetVolumeString(const wxString
& volume
, wxPathFormat format
)
262 if ( !volume
.empty() )
264 format
= wxFileName::GetFormat(format
);
266 // Special Windows UNC paths hack, part 2: undo what we did in
267 // SplitPath() and make an UNC path if we have a drive which is not a
268 // single letter (hopefully the network shares can't be one letter only
269 // although I didn't find any authoritative docs on this)
270 if ( format
== wxPATH_DOS
&& volume
.length() > 1 )
272 path
<< wxFILE_SEP_PATH_DOS
<< wxFILE_SEP_PATH_DOS
<< volume
;
274 else if ( format
== wxPATH_DOS
|| format
== wxPATH_VMS
)
276 path
<< volume
<< wxFileName::GetVolumeSeparator(format
);
284 // ============================================================================
286 // ============================================================================
288 // ----------------------------------------------------------------------------
289 // wxFileName construction
290 // ----------------------------------------------------------------------------
292 void wxFileName::Assign( const wxFileName
&filepath
)
294 m_volume
= filepath
.GetVolume();
295 m_dirs
= filepath
.GetDirs();
296 m_name
= filepath
.GetName();
297 m_ext
= filepath
.GetExt();
298 m_relative
= filepath
.m_relative
;
299 m_hasExt
= filepath
.m_hasExt
;
302 void wxFileName::Assign(const wxString
& volume
,
303 const wxString
& path
,
304 const wxString
& name
,
307 wxPathFormat format
)
309 SetPath( path
, format
);
318 void wxFileName::SetPath( const wxString
& pathOrig
, wxPathFormat format
)
322 if ( pathOrig
.empty() )
330 format
= GetFormat( format
);
332 // 0) deal with possible volume part first
335 SplitVolume(pathOrig
, &volume
, &path
, format
);
336 if ( !volume
.empty() )
343 // 1) Determine if the path is relative or absolute.
344 wxChar leadingChar
= path
[0u];
349 m_relative
= leadingChar
== wxT(':');
351 // We then remove a leading ":". The reason is in our
352 // storage form for relative paths:
353 // ":dir:file.txt" actually means "./dir/file.txt" in
354 // DOS notation and should get stored as
355 // (relative) (dir) (file.txt)
356 // "::dir:file.txt" actually means "../dir/file.txt"
357 // stored as (relative) (..) (dir) (file.txt)
358 // This is important only for the Mac as an empty dir
359 // actually means <UP>, whereas under DOS, double
360 // slashes can be ignored: "\\\\" is the same as "\\".
366 // TODO: what is the relative path format here?
371 wxFAIL_MSG( _T("Unknown path format") );
372 // !! Fall through !!
375 // the paths of the form "~" or "~username" are absolute
376 m_relative
= leadingChar
!= wxT('/') && leadingChar
!= _T('~');
380 m_relative
= !IsPathSeparator(leadingChar
, format
);
385 // 2) Break up the path into its members. If the original path
386 // was just "/" or "\\", m_dirs will be empty. We know from
387 // the m_relative field, if this means "nothing" or "root dir".
389 wxStringTokenizer
tn( path
, GetPathSeparators(format
) );
391 while ( tn
.HasMoreTokens() )
393 wxString token
= tn
.GetNextToken();
395 // Remove empty token under DOS and Unix, interpret them
399 if (format
== wxPATH_MAC
)
400 m_dirs
.Add( wxT("..") );
410 void wxFileName::Assign(const wxString
& fullpath
,
413 wxString volume
, path
, name
, ext
;
415 SplitPath(fullpath
, &volume
, &path
, &name
, &ext
, &hasExt
, format
);
417 Assign(volume
, path
, name
, ext
, hasExt
, format
);
420 void wxFileName::Assign(const wxString
& fullpathOrig
,
421 const wxString
& fullname
,
424 // always recognize fullpath as directory, even if it doesn't end with a
426 wxString fullpath
= fullpathOrig
;
427 if ( !wxEndsWithPathSeparator(fullpath
) )
429 fullpath
+= GetPathSeparator(format
);
432 wxString volume
, path
, name
, ext
;
435 // do some consistency checks in debug mode: the name should be really just
436 // the filename and the path should be really just a path
438 wxString volDummy
, pathDummy
, nameDummy
, extDummy
;
440 SplitPath(fullname
, &volDummy
, &pathDummy
, &name
, &ext
, &hasExt
, format
);
442 wxASSERT_MSG( volDummy
.empty() && pathDummy
.empty(),
443 _T("the file name shouldn't contain the path") );
445 SplitPath(fullpath
, &volume
, &path
, &nameDummy
, &extDummy
, format
);
447 wxASSERT_MSG( nameDummy
.empty() && extDummy
.empty(),
448 _T("the path shouldn't contain file name nor extension") );
450 #else // !__WXDEBUG__
451 SplitPath(fullname
, NULL
/* no volume */, NULL
/* no path */,
452 &name
, &ext
, &hasExt
, format
);
453 SplitPath(fullpath
, &volume
, &path
, NULL
, NULL
, format
);
454 #endif // __WXDEBUG__/!__WXDEBUG__
456 Assign(volume
, path
, name
, ext
, hasExt
, format
);
459 void wxFileName::Assign(const wxString
& pathOrig
,
460 const wxString
& name
,
466 SplitVolume(pathOrig
, &volume
, &path
, format
);
468 Assign(volume
, path
, name
, ext
, format
);
471 void wxFileName::AssignDir(const wxString
& dir
, wxPathFormat format
)
473 Assign(dir
, wxEmptyString
, format
);
476 void wxFileName::Clear()
482 m_ext
= wxEmptyString
;
484 // we don't have any absolute path for now
492 wxFileName
wxFileName::FileName(const wxString
& file
, wxPathFormat format
)
494 return wxFileName(file
, format
);
498 wxFileName
wxFileName::DirName(const wxString
& dir
, wxPathFormat format
)
501 fn
.AssignDir(dir
, format
);
505 // ----------------------------------------------------------------------------
507 // ----------------------------------------------------------------------------
509 bool wxFileName::FileExists() const
511 return wxFileName::FileExists( GetFullPath() );
514 bool wxFileName::FileExists( const wxString
&file
)
516 return ::wxFileExists( file
);
519 bool wxFileName::DirExists() const
521 return wxFileName::DirExists( GetFullPath() );
524 bool wxFileName::DirExists( const wxString
&dir
)
526 return ::wxDirExists( dir
);
529 // ----------------------------------------------------------------------------
530 // CWD and HOME stuff
531 // ----------------------------------------------------------------------------
533 void wxFileName::AssignCwd(const wxString
& volume
)
535 AssignDir(wxFileName::GetCwd(volume
));
539 wxString
wxFileName::GetCwd(const wxString
& volume
)
541 // if we have the volume, we must get the current directory on this drive
542 // and to do this we have to chdir to this volume - at least under Windows,
543 // I don't know how to get the current drive on another volume elsewhere
546 if ( !volume
.empty() )
549 SetCwd(volume
+ GetVolumeSeparator());
552 wxString cwd
= ::wxGetCwd();
554 if ( !volume
.empty() )
562 bool wxFileName::SetCwd()
564 return wxFileName::SetCwd( GetFullPath() );
567 bool wxFileName::SetCwd( const wxString
&cwd
)
569 return ::wxSetWorkingDirectory( cwd
);
572 void wxFileName::AssignHomeDir()
574 AssignDir(wxFileName::GetHomeDir());
577 wxString
wxFileName::GetHomeDir()
579 return ::wxGetHomeDir();
584 void wxFileName::AssignTempFileName(const wxString
& prefix
, wxFile
*fileTemp
)
586 wxString tempname
= CreateTempFileName(prefix
, fileTemp
);
587 if ( tempname
.empty() )
589 // error, failed to get temp file name
600 wxFileName::CreateTempFileName(const wxString
& prefix
, wxFile
*fileTemp
)
602 wxString path
, dir
, name
;
604 // use the directory specified by the prefix
605 SplitPath(prefix
, &dir
, &name
, NULL
/* extension */);
609 dir
= wxGetenv(_T("TMPDIR"));
612 dir
= wxGetenv(_T("TMP"));
615 dir
= wxGetenv(_T("TEMP"));
620 #if defined(__WXWINCE__)
623 // FIXME. Create \temp dir?
624 if (DirExists(wxT("\\temp")))
627 path
= dir
+ wxT("\\") + name
;
629 while (FileExists(path
))
631 path
= dir
+ wxT("\\") + name
;
636 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
640 if ( !::GetTempPath(MAX_PATH
, wxStringBuffer(dir
, MAX_PATH
+ 1)) )
642 wxLogLastError(_T("GetTempPath"));
647 // GetTempFileName() fails if we pass it an empty string
651 else // we have a dir to create the file in
653 // ensure we use only the back slashes as GetTempFileName(), unlike all
654 // the other APIs, is picky and doesn't accept the forward ones
655 dir
.Replace(_T("/"), _T("\\"));
658 if ( !::GetTempFileName(dir
, name
, 0, wxStringBuffer(path
, MAX_PATH
+ 1)) )
660 wxLogLastError(_T("GetTempFileName"));
669 #if defined(__DOS__) || defined(__OS2__)
671 #elif defined(__WXMAC__)
672 dir
= wxMacFindFolder(short(kOnSystemDisk
), kTemporaryFolderType
, kCreateFolder
);
680 if ( !wxEndsWithPathSeparator(dir
) &&
681 (name
.empty() || !wxIsPathSeparator(name
[0u])) )
683 path
+= wxFILE_SEP_PATH
;
688 #if defined(HAVE_MKSTEMP)
689 // scratch space for mkstemp()
690 path
+= _T("XXXXXX");
692 // we need to copy the path to the buffer in which mkstemp() can modify it
693 wxCharBuffer
buf( wxConvFile
.cWX2MB( path
) );
695 // cast is safe because the string length doesn't change
696 int fdTemp
= mkstemp( (char*)(const char*) buf
);
699 // this might be not necessary as mkstemp() on most systems should have
700 // already done it but it doesn't hurt neither...
703 else // mkstemp() succeeded
705 path
= wxConvFile
.cMB2WX( (const char*) buf
);
707 // avoid leaking the fd
710 fileTemp
->Attach(fdTemp
);
717 #else // !HAVE_MKSTEMP
721 path
+= _T("XXXXXX");
723 wxCharBuffer buf
= wxConvFile
.cWX2MB( path
);
724 if ( !mktemp( (const char*) buf
) )
730 path
= wxConvFile
.cMB2WX( (const char*) buf
);
732 #else // !HAVE_MKTEMP (includes __DOS__)
733 // generate the unique file name ourselves
734 #if !defined(__DOS__) && !defined(__PALMOS__) && (!defined(__MWERKS__) || defined(__DARWIN__) )
735 path
<< (unsigned int)getpid();
740 static const size_t numTries
= 1000;
741 for ( size_t n
= 0; n
< numTries
; n
++ )
743 // 3 hex digits is enough for numTries == 1000 < 4096
744 pathTry
= path
+ wxString::Format(_T("%.03x"), (unsigned int) n
);
745 if ( !FileExists(pathTry
) )
754 #endif // HAVE_MKTEMP/!HAVE_MKTEMP
756 #endif // HAVE_MKSTEMP/!HAVE_MKSTEMP
758 #endif // Windows/!Windows
762 wxLogSysError(_("Failed to create a temporary file name"));
764 else if ( fileTemp
&& !fileTemp
->IsOpened() )
766 // open the file - of course, there is a race condition here, this is
767 // why we always prefer using mkstemp()...
769 // NB: GetTempFileName() under Windows creates the file, so using
770 // write_excl there would fail
771 if ( !fileTemp
->Open(path
,
772 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
777 wxS_IRUSR
| wxS_IWUSR
) )
779 // FIXME: If !ok here should we loop and try again with another
780 // file name? That is the standard recourse if open(O_EXCL)
781 // fails, though of course it should be protected against
782 // possible infinite looping too.
784 wxLogError(_("Failed to open temporary file."));
795 // ----------------------------------------------------------------------------
796 // directory operations
797 // ----------------------------------------------------------------------------
799 bool wxFileName::Mkdir( int perm
, int flags
)
801 return wxFileName::Mkdir( GetFullPath(), perm
, flags
);
804 bool wxFileName::Mkdir( const wxString
& dir
, int perm
, int flags
)
806 if ( flags
& wxPATH_MKDIR_FULL
)
808 // split the path in components
810 filename
.AssignDir(dir
);
813 if ( filename
.HasVolume())
815 currPath
<< wxGetVolumeString(filename
.GetVolume(), wxPATH_NATIVE
);
818 wxArrayString dirs
= filename
.GetDirs();
819 size_t count
= dirs
.GetCount();
820 for ( size_t i
= 0; i
< count
; i
++ )
823 #if defined(__WXMAC__) && !defined(__DARWIN__)
824 // relative pathnames are exactely the other way round under mac...
825 !filename
.IsAbsolute()
827 filename
.IsAbsolute()
830 currPath
+= wxFILE_SEP_PATH
;
833 if (!DirExists(currPath
))
835 if (!wxMkdir(currPath
, perm
))
837 // no need to try creating further directories
847 return ::wxMkdir( dir
, perm
);
850 bool wxFileName::Rmdir()
852 return wxFileName::Rmdir( GetFullPath() );
855 bool wxFileName::Rmdir( const wxString
&dir
)
857 return ::wxRmdir( dir
);
860 // ----------------------------------------------------------------------------
861 // path normalization
862 // ----------------------------------------------------------------------------
864 bool wxFileName::Normalize(int flags
,
868 // deal with env vars renaming first as this may seriously change the path
869 if ( flags
& wxPATH_NORM_ENV_VARS
)
871 wxString pathOrig
= GetFullPath(format
);
872 wxString path
= wxExpandEnvVars(pathOrig
);
873 if ( path
!= pathOrig
)
880 // the existing path components
881 wxArrayString dirs
= GetDirs();
883 // the path to prepend in front to make the path absolute
886 format
= GetFormat(format
);
888 // make the path absolute
889 if ( (flags
& wxPATH_NORM_ABSOLUTE
) && !IsAbsolute(format
) )
893 curDir
.AssignCwd(GetVolume());
897 curDir
.AssignDir(cwd
);
900 // the path may be not absolute because it doesn't have the volume name
901 // but in this case we shouldn't modify the directory components of it
902 // but just set the current volume
903 if ( !HasVolume() && curDir
.HasVolume() )
905 SetVolume(curDir
.GetVolume());
909 // yes, it was the case - we don't need curDir then
915 // handle ~ stuff under Unix only
916 if ( (format
== wxPATH_UNIX
) && (flags
& wxPATH_NORM_TILDE
) )
918 if ( !dirs
.IsEmpty() )
920 wxString dir
= dirs
[0u];
921 if ( !dir
.empty() && dir
[0u] == _T('~') )
923 curDir
.AssignDir(wxGetUserHome(dir
.c_str() + 1));
930 // transform relative path into abs one
933 wxArrayString dirsNew
= curDir
.GetDirs();
934 size_t count
= dirs
.GetCount();
935 for ( size_t n
= 0; n
< count
; n
++ )
937 dirsNew
.Add(dirs
[n
]);
943 // now deal with ".", ".." and the rest
945 size_t count
= dirs
.GetCount();
946 for ( size_t n
= 0; n
< count
; n
++ )
948 wxString dir
= dirs
[n
];
950 if ( flags
& wxPATH_NORM_DOTS
)
952 if ( dir
== wxT(".") )
958 if ( dir
== wxT("..") )
960 if ( m_dirs
.IsEmpty() )
962 wxLogError(_("The path '%s' contains too many \"..\"!"),
963 GetFullPath().c_str());
967 m_dirs
.RemoveAt(m_dirs
.GetCount() - 1);
972 if ( (flags
& wxPATH_NORM_CASE
) && !IsCaseSensitive(format
) )
980 #if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE
981 if ( (flags
& wxPATH_NORM_SHORTCUT
) )
984 if (GetShortcutTarget(GetFullPath(format
), filename
))
986 // Repeat this since we may now have a new path
987 if ( (flags
& wxPATH_NORM_CASE
) && !IsCaseSensitive(format
) )
989 filename
.MakeLower();
997 if ( (flags
& wxPATH_NORM_CASE
) && !IsCaseSensitive(format
) )
999 // VZ: expand env vars here too?
1001 m_volume
.MakeLower();
1006 // we do have the path now
1008 // NB: need to do this before (maybe) calling Assign() below
1011 #if defined(__WIN32__)
1012 if ( (flags
& wxPATH_NORM_LONG
) && (format
== wxPATH_DOS
) )
1014 Assign(GetLongPath());
1021 // ----------------------------------------------------------------------------
1022 // get the shortcut target
1023 // ----------------------------------------------------------------------------
1025 // WinCE (3) doesn't have CLSID_ShellLink, IID_IShellLink definitions.
1026 // The .lnk file is a plain text file so it should be easy to
1027 // make it work. Hint from Google Groups:
1028 // "If you open up a lnk file, you'll see a
1029 // number, followed by a pound sign (#), followed by more text. The
1030 // number is the number of characters that follows the pound sign. The
1031 // characters after the pound sign are the command line (which _can_
1032 // include arguments) to be executed. Any path (e.g. \windows\program
1033 // files\myapp.exe) that includes spaces needs to be enclosed in
1034 // quotation marks."
1036 #if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE
1037 // The following lines are necessary under WinCE
1038 // #include "wx/msw/private.h"
1039 // #include <ole2.h>
1041 #if defined(__WXWINCE__)
1042 #include <shlguid.h>
1045 bool wxFileName::GetShortcutTarget(const wxString
& shortcutPath
, wxString
& targetFilename
, wxString
* arguments
)
1047 wxString path
, file
, ext
;
1048 wxSplitPath(shortcutPath
, & path
, & file
, & ext
);
1052 bool success
= false;
1054 // Assume it's not a shortcut if it doesn't end with lnk
1055 if (ext
.CmpNoCase(wxT("lnk"))!=0)
1058 // create a ShellLink object
1059 hres
= CoCreateInstance(CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
1060 IID_IShellLink
, (LPVOID
*) &psl
);
1062 if (SUCCEEDED(hres
))
1065 hres
= psl
->QueryInterface( IID_IPersistFile
, (LPVOID
*) &ppf
);
1066 if (SUCCEEDED(hres
))
1068 WCHAR wsz
[MAX_PATH
];
1070 MultiByteToWideChar(CP_ACP
, MB_PRECOMPOSED
, shortcutPath
.mb_str(), -1, wsz
,
1073 hres
= ppf
->Load(wsz
, 0);
1074 if (SUCCEEDED(hres
))
1077 // Wrong prototype in early versions
1078 #if defined(__MINGW32__) && !wxCHECK_W32API_VERSION(2, 2)
1079 psl
->GetPath((CHAR
*) buf
, 2048, NULL
, SLGP_UNCPRIORITY
);
1081 psl
->GetPath(buf
, 2048, NULL
, SLGP_UNCPRIORITY
);
1083 targetFilename
= wxString(buf
);
1084 success
= (shortcutPath
!= targetFilename
);
1086 psl
->GetArguments(buf
, 2048);
1088 if (!args
.empty() && arguments
)
1101 // ----------------------------------------------------------------------------
1102 // absolute/relative paths
1103 // ----------------------------------------------------------------------------
1105 bool wxFileName::IsAbsolute(wxPathFormat format
) const
1107 // if our path doesn't start with a path separator, it's not an absolute
1112 if ( !GetVolumeSeparator(format
).empty() )
1114 // this format has volumes and an absolute path must have one, it's not
1115 // enough to have the full path to bean absolute file under Windows
1116 if ( GetVolume().empty() )
1123 bool wxFileName::MakeRelativeTo(const wxString
& pathBase
, wxPathFormat format
)
1125 wxFileName fnBase
= wxFileName::DirName(pathBase
, format
);
1127 // get cwd only once - small time saving
1128 wxString cwd
= wxGetCwd();
1129 Normalize(wxPATH_NORM_ALL
& ~wxPATH_NORM_CASE
, cwd
, format
);
1130 fnBase
.Normalize(wxPATH_NORM_ALL
& ~wxPATH_NORM_CASE
, cwd
, format
);
1132 bool withCase
= IsCaseSensitive(format
);
1134 // we can't do anything if the files live on different volumes
1135 if ( !GetVolume().IsSameAs(fnBase
.GetVolume(), withCase
) )
1141 // same drive, so we don't need our volume
1144 // remove common directories starting at the top
1145 while ( !m_dirs
.IsEmpty() && !fnBase
.m_dirs
.IsEmpty() &&
1146 m_dirs
[0u].IsSameAs(fnBase
.m_dirs
[0u], withCase
) )
1149 fnBase
.m_dirs
.RemoveAt(0);
1152 // add as many ".." as needed
1153 size_t count
= fnBase
.m_dirs
.GetCount();
1154 for ( size_t i
= 0; i
< count
; i
++ )
1156 m_dirs
.Insert(wxT(".."), 0u);
1159 if ( format
== wxPATH_UNIX
|| format
== wxPATH_DOS
)
1161 // a directory made relative with respect to itself is '.' under Unix
1162 // and DOS, by definition (but we don't have to insert "./" for the
1164 if ( m_dirs
.IsEmpty() && IsDir() )
1166 m_dirs
.Add(_T('.'));
1176 // ----------------------------------------------------------------------------
1177 // filename kind tests
1178 // ----------------------------------------------------------------------------
1180 bool wxFileName::SameAs(const wxFileName
& filepath
, wxPathFormat format
) const
1182 wxFileName fn1
= *this,
1185 // get cwd only once - small time saving
1186 wxString cwd
= wxGetCwd();
1187 fn1
.Normalize(wxPATH_NORM_ALL
| wxPATH_NORM_CASE
, cwd
, format
);
1188 fn2
.Normalize(wxPATH_NORM_ALL
| wxPATH_NORM_CASE
, cwd
, format
);
1190 if ( fn1
.GetFullPath() == fn2
.GetFullPath() )
1193 // TODO: compare inodes for Unix, this works even when filenames are
1194 // different but files are the same (symlinks) (VZ)
1200 bool wxFileName::IsCaseSensitive( wxPathFormat format
)
1202 // only Unix filenames are truely case-sensitive
1203 return GetFormat(format
) == wxPATH_UNIX
;
1207 wxString
wxFileName::GetForbiddenChars(wxPathFormat format
)
1209 // Inits to forbidden characters that are common to (almost) all platforms.
1210 wxString strForbiddenChars
= wxT("*?");
1212 // If asserts, wxPathFormat has been changed. In case of a new path format
1213 // addition, the following code might have to be updated.
1214 wxCOMPILE_TIME_ASSERT(wxPATH_MAX
== 5, wxPathFormatChanged
);
1215 switch ( GetFormat(format
) )
1218 wxFAIL_MSG( wxT("Unknown path format") );
1219 // !! Fall through !!
1225 // On a Mac even names with * and ? are allowed (Tested with OS
1226 // 9.2.1 and OS X 10.2.5)
1227 strForbiddenChars
= wxEmptyString
;
1231 strForbiddenChars
+= wxT("\\/:\"<>|");
1238 return strForbiddenChars
;
1242 wxString
wxFileName::GetVolumeSeparator(wxPathFormat
WXUNUSED_IN_WINCE(format
))
1245 return wxEmptyString
;
1249 if ( (GetFormat(format
) == wxPATH_DOS
) ||
1250 (GetFormat(format
) == wxPATH_VMS
) )
1252 sepVol
= wxFILE_SEP_DSK
;
1261 wxString
wxFileName::GetPathSeparators(wxPathFormat format
)
1264 switch ( GetFormat(format
) )
1267 // accept both as native APIs do but put the native one first as
1268 // this is the one we use in GetFullPath()
1269 seps
<< wxFILE_SEP_PATH_DOS
<< wxFILE_SEP_PATH_UNIX
;
1273 wxFAIL_MSG( _T("Unknown wxPATH_XXX style") );
1277 seps
= wxFILE_SEP_PATH_UNIX
;
1281 seps
= wxFILE_SEP_PATH_MAC
;
1285 seps
= wxFILE_SEP_PATH_VMS
;
1293 wxString
wxFileName::GetPathTerminators(wxPathFormat format
)
1295 format
= GetFormat(format
);
1297 // under VMS the end of the path is ']', not the path separator used to
1298 // separate the components
1299 return format
== wxPATH_VMS
? wxString(_T(']')) : GetPathSeparators(format
);
1303 bool wxFileName::IsPathSeparator(wxChar ch
, wxPathFormat format
)
1305 // wxString::Find() doesn't work as expected with NUL - it will always find
1306 // it, so test for it separately
1307 return ch
!= _T('\0') && GetPathSeparators(format
).Find(ch
) != wxNOT_FOUND
;
1310 // ----------------------------------------------------------------------------
1311 // path components manipulation
1312 // ----------------------------------------------------------------------------
1314 /* static */ bool wxFileName::IsValidDirComponent(const wxString
& dir
)
1318 wxFAIL_MSG( _T("empty directory passed to wxFileName::InsertDir()") );
1323 const size_t len
= dir
.length();
1324 for ( size_t n
= 0; n
< len
; n
++ )
1326 if ( dir
[n
] == GetVolumeSeparator() || IsPathSeparator(dir
[n
]) )
1328 wxFAIL_MSG( _T("invalid directory component in wxFileName") );
1337 void wxFileName::AppendDir( const wxString
& dir
)
1339 if ( IsValidDirComponent(dir
) )
1343 void wxFileName::PrependDir( const wxString
& dir
)
1348 void wxFileName::InsertDir(size_t before
, const wxString
& dir
)
1350 if ( IsValidDirComponent(dir
) )
1351 m_dirs
.Insert(dir
, before
);
1354 void wxFileName::RemoveDir(size_t pos
)
1356 m_dirs
.RemoveAt(pos
);
1359 // ----------------------------------------------------------------------------
1361 // ----------------------------------------------------------------------------
1363 void wxFileName::SetFullName(const wxString
& fullname
)
1365 SplitPath(fullname
, NULL
/* no volume */, NULL
/* no path */,
1366 &m_name
, &m_ext
, &m_hasExt
);
1369 wxString
wxFileName::GetFullName() const
1371 wxString fullname
= m_name
;
1374 fullname
<< wxFILE_SEP_EXT
<< m_ext
;
1380 wxString
wxFileName::GetPath( int flags
, wxPathFormat format
) const
1382 format
= GetFormat( format
);
1386 // return the volume with the path as well if requested
1387 if ( flags
& wxPATH_GET_VOLUME
)
1389 fullpath
+= wxGetVolumeString(GetVolume(), format
);
1392 // the leading character
1397 fullpath
+= wxFILE_SEP_PATH_MAC
;
1402 fullpath
+= wxFILE_SEP_PATH_DOS
;
1406 wxFAIL_MSG( wxT("Unknown path format") );
1412 // normally the absolute file names start with a slash
1413 // with one exception: the ones like "~/foo.bar" don't
1415 if ( m_dirs
.IsEmpty() || m_dirs
[0u] != _T('~') )
1417 fullpath
+= wxFILE_SEP_PATH_UNIX
;
1423 // no leading character here but use this place to unset
1424 // wxPATH_GET_SEPARATOR flag: under VMS it doesn't make sense
1425 // as, if I understand correctly, there should never be a dot
1426 // before the closing bracket
1427 flags
&= ~wxPATH_GET_SEPARATOR
;
1430 if ( m_dirs
.empty() )
1432 // there is nothing more
1436 // then concatenate all the path components using the path separator
1437 if ( format
== wxPATH_VMS
)
1439 fullpath
+= wxT('[');
1442 const size_t dirCount
= m_dirs
.GetCount();
1443 for ( size_t i
= 0; i
< dirCount
; i
++ )
1448 if ( m_dirs
[i
] == wxT(".") )
1450 // skip appending ':', this shouldn't be done in this
1451 // case as "::" is interpreted as ".." under Unix
1455 // convert back from ".." to nothing
1456 if ( !m_dirs
[i
].IsSameAs(wxT("..")) )
1457 fullpath
+= m_dirs
[i
];
1461 wxFAIL_MSG( wxT("Unexpected path format") );
1462 // still fall through
1466 fullpath
+= m_dirs
[i
];
1470 // TODO: What to do with ".." under VMS
1472 // convert back from ".." to nothing
1473 if ( !m_dirs
[i
].IsSameAs(wxT("..")) )
1474 fullpath
+= m_dirs
[i
];
1478 if ( (flags
& wxPATH_GET_SEPARATOR
) || (i
!= dirCount
- 1) )
1479 fullpath
+= GetPathSeparator(format
);
1482 if ( format
== wxPATH_VMS
)
1484 fullpath
+= wxT(']');
1490 wxString
wxFileName::GetFullPath( wxPathFormat format
) const
1492 // we already have a function to get the path
1493 wxString fullpath
= GetPath(wxPATH_GET_VOLUME
| wxPATH_GET_SEPARATOR
,
1496 // now just add the file name and extension to it
1497 fullpath
+= GetFullName();
1502 // Return the short form of the path (returns identity on non-Windows platforms)
1503 wxString
wxFileName::GetShortPath() const
1505 wxString
path(GetFullPath());
1507 #if defined(__WXMSW__) && defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
1508 DWORD sz
= ::GetShortPathName(path
, NULL
, 0);
1512 if ( ::GetShortPathName
1515 wxStringBuffer(pathOut
, sz
),
1527 // Return the long form of the path (returns identity on non-Windows platforms)
1528 wxString
wxFileName::GetLongPath() const
1531 path
= GetFullPath();
1533 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
1535 #if wxUSE_DYNAMIC_LOADER
1536 typedef DWORD (WINAPI
*GET_LONG_PATH_NAME
)(const wxChar
*, wxChar
*, DWORD
);
1538 // this is MT-safe as in the worst case we're going to resolve the function
1539 // twice -- but as the result is the same in both threads, it's ok
1540 static GET_LONG_PATH_NAME s_pfnGetLongPathName
= NULL
;
1541 if ( !s_pfnGetLongPathName
)
1543 static bool s_triedToLoad
= false;
1545 if ( !s_triedToLoad
)
1547 s_triedToLoad
= true;
1549 wxDynamicLibrary
dllKernel(_T("kernel32"));
1551 const wxChar
* GetLongPathName
= _T("GetLongPathName")
1556 #endif // Unicode/ANSI
1558 if ( dllKernel
.HasSymbol(GetLongPathName
) )
1560 s_pfnGetLongPathName
= (GET_LONG_PATH_NAME
)
1561 dllKernel
.GetSymbol(GetLongPathName
);
1564 // note that kernel32.dll can be unloaded, it stays in memory
1565 // anyhow as all Win32 programs link to it and so it's safe to call
1566 // GetLongPathName() even after unloading it
1570 if ( s_pfnGetLongPathName
)
1572 DWORD dwSize
= (*s_pfnGetLongPathName
)(path
, NULL
, 0);
1575 if ( (*s_pfnGetLongPathName
)
1578 wxStringBuffer(pathOut
, dwSize
),
1586 #endif // wxUSE_DYNAMIC_LOADER
1588 // The OS didn't support GetLongPathName, or some other error.
1589 // We need to call FindFirstFile on each component in turn.
1591 WIN32_FIND_DATA findFileData
;
1595 pathOut
= GetVolume() +
1596 GetVolumeSeparator(wxPATH_DOS
) +
1597 GetPathSeparator(wxPATH_DOS
);
1599 pathOut
= wxEmptyString
;
1601 wxArrayString dirs
= GetDirs();
1602 dirs
.Add(GetFullName());
1606 size_t count
= dirs
.GetCount();
1607 for ( size_t i
= 0; i
< count
; i
++ )
1609 // We're using pathOut to collect the long-name path, but using a
1610 // temporary for appending the last path component which may be
1612 tmpPath
= pathOut
+ dirs
[i
];
1614 if ( tmpPath
.empty() )
1617 // can't see this being necessary? MF
1618 if ( tmpPath
.Last() == GetVolumeSeparator(wxPATH_DOS
) )
1620 // Can't pass a drive and root dir to FindFirstFile,
1621 // so continue to next dir
1622 tmpPath
+= wxFILE_SEP_PATH
;
1627 hFind
= ::FindFirstFile(tmpPath
, &findFileData
);
1628 if (hFind
== INVALID_HANDLE_VALUE
)
1630 // Error: most likely reason is that path doesn't exist, so
1631 // append any unprocessed parts and return
1632 for ( i
+= 1; i
< count
; i
++ )
1633 tmpPath
+= wxFILE_SEP_PATH
+ dirs
[i
];
1638 pathOut
+= findFileData
.cFileName
;
1639 if ( (i
< (count
-1)) )
1640 pathOut
+= wxFILE_SEP_PATH
;
1646 #endif // Win32/!Win32
1651 wxPathFormat
wxFileName::GetFormat( wxPathFormat format
)
1653 if (format
== wxPATH_NATIVE
)
1655 #if defined(__WXMSW__) || defined(__OS2__) || defined(__DOS__)
1656 format
= wxPATH_DOS
;
1657 #elif defined(__WXMAC__) && !defined(__DARWIN__)
1658 format
= wxPATH_MAC
;
1659 #elif defined(__VMS)
1660 format
= wxPATH_VMS
;
1662 format
= wxPATH_UNIX
;
1668 // ----------------------------------------------------------------------------
1669 // path splitting function
1670 // ----------------------------------------------------------------------------
1674 wxFileName::SplitVolume(const wxString
& fullpathWithVolume
,
1675 wxString
*pstrVolume
,
1677 wxPathFormat format
)
1679 format
= GetFormat(format
);
1681 wxString fullpath
= fullpathWithVolume
;
1683 // special Windows UNC paths hack: transform \\share\path into share:path
1684 if ( format
== wxPATH_DOS
)
1686 if ( fullpath
.length() >= 4 &&
1687 fullpath
[0u] == wxFILE_SEP_PATH_DOS
&&
1688 fullpath
[1u] == wxFILE_SEP_PATH_DOS
)
1690 fullpath
.erase(0, 2);
1692 size_t posFirstSlash
=
1693 fullpath
.find_first_of(GetPathTerminators(format
));
1694 if ( posFirstSlash
!= wxString::npos
)
1696 fullpath
[posFirstSlash
] = wxFILE_SEP_DSK
;
1698 // UNC paths are always absolute, right? (FIXME)
1699 fullpath
.insert(posFirstSlash
+ 1, 1, wxFILE_SEP_PATH_DOS
);
1704 // We separate the volume here
1705 if ( format
== wxPATH_DOS
|| format
== wxPATH_VMS
)
1707 wxString sepVol
= GetVolumeSeparator(format
);
1709 size_t posFirstColon
= fullpath
.find_first_of(sepVol
);
1710 if ( posFirstColon
!= wxString::npos
)
1714 *pstrVolume
= fullpath
.Left(posFirstColon
);
1717 // remove the volume name and the separator from the full path
1718 fullpath
.erase(0, posFirstColon
+ sepVol
.length());
1723 *pstrPath
= fullpath
;
1727 void wxFileName::SplitPath(const wxString
& fullpathWithVolume
,
1728 wxString
*pstrVolume
,
1733 wxPathFormat format
)
1735 format
= GetFormat(format
);
1738 SplitVolume(fullpathWithVolume
, pstrVolume
, &fullpath
, format
);
1740 // find the positions of the last dot and last path separator in the path
1741 size_t posLastDot
= fullpath
.find_last_of(wxFILE_SEP_EXT
);
1742 size_t posLastSlash
= fullpath
.find_last_of(GetPathTerminators(format
));
1744 // check whether this dot occurs at the very beginning of a path component
1745 if ( (posLastDot
!= wxString::npos
) &&
1747 IsPathSeparator(fullpath
[posLastDot
- 1]) ||
1748 (format
== wxPATH_VMS
&& fullpath
[posLastDot
- 1] == _T(']'))) )
1750 // dot may be (and commonly -- at least under Unix -- is) the first
1751 // character of the filename, don't treat the entire filename as
1752 // extension in this case
1753 posLastDot
= wxString::npos
;
1756 // if we do have a dot and a slash, check that the dot is in the name part
1757 if ( (posLastDot
!= wxString::npos
) &&
1758 (posLastSlash
!= wxString::npos
) &&
1759 (posLastDot
< posLastSlash
) )
1761 // the dot is part of the path, not the start of the extension
1762 posLastDot
= wxString::npos
;
1765 // now fill in the variables provided by user
1768 if ( posLastSlash
== wxString::npos
)
1775 // take everything up to the path separator but take care to make
1776 // the path equal to something like '/', not empty, for the files
1777 // immediately under root directory
1778 size_t len
= posLastSlash
;
1780 // this rule does not apply to mac since we do not start with colons (sep)
1781 // except for relative paths
1782 if ( !len
&& format
!= wxPATH_MAC
)
1785 *pstrPath
= fullpath
.Left(len
);
1787 // special VMS hack: remove the initial bracket
1788 if ( format
== wxPATH_VMS
)
1790 if ( (*pstrPath
)[0u] == _T('[') )
1791 pstrPath
->erase(0, 1);
1798 // take all characters starting from the one after the last slash and
1799 // up to, but excluding, the last dot
1800 size_t nStart
= posLastSlash
== wxString::npos
? 0 : posLastSlash
+ 1;
1802 if ( posLastDot
== wxString::npos
)
1804 // take all until the end
1805 count
= wxString::npos
;
1807 else if ( posLastSlash
== wxString::npos
)
1811 else // have both dot and slash
1813 count
= posLastDot
- posLastSlash
- 1;
1816 *pstrName
= fullpath
.Mid(nStart
, count
);
1819 // finally deal with the extension here: we have an added complication that
1820 // extension may be empty (but present) as in "foo." where trailing dot
1821 // indicates the empty extension at the end -- and hence we must remember
1822 // that we have it independently of pstrExt
1823 if ( posLastDot
== wxString::npos
)
1833 // take everything after the dot
1835 *pstrExt
= fullpath
.Mid(posLastDot
+ 1);
1842 void wxFileName::SplitPath(const wxString
& fullpath
,
1846 wxPathFormat format
)
1849 SplitPath(fullpath
, &volume
, path
, name
, ext
, format
);
1853 path
->Prepend(wxGetVolumeString(volume
, format
));
1857 // ----------------------------------------------------------------------------
1859 // ----------------------------------------------------------------------------
1863 bool wxFileName::SetTimes(const wxDateTime
*dtAccess
,
1864 const wxDateTime
*dtMod
,
1865 const wxDateTime
*dtCreate
)
1867 #if defined(__WIN32__)
1870 // VZ: please let me know how to do this if you can
1871 wxFAIL_MSG( _T("SetTimes() not implemented for the directories") );
1875 wxFileHandle
fh(GetFullPath(), wxFileHandle::Write
);
1878 FILETIME ftAccess
, ftCreate
, ftWrite
;
1881 ConvertWxToFileTime(&ftCreate
, *dtCreate
);
1883 ConvertWxToFileTime(&ftAccess
, *dtAccess
);
1885 ConvertWxToFileTime(&ftWrite
, *dtMod
);
1887 if ( ::SetFileTime(fh
,
1888 dtCreate
? &ftCreate
: NULL
,
1889 dtAccess
? &ftAccess
: NULL
,
1890 dtMod
? &ftWrite
: NULL
) )
1896 #elif defined(__UNIX_LIKE__) || (defined(__DOS__) && defined(__WATCOMC__))
1897 wxUnusedVar(dtCreate
);
1899 if ( !dtAccess
&& !dtMod
)
1901 // can't modify the creation time anyhow, don't try
1905 // if dtAccess or dtMod is not specified, use the other one (which must be
1906 // non NULL because of the test above) for both times
1908 utm
.actime
= dtAccess
? dtAccess
->GetTicks() : dtMod
->GetTicks();
1909 utm
.modtime
= dtMod
? dtMod
->GetTicks() : dtAccess
->GetTicks();
1910 if ( utime(GetFullPath().fn_str(), &utm
) == 0 )
1914 #else // other platform
1915 wxUnusedVar(dtAccess
);
1917 wxUnusedVar(dtCreate
);
1920 wxLogSysError(_("Failed to modify file times for '%s'"),
1921 GetFullPath().c_str());
1926 bool wxFileName::Touch()
1928 #if defined(__UNIX_LIKE__)
1929 // under Unix touching file is simple: just pass NULL to utime()
1930 if ( utime(GetFullPath().fn_str(), NULL
) == 0 )
1935 wxLogSysError(_("Failed to touch the file '%s'"), GetFullPath().c_str());
1938 #else // other platform
1939 wxDateTime dtNow
= wxDateTime::Now();
1941 return SetTimes(&dtNow
, &dtNow
, NULL
/* don't change create time */);
1945 bool wxFileName::GetTimes(wxDateTime
*dtAccess
,
1947 wxDateTime
*dtCreate
) const
1949 #if defined(__WIN32__)
1950 // we must use different methods for the files and directories under
1951 // Windows as CreateFile(GENERIC_READ) doesn't work for the directories and
1952 // CreateFile(FILE_FLAG_BACKUP_SEMANTICS) works -- but only under NT and
1955 FILETIME ftAccess
, ftCreate
, ftWrite
;
1958 // implemented in msw/dir.cpp
1959 extern bool wxGetDirectoryTimes(const wxString
& dirname
,
1960 FILETIME
*, FILETIME
*, FILETIME
*);
1962 // we should pass the path without the trailing separator to
1963 // wxGetDirectoryTimes()
1964 ok
= wxGetDirectoryTimes(GetPath(wxPATH_GET_VOLUME
),
1965 &ftAccess
, &ftCreate
, &ftWrite
);
1969 wxFileHandle
fh(GetFullPath(), wxFileHandle::Read
);
1972 ok
= ::GetFileTime(fh
,
1973 dtCreate
? &ftCreate
: NULL
,
1974 dtAccess
? &ftAccess
: NULL
,
1975 dtMod
? &ftWrite
: NULL
) != 0;
1986 ConvertFileTimeToWx(dtCreate
, ftCreate
);
1988 ConvertFileTimeToWx(dtAccess
, ftAccess
);
1990 ConvertFileTimeToWx(dtMod
, ftWrite
);
1994 #elif defined(__UNIX_LIKE__) || defined(__WXMAC__) || defined(__OS2__) || (defined(__DOS__) && defined(__WATCOMC__))
1996 if ( wxStat( GetFullPath().c_str(), &stBuf
) == 0 )
1999 dtAccess
->Set(stBuf
.st_atime
);
2001 dtMod
->Set(stBuf
.st_mtime
);
2003 dtCreate
->Set(stBuf
.st_ctime
);
2007 #else // other platform
2008 wxUnusedVar(dtAccess
);
2010 wxUnusedVar(dtCreate
);
2013 wxLogSysError(_("Failed to retrieve file times for '%s'"),
2014 GetFullPath().c_str());
2019 #endif // wxUSE_DATETIME
2023 const short kMacExtensionMaxLength
= 16 ;
2024 class MacDefaultExtensionRecord
2027 MacDefaultExtensionRecord()
2030 m_type
= m_creator
= 0 ;
2032 MacDefaultExtensionRecord( const MacDefaultExtensionRecord
& from
)
2034 wxStrcpy( m_ext
, from
.m_ext
) ;
2035 m_type
= from
.m_type
;
2036 m_creator
= from
.m_creator
;
2038 MacDefaultExtensionRecord( const wxChar
* extension
, OSType type
, OSType creator
)
2040 wxStrncpy( m_ext
, extension
, kMacExtensionMaxLength
) ;
2041 m_ext
[kMacExtensionMaxLength
] = 0 ;
2043 m_creator
= creator
;
2045 wxChar m_ext
[kMacExtensionMaxLength
] ;
2050 #include "wx/dynarray.h"
2051 WX_DECLARE_OBJARRAY(MacDefaultExtensionRecord
, MacDefaultExtensionArray
) ;
2053 bool gMacDefaultExtensionsInited
= false ;
2055 #include "wx/arrimpl.cpp"
2057 WX_DEFINE_EXPORTED_OBJARRAY(MacDefaultExtensionArray
) ;
2059 MacDefaultExtensionArray gMacDefaultExtensions
;
2061 // load the default extensions
2062 MacDefaultExtensionRecord gDefaults
[] =
2064 MacDefaultExtensionRecord( wxT("txt") , 'TEXT' , 'ttxt' ) ,
2065 MacDefaultExtensionRecord( wxT("tif") , 'TIFF' , '****' ) ,
2066 MacDefaultExtensionRecord( wxT("jpg") , 'JPEG' , '****' ) ,
2069 static void MacEnsureDefaultExtensionsLoaded()
2071 if ( !gMacDefaultExtensionsInited
)
2073 // we could load the pc exchange prefs here too
2074 for ( size_t i
= 0 ; i
< WXSIZEOF( gDefaults
) ; ++i
)
2076 gMacDefaultExtensions
.Add( gDefaults
[i
] ) ;
2078 gMacDefaultExtensionsInited
= true ;
2082 bool wxFileName::MacSetTypeAndCreator( wxUint32 type
, wxUint32 creator
)
2085 FSCatalogInfo catInfo
;
2088 if ( wxMacPathToFSRef( GetFullPath() , &fsRef
) == noErr
)
2090 if ( FSGetCatalogInfo (&fsRef
, kFSCatInfoFinderInfo
, &catInfo
, NULL
, NULL
, NULL
) == noErr
)
2092 finfo
= (FileInfo
*)&catInfo
.finderInfo
;
2093 finfo
->fileType
= type
;
2094 finfo
->fileCreator
= creator
;
2095 FSSetCatalogInfo( &fsRef
, kFSCatInfoFinderInfo
, &catInfo
) ;
2102 bool wxFileName::MacGetTypeAndCreator( wxUint32
*type
, wxUint32
*creator
)
2105 FSCatalogInfo catInfo
;
2108 if ( wxMacPathToFSRef( GetFullPath() , &fsRef
) == noErr
)
2110 if ( FSGetCatalogInfo (&fsRef
, kFSCatInfoFinderInfo
, &catInfo
, NULL
, NULL
, NULL
) == noErr
)
2112 finfo
= (FileInfo
*)&catInfo
.finderInfo
;
2113 *type
= finfo
->fileType
;
2114 *creator
= finfo
->fileCreator
;
2121 bool wxFileName::MacSetDefaultTypeAndCreator()
2123 wxUint32 type
, creator
;
2124 if ( wxFileName::MacFindDefaultTypeAndCreator(GetExt() , &type
,
2127 return MacSetTypeAndCreator( type
, creator
) ;
2132 bool wxFileName::MacFindDefaultTypeAndCreator( const wxString
& ext
, wxUint32
*type
, wxUint32
*creator
)
2134 MacEnsureDefaultExtensionsLoaded() ;
2135 wxString extl
= ext
.Lower() ;
2136 for( int i
= gMacDefaultExtensions
.Count() - 1 ; i
>= 0 ; --i
)
2138 if ( gMacDefaultExtensions
.Item(i
).m_ext
== extl
)
2140 *type
= gMacDefaultExtensions
.Item(i
).m_type
;
2141 *creator
= gMacDefaultExtensions
.Item(i
).m_creator
;
2148 void wxFileName::MacRegisterDefaultTypeAndCreator( const wxString
& ext
, wxUint32 type
, wxUint32 creator
)
2150 MacEnsureDefaultExtensionsLoaded() ;
2151 MacDefaultExtensionRecord rec
;
2153 rec
.m_creator
= creator
;
2154 wxStrncpy( rec
.m_ext
, ext
.Lower().c_str() , kMacExtensionMaxLength
) ;
2155 gMacDefaultExtensions
.Add( rec
) ;