1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/filename.cpp
3 // Purpose: wxFileName - encapsulates a file path
4 // Author: Robert Roebling, Vadim Zeitlin
7 // Copyright: (c) 2000 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 Here are brief descriptions of the filename formats supported by this class:
14 wxPATH_UNIX: standard Unix format, used under Darwin as well, absolute file
16 /dir1/dir2/.../dirN/filename, "." and ".." stand for the
17 current and parent directory respectively, "~" is parsed as the
18 user HOME and "~username" as the HOME of that user
20 wxPATH_DOS: DOS/Windows format, absolute file names have the form:
21 drive:\dir1\dir2\...\dirN\filename.ext where drive is a single
22 letter. "." and ".." as for Unix but no "~".
24 There are also UNC names of the form \\share\fullpath and
25 MSW unique volume names of the form \\?\Volume{GUID}\fullpath.
27 The latter provide a uniform way to access a volume regardless of
28 its current mount point, i.e. you can change a volume's mount
29 point from D: to E:, or even remove it, and still be able to
30 access it through its unique volume name. More on the subject can
31 be found in MSDN's article "Naming a Volume" that is currently at
32 http://msdn.microsoft.com/en-us/library/aa365248(VS.85).aspx.
35 wxPATH_MAC: Mac OS 8/9 only, not used any longer, absolute file
37 volume:dir1:...:dirN:filename
38 and the relative file names are either
39 :dir1:...:dirN:filename
42 (although :filename works as well).
43 Since the volume is just part of the file path, it is not
44 treated like a separate entity as it is done under DOS and
45 VMS, it is just treated as another dir.
47 wxPATH_VMS: VMS native format, absolute file names have the form
48 <device>:[dir1.dir2.dir3]file.txt
50 <device>:[000000.dir1.dir2.dir3]file.txt
52 the <device> is the physical device (i.e. disk). 000000 is the
53 root directory on the device which can be omitted.
55 Note that VMS uses different separators unlike Unix:
56 : always after the device. If the path does not contain : than
57 the default (the device of the current directory) is assumed.
58 [ start of directory specification
59 . separator between directory and subdirectory
60 ] between directory and file
63 // ============================================================================
65 // ============================================================================
67 // ----------------------------------------------------------------------------
69 // ----------------------------------------------------------------------------
71 // For compilers that support precompilation, includes "wx.h".
72 #include "wx/wxprec.h"
80 #include "wx/msw/wrapwin.h" // For GetShort/LongPathName
82 #include "wx/dynarray.h"
89 #include "wx/filename.h"
90 #include "wx/private/filename.h"
91 #include "wx/tokenzr.h"
92 #include "wx/config.h" // for wxExpandEnvVars
93 #include "wx/dynlib.h"
95 #include "wx/longlong.h"
97 #if defined(__WIN32__) && defined(__MINGW32__)
98 #include "wx/msw/gccpriv.h"
102 #include "wx/msw/private.h"
103 #include <shlobj.h> // for CLSID_ShellLink
104 #include "wx/msw/missing.h"
107 #if defined(__WXMAC__)
108 #include "wx/osx/private.h" // includes mac headers
111 // utime() is POSIX so should normally be available on all Unices
113 #include <sys/types.h>
115 #include <sys/stat.h>
125 #include <sys/utime.h>
126 #include <sys/stat.h>
137 #define MAX_PATH _MAX_PATH
141 #define S_ISREG(mode) ((mode) & S_IFREG)
144 #define S_ISDIR(mode) ((mode) & S_IFDIR)
148 extern const wxULongLong wxInvalidSize
= (unsigned)-1;
149 #endif // wxUSE_LONGLONG
154 // ----------------------------------------------------------------------------
156 // ----------------------------------------------------------------------------
158 // small helper class which opens and closes the file - we use it just to get
159 // a file handle for the given file name to pass it to some Win32 API function
160 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
171 wxFileHandle(const wxString
& filename
, OpenMode mode
, int flags
= 0)
173 // be careful and use FILE_{READ,WRITE}_ATTRIBUTES here instead of the
174 // usual GENERIC_{READ,WRITE} as we don't want the file access time to
175 // be changed when we open it because this class is used for setting
176 // access time (see #10567)
177 m_hFile
= ::CreateFile
179 filename
.t_str(), // name
180 mode
== ReadAttr
? FILE_READ_ATTRIBUTES
// access mask
181 : FILE_WRITE_ATTRIBUTES
,
182 FILE_SHARE_READ
| // sharing mode
183 FILE_SHARE_WRITE
, // (allow everything)
184 NULL
, // no secutity attr
185 OPEN_EXISTING
, // creation disposition
187 NULL
// no template file
190 if ( m_hFile
== INVALID_HANDLE_VALUE
)
192 if ( mode
== ReadAttr
)
194 wxLogSysError(_("Failed to open '%s' for reading"),
199 wxLogSysError(_("Failed to open '%s' for writing"),
207 if ( m_hFile
!= INVALID_HANDLE_VALUE
)
209 if ( !::CloseHandle(m_hFile
) )
211 wxLogSysError(_("Failed to close file handle"));
216 // return true only if the file could be opened successfully
217 bool IsOk() const { return m_hFile
!= INVALID_HANDLE_VALUE
; }
220 operator HANDLE() const { return m_hFile
; }
228 // ----------------------------------------------------------------------------
230 // ----------------------------------------------------------------------------
232 #if wxUSE_DATETIME && defined(__WIN32__) && !defined(__WXMICROWIN__)
234 // Convert between wxDateTime and FILETIME which is a 64-bit value representing
235 // the number of 100-nanosecond intervals since January 1, 1601 UTC.
237 // This is the offset between FILETIME epoch and the Unix/wxDateTime Epoch.
238 static wxInt64 EPOCH_OFFSET_IN_MSEC
= wxLL(11644473600000);
240 static void ConvertFileTimeToWx(wxDateTime
*dt
, const FILETIME
&ft
)
242 wxLongLong
t(ft
.dwHighDateTime
, ft
.dwLowDateTime
);
243 t
/= 10000; // Convert hundreds of nanoseconds to milliseconds.
244 t
-= EPOCH_OFFSET_IN_MSEC
;
249 static void ConvertWxToFileTime(FILETIME
*ft
, const wxDateTime
& dt
)
251 // Undo the conversions above.
252 wxLongLong
t(dt
.GetValue());
253 t
+= EPOCH_OFFSET_IN_MSEC
;
256 ft
->dwHighDateTime
= t
.GetHi();
257 ft
->dwLowDateTime
= t
.GetLo();
260 #endif // wxUSE_DATETIME && __WIN32__
262 // return a string with the volume par
263 static wxString
wxGetVolumeString(const wxString
& volume
, wxPathFormat format
)
267 if ( !volume
.empty() )
269 format
= wxFileName::GetFormat(format
);
271 // Special Windows UNC paths hack, part 2: undo what we did in
272 // SplitPath() and make an UNC path if we have a drive which is not a
273 // single letter (hopefully the network shares can't be one letter only
274 // although I didn't find any authoritative docs on this)
275 if ( format
== wxPATH_DOS
&& volume
.length() > 1 )
277 // We also have to check for Windows unique volume names here and
278 // return it with '\\?\' prepended to it
279 if ( wxFileName::IsMSWUniqueVolumeNamePath("\\\\?\\" + volume
+ "\\",
282 path
<< "\\\\?\\" << volume
;
286 // it must be a UNC path
287 path
<< wxFILE_SEP_PATH_DOS
<< wxFILE_SEP_PATH_DOS
<< volume
;
290 else if ( format
== wxPATH_DOS
|| format
== wxPATH_VMS
)
292 path
<< volume
<< wxFileName::GetVolumeSeparator(format
);
300 // return true if the character is a DOS path separator i.e. either a slash or
302 inline bool IsDOSPathSep(wxUniChar ch
)
304 return ch
== wxFILE_SEP_PATH_DOS
|| ch
== wxFILE_SEP_PATH_UNIX
;
307 // return true if the format used is the DOS/Windows one and the string looks
309 static bool IsUNCPath(const wxString
& path
, wxPathFormat format
)
311 return format
== wxPATH_DOS
&&
312 path
.length() >= 4 && // "\\a" can't be a UNC path
313 IsDOSPathSep(path
[0u]) &&
314 IsDOSPathSep(path
[1u]) &&
315 !IsDOSPathSep(path
[2u]);
320 // Under Unix-ish systems (basically everything except Windows) we may work
321 // either with the file itself or its target if it's a symbolic link and we
322 // should dereference it, as determined by wxFileName::ShouldFollowLink() and
323 // the absence of the wxFILE_EXISTS_NO_FOLLOW flag. StatAny() can be used to
324 // stat the appropriate file with an extra twist that it also works when there
325 // is no wxFileName object at all, as is the case in static methods.
327 // Private implementation, don't call directly, use one of the overloads below.
328 bool DoStatAny(wxStructStat
& st
, wxString path
, bool dereference
)
330 // We need to remove any trailing slashes from the path because they could
331 // interfere with the symlink following decision: even if we use lstat(),
332 // it would still follow the symlink if we pass it a path with a slash at
333 // the end because the symlink resolution would happen while following the
334 // path and not for the last path element itself.
336 while ( wxEndsWithPathSeparator(path
) )
338 const size_t posLast
= path
.length() - 1;
341 // Don't turn "/" into empty string.
348 int ret
= dereference
? wxStat(path
, &st
) : wxLstat(path
, &st
);
352 // Overloads to use for a case when we don't have wxFileName object and when we
355 bool StatAny(wxStructStat
& st
, const wxString
& path
, int flags
)
357 return DoStatAny(st
, path
, !(flags
& wxFILE_EXISTS_NO_FOLLOW
));
361 bool StatAny(wxStructStat
& st
, const wxFileName
& fn
)
363 return DoStatAny(st
, fn
.GetFullPath(), fn
.ShouldFollowLink());
368 // ----------------------------------------------------------------------------
370 // ----------------------------------------------------------------------------
372 // length of \\?\Volume{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}\ string
373 static const size_t wxMSWUniqueVolumePrefixLength
= 49;
375 } // anonymous namespace
377 // ============================================================================
379 // ============================================================================
381 // ----------------------------------------------------------------------------
382 // wxFileName construction
383 // ----------------------------------------------------------------------------
385 void wxFileName::Assign( const wxFileName
&filepath
)
387 m_volume
= filepath
.GetVolume();
388 m_dirs
= filepath
.GetDirs();
389 m_name
= filepath
.GetName();
390 m_ext
= filepath
.GetExt();
391 m_relative
= filepath
.m_relative
;
392 m_hasExt
= filepath
.m_hasExt
;
393 m_dontFollowLinks
= filepath
.m_dontFollowLinks
;
396 void wxFileName::Assign(const wxString
& volume
,
397 const wxString
& path
,
398 const wxString
& name
,
403 // we should ignore paths which look like UNC shares because we already
404 // have the volume here and the UNC notation (\\server\path) is only valid
405 // for paths which don't start with a volume, so prevent SetPath() from
406 // recognizing "\\foo\bar" in "c:\\foo\bar" as an UNC path
408 // note also that this is a rather ugly way to do what we want (passing
409 // some kind of flag telling to ignore UNC paths to SetPath() would be
410 // better) but this is the safest thing to do to avoid breaking backwards
411 // compatibility in 2.8
412 if ( IsUNCPath(path
, format
) )
414 // remove one of the 2 leading backslashes to ensure that it's not
415 // recognized as an UNC path by SetPath()
416 wxString
pathNonUNC(path
, 1, wxString::npos
);
417 SetPath(pathNonUNC
, format
);
419 else // no UNC complications
421 SetPath(path
, format
);
431 void wxFileName::SetPath( const wxString
& pathOrig
, wxPathFormat format
)
435 if ( pathOrig
.empty() )
443 format
= GetFormat( format
);
445 // 0) deal with possible volume part first
448 SplitVolume(pathOrig
, &volume
, &path
, format
);
449 if ( !volume
.empty() )
456 // 1) Determine if the path is relative or absolute.
460 // we had only the volume
464 wxChar leadingChar
= path
[0u];
469 m_relative
= leadingChar
== wxT(':');
471 // We then remove a leading ":". The reason is in our
472 // storage form for relative paths:
473 // ":dir:file.txt" actually means "./dir/file.txt" in
474 // DOS notation and should get stored as
475 // (relative) (dir) (file.txt)
476 // "::dir:file.txt" actually means "../dir/file.txt"
477 // stored as (relative) (..) (dir) (file.txt)
478 // This is important only for the Mac as an empty dir
479 // actually means <UP>, whereas under DOS, double
480 // slashes can be ignored: "\\\\" is the same as "\\".
486 // TODO: what is the relative path format here?
491 wxFAIL_MSG( wxT("Unknown path format") );
492 // !! Fall through !!
495 m_relative
= leadingChar
!= wxT('/');
499 m_relative
= !IsPathSeparator(leadingChar
, format
);
504 // 2) Break up the path into its members. If the original path
505 // was just "/" or "\\", m_dirs will be empty. We know from
506 // the m_relative field, if this means "nothing" or "root dir".
508 wxStringTokenizer
tn( path
, GetPathSeparators(format
) );
510 while ( tn
.HasMoreTokens() )
512 wxString token
= tn
.GetNextToken();
514 // Remove empty token under DOS and Unix, interpret them
518 if (format
== wxPATH_MAC
)
519 m_dirs
.Add( wxT("..") );
529 void wxFileName::Assign(const wxString
& fullpath
,
532 wxString volume
, path
, name
, ext
;
534 SplitPath(fullpath
, &volume
, &path
, &name
, &ext
, &hasExt
, format
);
536 Assign(volume
, path
, name
, ext
, hasExt
, format
);
539 void wxFileName::Assign(const wxString
& fullpathOrig
,
540 const wxString
& fullname
,
543 // always recognize fullpath as directory, even if it doesn't end with a
545 wxString fullpath
= fullpathOrig
;
546 if ( !fullpath
.empty() && !wxEndsWithPathSeparator(fullpath
) )
548 fullpath
+= GetPathSeparator(format
);
551 wxString volume
, path
, name
, ext
;
554 // do some consistency checks: the name should be really just the filename
555 // and the path should be really just a path
556 wxString volDummy
, pathDummy
, nameDummy
, extDummy
;
558 SplitPath(fullname
, &volDummy
, &pathDummy
, &name
, &ext
, &hasExt
, format
);
560 wxASSERT_MSG( volDummy
.empty() && pathDummy
.empty(),
561 wxT("the file name shouldn't contain the path") );
563 SplitPath(fullpath
, &volume
, &path
, &nameDummy
, &extDummy
, format
);
566 // This test makes no sense on an OpenVMS system.
567 wxASSERT_MSG( nameDummy
.empty() && extDummy
.empty(),
568 wxT("the path shouldn't contain file name nor extension") );
570 Assign(volume
, path
, name
, ext
, hasExt
, format
);
573 void wxFileName::Assign(const wxString
& pathOrig
,
574 const wxString
& name
,
580 SplitVolume(pathOrig
, &volume
, &path
, format
);
582 Assign(volume
, path
, name
, ext
, format
);
585 void wxFileName::AssignDir(const wxString
& dir
, wxPathFormat format
)
587 Assign(dir
, wxEmptyString
, format
);
590 void wxFileName::Clear()
597 // we don't have any absolute path for now
603 // follow symlinks by default
604 m_dontFollowLinks
= false;
608 wxFileName
wxFileName::FileName(const wxString
& file
, wxPathFormat format
)
610 return wxFileName(file
, format
);
614 wxFileName
wxFileName::DirName(const wxString
& dir
, wxPathFormat format
)
617 fn
.AssignDir(dir
, format
);
621 // ----------------------------------------------------------------------------
623 // ----------------------------------------------------------------------------
628 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
630 void RemoveTrailingSeparatorsFromPath(wxString
& strPath
)
632 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
633 // so remove all trailing backslashes from the path - but don't do this for
634 // the paths "d:\" (which are different from "d:"), for just "\" or for
635 // windows unique volume names ("\\?\Volume{GUID}\")
636 while ( wxEndsWithPathSeparator( strPath
) )
638 size_t len
= strPath
.length();
639 if ( len
== 1 || (len
== 3 && strPath
[len
- 2] == wxT(':')) ||
640 (len
== wxMSWUniqueVolumePrefixLength
&&
641 wxFileName::IsMSWUniqueVolumeNamePath(strPath
)))
646 strPath
.Truncate(len
- 1);
650 #endif // __WINDOWS__ || __OS2__
653 wxFileSystemObjectExists(const wxString
& path
, int flags
)
656 // Should the existence of file/directory with this name be accepted, i.e.
657 // result in the true return value from this function?
658 const bool acceptFile
= (flags
& wxFILE_EXISTS_REGULAR
) != 0;
659 const bool acceptDir
= (flags
& wxFILE_EXISTS_DIR
) != 0;
661 wxString
strPath(path
);
663 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
666 // Ensure that the path doesn't have any trailing separators when
667 // checking for directories.
668 RemoveTrailingSeparatorsFromPath(strPath
);
671 // we must use GetFileAttributes() instead of the ANSI C functions because
672 // it can cope with network (UNC) paths unlike them
673 DWORD ret
= ::GetFileAttributes(strPath
.t_str());
675 if ( ret
== INVALID_FILE_ATTRIBUTES
)
678 if ( ret
& FILE_ATTRIBUTE_DIRECTORY
)
681 // Anything else must be a file (perhaps we should check for
682 // FILE_ATTRIBUTE_REPARSE_POINT?)
684 #elif defined(__OS2__)
687 // OS/2 can't handle "d:", it wants either "d:\" or "d:."
688 if (strPath
.length() == 2 && strPath
[1u] == wxT(':'))
692 FILESTATUS3 Info
= {{0}};
693 APIRET rc
= ::DosQueryPathInfo((PSZ
)(WXSTRINGCAST strPath
), FIL_STANDARD
,
694 (void*) &Info
, sizeof(FILESTATUS3
));
696 if ( rc
== NO_ERROR
)
698 if ( Info
.attrFile
& FILE_DIRECTORY
)
704 // We consider that the path must exist if we get a sharing violation for
705 // it but we don't know what is it in this case.
706 if ( rc
== ERROR_SHARING_VIOLATION
)
707 return flags
& wxFILE_EXISTS_ANY
;
709 // Any other error (usually ERROR_PATH_NOT_FOUND), means there is nothing
712 #else // Non-MSW, non-OS/2
714 if ( !StatAny(st
, strPath
, flags
) )
717 if ( S_ISREG(st
.st_mode
) )
719 if ( S_ISDIR(st
.st_mode
) )
721 if ( S_ISLNK(st
.st_mode
) )
723 // Take care to not test for "!= 0" here as this would erroneously
724 // return true if only wxFILE_EXISTS_NO_FOLLOW, which is part of
725 // wxFILE_EXISTS_SYMLINK, is set too.
726 return (flags
& wxFILE_EXISTS_SYMLINK
) == wxFILE_EXISTS_SYMLINK
;
728 if ( S_ISBLK(st
.st_mode
) || S_ISCHR(st
.st_mode
) )
729 return (flags
& wxFILE_EXISTS_DEVICE
) != 0;
730 if ( S_ISFIFO(st
.st_mode
) )
731 return (flags
& wxFILE_EXISTS_FIFO
) != 0;
732 if ( S_ISSOCK(st
.st_mode
) )
733 return (flags
& wxFILE_EXISTS_SOCKET
) != 0;
735 return flags
& wxFILE_EXISTS_ANY
;
739 } // anonymous namespace
741 bool wxFileName::FileExists() const
743 int flags
= wxFILE_EXISTS_REGULAR
;
744 if ( !ShouldFollowLink() )
745 flags
|= wxFILE_EXISTS_NO_FOLLOW
;
747 return wxFileSystemObjectExists(GetFullPath(), flags
);
751 bool wxFileName::FileExists( const wxString
&filePath
)
753 return wxFileSystemObjectExists(filePath
, wxFILE_EXISTS_REGULAR
);
756 bool wxFileName::DirExists() const
758 int flags
= wxFILE_EXISTS_DIR
;
759 if ( !ShouldFollowLink() )
760 flags
|= wxFILE_EXISTS_NO_FOLLOW
;
762 return Exists(GetPath(), flags
);
766 bool wxFileName::DirExists( const wxString
&dirPath
)
768 return wxFileSystemObjectExists(dirPath
, wxFILE_EXISTS_DIR
);
771 bool wxFileName::Exists(int flags
) const
773 // Notice that wxFILE_EXISTS_NO_FOLLOW may be specified in the flags even
774 // if our DontFollowLink() hadn't been called and we do honour it then. But
775 // if the user took the care of calling DontFollowLink(), it is always
776 // taken into account.
777 if ( !ShouldFollowLink() )
778 flags
|= wxFILE_EXISTS_NO_FOLLOW
;
780 return wxFileSystemObjectExists(GetFullPath(), flags
);
784 bool wxFileName::Exists(const wxString
& path
, int flags
)
786 return wxFileSystemObjectExists(path
, flags
);
789 // ----------------------------------------------------------------------------
790 // CWD and HOME stuff
791 // ----------------------------------------------------------------------------
793 void wxFileName::AssignCwd(const wxString
& volume
)
795 AssignDir(wxFileName::GetCwd(volume
));
799 wxString
wxFileName::GetCwd(const wxString
& volume
)
801 // if we have the volume, we must get the current directory on this drive
802 // and to do this we have to chdir to this volume - at least under Windows,
803 // I don't know how to get the current drive on another volume elsewhere
806 if ( !volume
.empty() )
809 SetCwd(volume
+ GetVolumeSeparator());
812 wxString cwd
= ::wxGetCwd();
814 if ( !volume
.empty() )
822 bool wxFileName::SetCwd() const
824 return wxFileName::SetCwd( GetPath() );
827 bool wxFileName::SetCwd( const wxString
&cwd
)
829 return ::wxSetWorkingDirectory( cwd
);
832 void wxFileName::AssignHomeDir()
834 AssignDir(wxFileName::GetHomeDir());
837 wxString
wxFileName::GetHomeDir()
839 return ::wxGetHomeDir();
843 // ----------------------------------------------------------------------------
844 // CreateTempFileName
845 // ----------------------------------------------------------------------------
847 #if wxUSE_FILE || wxUSE_FFILE
850 #if !defined wx_fdopen && defined HAVE_FDOPEN
851 #define wx_fdopen fdopen
854 // NB: GetTempFileName() under Windows creates the file, so using
855 // O_EXCL there would fail
857 #define wxOPEN_EXCL 0
859 #define wxOPEN_EXCL O_EXCL
863 #ifdef wxOpenOSFHandle
864 #define WX_HAVE_DELETE_ON_CLOSE
865 // On Windows create a file with the FILE_FLAGS_DELETE_ON_CLOSE flags.
867 static int wxOpenWithDeleteOnClose(const wxString
& filename
)
869 DWORD access
= GENERIC_READ
| GENERIC_WRITE
;
871 DWORD disposition
= OPEN_ALWAYS
;
873 DWORD attributes
= FILE_ATTRIBUTE_TEMPORARY
|
874 FILE_FLAG_DELETE_ON_CLOSE
;
876 HANDLE h
= ::CreateFile(filename
.t_str(), access
, 0, NULL
,
877 disposition
, attributes
, NULL
);
879 return wxOpenOSFHandle(h
, wxO_BINARY
);
881 #endif // wxOpenOSFHandle
884 // Helper to open the file
886 static int wxTempOpen(const wxString
& path
, bool *deleteOnClose
)
888 #ifdef WX_HAVE_DELETE_ON_CLOSE
890 return wxOpenWithDeleteOnClose(path
);
893 *deleteOnClose
= false;
895 return wxOpen(path
, wxO_BINARY
| O_RDWR
| O_CREAT
| wxOPEN_EXCL
, 0600);
900 // Helper to open the file and attach it to the wxFFile
902 static bool wxTempOpen(wxFFile
*file
, const wxString
& path
, bool *deleteOnClose
)
905 *deleteOnClose
= false;
906 return file
->Open(path
, wxT("w+b"));
908 int fd
= wxTempOpen(path
, deleteOnClose
);
911 file
->Attach(wx_fdopen(fd
, "w+b"), path
);
912 return file
->IsOpened();
915 #endif // wxUSE_FFILE
919 #define WXFILEARGS(x, y) y
921 #define WXFILEARGS(x, y) x
923 #define WXFILEARGS(x, y) x, y
927 // Implementation of wxFileName::CreateTempFileName().
929 static wxString
wxCreateTempImpl(
930 const wxString
& prefix
,
931 WXFILEARGS(wxFile
*fileTemp
, wxFFile
*ffileTemp
),
932 bool *deleteOnClose
= NULL
)
934 #if wxUSE_FILE && wxUSE_FFILE
935 wxASSERT(fileTemp
== NULL
|| ffileTemp
== NULL
);
937 wxString path
, dir
, name
;
938 bool wantDeleteOnClose
= false;
942 // set the result to false initially
943 wantDeleteOnClose
= *deleteOnClose
;
944 *deleteOnClose
= false;
948 // easier if it alwasys points to something
949 deleteOnClose
= &wantDeleteOnClose
;
952 // use the directory specified by the prefix
953 wxFileName::SplitPath(prefix
, &dir
, &name
, NULL
/* extension */);
957 dir
= wxFileName::GetTempDir();
960 #if defined(__WXWINCE__)
961 path
= dir
+ wxT("\\") + name
;
963 while (wxFileName::FileExists(path
))
965 path
= dir
+ wxT("\\") + name
;
970 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
971 if (!::GetTempFileName(dir
.t_str(), name
.t_str(), 0,
972 wxStringBuffer(path
, MAX_PATH
+ 1)))
974 wxLogLastError(wxT("GetTempFileName"));
982 if ( !wxEndsWithPathSeparator(dir
) &&
983 (name
.empty() || !wxIsPathSeparator(name
[0u])) )
985 path
+= wxFILE_SEP_PATH
;
990 #if defined(HAVE_MKSTEMP)
991 // scratch space for mkstemp()
992 path
+= wxT("XXXXXX");
994 // we need to copy the path to the buffer in which mkstemp() can modify it
995 wxCharBuffer
buf(path
.fn_str());
997 // cast is safe because the string length doesn't change
998 int fdTemp
= mkstemp( (char*)(const char*) buf
);
1001 // this might be not necessary as mkstemp() on most systems should have
1002 // already done it but it doesn't hurt neither...
1005 else // mkstemp() succeeded
1007 path
= wxConvFile
.cMB2WX( (const char*) buf
);
1010 // avoid leaking the fd
1013 fileTemp
->Attach(fdTemp
);
1022 ffileTemp
->Attach(wx_fdopen(fdTemp
, "r+b"), path
);
1024 ffileTemp
->Open(path
, wxT("r+b"));
1035 #else // !HAVE_MKSTEMP
1039 path
+= wxT("XXXXXX");
1041 wxCharBuffer buf
= wxConvFile
.cWX2MB( path
);
1042 if ( !mktemp( (char*)(const char*) buf
) )
1048 path
= wxConvFile
.cMB2WX( (const char*) buf
);
1050 #else // !HAVE_MKTEMP (includes __DOS__)
1051 // generate the unique file name ourselves
1052 #if !defined(__DOS__)
1053 path
<< (unsigned int)getpid();
1058 static const size_t numTries
= 1000;
1059 for ( size_t n
= 0; n
< numTries
; n
++ )
1061 // 3 hex digits is enough for numTries == 1000 < 4096
1062 pathTry
= path
+ wxString::Format(wxT("%.03x"), (unsigned int) n
);
1063 if ( !wxFileName::FileExists(pathTry
) )
1072 #endif // HAVE_MKTEMP/!HAVE_MKTEMP
1074 #endif // HAVE_MKSTEMP/!HAVE_MKSTEMP
1076 #endif // Windows/!Windows
1080 wxLogSysError(_("Failed to create a temporary file name"));
1086 // open the file - of course, there is a race condition here, this is
1087 // why we always prefer using mkstemp()...
1089 if ( fileTemp
&& !fileTemp
->IsOpened() )
1091 *deleteOnClose
= wantDeleteOnClose
;
1092 int fd
= wxTempOpen(path
, deleteOnClose
);
1094 fileTemp
->Attach(fd
);
1101 if ( ffileTemp
&& !ffileTemp
->IsOpened() )
1103 *deleteOnClose
= wantDeleteOnClose
;
1104 ok
= wxTempOpen(ffileTemp
, path
, deleteOnClose
);
1110 // FIXME: If !ok here should we loop and try again with another
1111 // file name? That is the standard recourse if open(O_EXCL)
1112 // fails, though of course it should be protected against
1113 // possible infinite looping too.
1115 wxLogError(_("Failed to open temporary file."));
1125 static bool wxCreateTempImpl(
1126 const wxString
& prefix
,
1127 WXFILEARGS(wxFile
*fileTemp
, wxFFile
*ffileTemp
),
1130 bool deleteOnClose
= true;
1132 *name
= wxCreateTempImpl(prefix
,
1133 WXFILEARGS(fileTemp
, ffileTemp
),
1136 bool ok
= !name
->empty();
1141 else if (ok
&& wxRemoveFile(*name
))
1149 static void wxAssignTempImpl(
1151 const wxString
& prefix
,
1152 WXFILEARGS(wxFile
*fileTemp
, wxFFile
*ffileTemp
))
1155 tempname
= wxCreateTempImpl(prefix
, WXFILEARGS(fileTemp
, ffileTemp
));
1157 if ( tempname
.empty() )
1159 // error, failed to get temp file name
1164 fn
->Assign(tempname
);
1169 void wxFileName::AssignTempFileName(const wxString
& prefix
)
1171 wxAssignTempImpl(this, prefix
, WXFILEARGS(NULL
, NULL
));
1175 wxString
wxFileName::CreateTempFileName(const wxString
& prefix
)
1177 return wxCreateTempImpl(prefix
, WXFILEARGS(NULL
, NULL
));
1180 #endif // wxUSE_FILE || wxUSE_FFILE
1185 wxString
wxCreateTempFileName(const wxString
& prefix
,
1187 bool *deleteOnClose
)
1189 return wxCreateTempImpl(prefix
, WXFILEARGS(fileTemp
, NULL
), deleteOnClose
);
1192 bool wxCreateTempFile(const wxString
& prefix
,
1196 return wxCreateTempImpl(prefix
, WXFILEARGS(fileTemp
, NULL
), name
);
1199 void wxFileName::AssignTempFileName(const wxString
& prefix
, wxFile
*fileTemp
)
1201 wxAssignTempImpl(this, prefix
, WXFILEARGS(fileTemp
, NULL
));
1206 wxFileName::CreateTempFileName(const wxString
& prefix
, wxFile
*fileTemp
)
1208 return wxCreateTempFileName(prefix
, fileTemp
);
1211 #endif // wxUSE_FILE
1216 wxString
wxCreateTempFileName(const wxString
& prefix
,
1218 bool *deleteOnClose
)
1220 return wxCreateTempImpl(prefix
, WXFILEARGS(NULL
, fileTemp
), deleteOnClose
);
1223 bool wxCreateTempFile(const wxString
& prefix
,
1227 return wxCreateTempImpl(prefix
, WXFILEARGS(NULL
, fileTemp
), name
);
1231 void wxFileName::AssignTempFileName(const wxString
& prefix
, wxFFile
*fileTemp
)
1233 wxAssignTempImpl(this, prefix
, WXFILEARGS(NULL
, fileTemp
));
1238 wxFileName::CreateTempFileName(const wxString
& prefix
, wxFFile
*fileTemp
)
1240 return wxCreateTempFileName(prefix
, fileTemp
);
1243 #endif // wxUSE_FFILE
1246 // ----------------------------------------------------------------------------
1247 // directory operations
1248 // ----------------------------------------------------------------------------
1250 // helper of GetTempDir(): check if the given directory exists and return it if
1251 // it does or an empty string otherwise
1255 wxString
CheckIfDirExists(const wxString
& dir
)
1257 return wxFileName::DirExists(dir
) ? dir
: wxString();
1260 } // anonymous namespace
1262 wxString
wxFileName::GetTempDir()
1264 // first try getting it from environment: this allows overriding the values
1265 // used by default if the user wants to create temporary files in another
1267 wxString dir
= CheckIfDirExists(wxGetenv("TMPDIR"));
1270 dir
= CheckIfDirExists(wxGetenv("TMP"));
1272 dir
= CheckIfDirExists(wxGetenv("TEMP"));
1275 // if no environment variables are set, use the system default
1278 #if defined(__WXWINCE__)
1279 dir
= CheckIfDirExists(wxT("\\temp"));
1280 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1281 if ( !::GetTempPath(MAX_PATH
, wxStringBuffer(dir
, MAX_PATH
+ 1)) )
1283 wxLogLastError(wxT("GetTempPath"));
1285 #elif defined(__WXMAC__) && wxOSX_USE_CARBON
1286 dir
= wxMacFindFolderNoSeparator(short(kOnSystemDisk
), kTemporaryFolderType
, kCreateFolder
);
1287 #endif // systems with native way
1289 else // we got directory from an environment variable
1291 // remove any trailing path separators, we don't want to ever return
1292 // them from this function for consistency
1293 const size_t lastNonSep
= dir
.find_last_not_of(GetPathSeparators());
1294 if ( lastNonSep
== wxString::npos
)
1296 // the string consists entirely of separators, leave only one
1297 dir
= GetPathSeparator();
1301 dir
.erase(lastNonSep
+ 1);
1305 // fall back to hard coded value
1308 #ifdef __UNIX_LIKE__
1309 dir
= CheckIfDirExists("/tmp");
1311 #endif // __UNIX_LIKE__
1318 bool wxFileName::Mkdir( int perm
, int flags
) const
1320 return wxFileName::Mkdir(GetPath(), perm
, flags
);
1323 bool wxFileName::Mkdir( const wxString
& dir
, int perm
, int flags
)
1325 if ( flags
& wxPATH_MKDIR_FULL
)
1327 // split the path in components
1328 wxFileName filename
;
1329 filename
.AssignDir(dir
);
1332 if ( filename
.HasVolume())
1334 currPath
<< wxGetVolumeString(filename
.GetVolume(), wxPATH_NATIVE
);
1337 wxArrayString dirs
= filename
.GetDirs();
1338 size_t count
= dirs
.GetCount();
1339 for ( size_t i
= 0; i
< count
; i
++ )
1341 if ( i
> 0 || filename
.IsAbsolute() )
1342 currPath
+= wxFILE_SEP_PATH
;
1343 currPath
+= dirs
[i
];
1345 if (!DirExists(currPath
))
1347 if (!wxMkdir(currPath
, perm
))
1349 // no need to try creating further directories
1359 return ::wxMkdir( dir
, perm
);
1362 bool wxFileName::Rmdir(int flags
) const
1364 return wxFileName::Rmdir( GetPath(), flags
);
1367 bool wxFileName::Rmdir(const wxString
& dir
, int flags
)
1370 if ( flags
& wxPATH_RMDIR_RECURSIVE
)
1372 // SHFileOperation needs double null termination string
1373 // but without separator at the end of the path
1375 if ( path
.Last() == wxFILE_SEP_PATH
)
1379 SHFILEOPSTRUCT fileop
;
1380 wxZeroMemory(fileop
);
1381 fileop
.wFunc
= FO_DELETE
;
1382 fileop
.pFrom
= path
.t_str();
1383 fileop
.fFlags
= FOF_SILENT
| FOF_NOCONFIRMATION
;
1385 // FOF_NOERRORUI is not defined in WinCE
1386 fileop
.fFlags
|= FOF_NOERRORUI
;
1389 int ret
= SHFileOperation(&fileop
);
1392 // SHFileOperation may return non-Win32 error codes, so the error
1393 // message can be incorrect
1394 wxLogApiError(wxT("SHFileOperation"), ret
);
1400 else if ( flags
& wxPATH_RMDIR_FULL
)
1401 #else // !__WINDOWS__
1402 if ( flags
!= 0 ) // wxPATH_RMDIR_FULL or wxPATH_RMDIR_RECURSIVE
1403 #endif // !__WINDOWS__
1406 if ( flags
& wxPATH_RMDIR_RECURSIVE
)
1408 // When deleting the tree recursively, we are supposed to delete
1409 // this directory itself even when it is a symlink -- but without
1410 // following it. Do it here as wxRmdir() would simply follow if
1411 // called for a symlink.
1412 if ( wxFileName::Exists(dir
, wxFILE_EXISTS_SYMLINK
) )
1414 return wxRemoveFile(dir
);
1417 #endif // !__WINDOWS__
1420 if ( path
.Last() != wxFILE_SEP_PATH
)
1421 path
+= wxFILE_SEP_PATH
;
1425 if ( !d
.IsOpened() )
1430 // First delete all subdirectories: notice that we don't follow
1431 // symbolic links, potentially leading outside this directory, to avoid
1432 // unpleasant surprises.
1433 bool cont
= d
.GetFirst(&filename
, wxString(),
1434 wxDIR_DIRS
| wxDIR_HIDDEN
| wxDIR_NO_FOLLOW
);
1437 wxFileName::Rmdir(path
+ filename
, flags
);
1438 cont
= d
.GetNext(&filename
);
1442 if ( flags
& wxPATH_RMDIR_RECURSIVE
)
1444 // Delete all files too and, for the same reasons as above, don't
1445 // follow symlinks which could refer to the files outside of this
1446 // directory and just delete the symlinks themselves.
1447 cont
= d
.GetFirst(&filename
, wxString(),
1448 wxDIR_FILES
| wxDIR_HIDDEN
| wxDIR_NO_FOLLOW
);
1451 ::wxRemoveFile(path
+ filename
);
1452 cont
= d
.GetNext(&filename
);
1455 #endif // !__WINDOWS__
1458 return ::wxRmdir(dir
);
1461 // ----------------------------------------------------------------------------
1462 // path normalization
1463 // ----------------------------------------------------------------------------
1465 bool wxFileName::Normalize(int flags
,
1466 const wxString
& cwd
,
1467 wxPathFormat format
)
1469 // deal with env vars renaming first as this may seriously change the path
1470 if ( flags
& wxPATH_NORM_ENV_VARS
)
1472 wxString pathOrig
= GetFullPath(format
);
1473 wxString path
= wxExpandEnvVars(pathOrig
);
1474 if ( path
!= pathOrig
)
1480 // the existing path components
1481 wxArrayString dirs
= GetDirs();
1483 // the path to prepend in front to make the path absolute
1486 format
= GetFormat(format
);
1488 // set up the directory to use for making the path absolute later
1489 if ( (flags
& wxPATH_NORM_ABSOLUTE
) && !IsAbsolute(format
) )
1493 curDir
.AssignCwd(GetVolume());
1495 else // cwd provided
1497 curDir
.AssignDir(cwd
);
1501 // handle ~ stuff under Unix only
1502 if ( (format
== wxPATH_UNIX
) && (flags
& wxPATH_NORM_TILDE
) && m_relative
)
1504 if ( !dirs
.IsEmpty() )
1506 wxString dir
= dirs
[0u];
1507 if ( !dir
.empty() && dir
[0u] == wxT('~') )
1509 // to make the path absolute use the home directory
1510 curDir
.AssignDir(wxGetUserHome(dir
.c_str() + 1));
1516 // transform relative path into abs one
1517 if ( curDir
.IsOk() )
1519 // this path may be relative because it doesn't have the volume name
1520 // and still have m_relative=true; in this case we shouldn't modify
1521 // our directory components but just set the current volume
1522 if ( !HasVolume() && curDir
.HasVolume() )
1524 SetVolume(curDir
.GetVolume());
1528 // yes, it was the case - we don't need curDir then
1533 // finally, prepend curDir to the dirs array
1534 wxArrayString dirsNew
= curDir
.GetDirs();
1535 WX_PREPEND_ARRAY(dirs
, dirsNew
);
1537 // if we used e.g. tilde expansion previously and wxGetUserHome didn't
1538 // return for some reason an absolute path, then curDir maybe not be absolute!
1539 if ( !curDir
.m_relative
)
1541 // we have prepended an absolute path and thus we are now an absolute
1545 // else if (flags & wxPATH_NORM_ABSOLUTE):
1546 // should we warn the user that we didn't manage to make the path absolute?
1549 // now deal with ".", ".." and the rest
1551 size_t count
= dirs
.GetCount();
1552 for ( size_t n
= 0; n
< count
; n
++ )
1554 wxString dir
= dirs
[n
];
1556 if ( flags
& wxPATH_NORM_DOTS
)
1558 if ( dir
== wxT(".") )
1564 if ( dir
== wxT("..") )
1566 if ( m_dirs
.empty() )
1568 // We have more ".." than directory components so far.
1569 // Don't treat this as an error as the path could have been
1570 // entered by user so try to handle it reasonably: if the
1571 // path is absolute, just ignore the extra ".." because
1572 // "/.." is the same as "/". Otherwise, i.e. for relative
1573 // paths, keep ".." unchanged because removing it would
1574 // modify the file a relative path refers to.
1579 else // Normal case, go one step up.
1590 #if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE
1591 if ( (flags
& wxPATH_NORM_SHORTCUT
) )
1594 if (GetShortcutTarget(GetFullPath(format
), filename
))
1602 #if defined(__WIN32__)
1603 if ( (flags
& wxPATH_NORM_LONG
) && (format
== wxPATH_DOS
) )
1605 Assign(GetLongPath());
1609 // Change case (this should be kept at the end of the function, to ensure
1610 // that the path doesn't change any more after we normalize its case)
1611 if ( (flags
& wxPATH_NORM_CASE
) && !IsCaseSensitive(format
) )
1613 m_volume
.MakeLower();
1617 // directory entries must be made lower case as well
1618 count
= m_dirs
.GetCount();
1619 for ( size_t i
= 0; i
< count
; i
++ )
1621 m_dirs
[i
].MakeLower();
1629 bool wxFileName::ReplaceEnvVariable(const wxString
& envname
,
1630 const wxString
& replacementFmtString
,
1631 wxPathFormat format
)
1633 // look into stringForm for the contents of the given environment variable
1635 if (envname
.empty() ||
1636 !wxGetEnv(envname
, &val
))
1641 wxString stringForm
= GetPath(wxPATH_GET_VOLUME
, format
);
1642 // do not touch the file name and the extension
1644 wxString replacement
= wxString::Format(replacementFmtString
, envname
);
1645 stringForm
.Replace(val
, replacement
);
1647 // Now assign ourselves the modified path:
1648 Assign(stringForm
, GetFullName(), format
);
1654 bool wxFileName::ReplaceHomeDir(wxPathFormat format
)
1656 wxString homedir
= wxGetHomeDir();
1657 if (homedir
.empty())
1660 wxString stringForm
= GetPath(wxPATH_GET_VOLUME
, format
);
1661 // do not touch the file name and the extension
1663 stringForm
.Replace(homedir
, "~");
1665 // Now assign ourselves the modified path:
1666 Assign(stringForm
, GetFullName(), format
);
1671 // ----------------------------------------------------------------------------
1672 // get the shortcut target
1673 // ----------------------------------------------------------------------------
1675 // WinCE (3) doesn't have CLSID_ShellLink, IID_IShellLink definitions.
1676 // The .lnk file is a plain text file so it should be easy to
1677 // make it work. Hint from Google Groups:
1678 // "If you open up a lnk file, you'll see a
1679 // number, followed by a pound sign (#), followed by more text. The
1680 // number is the number of characters that follows the pound sign. The
1681 // characters after the pound sign are the command line (which _can_
1682 // include arguments) to be executed. Any path (e.g. \windows\program
1683 // files\myapp.exe) that includes spaces needs to be enclosed in
1684 // quotation marks."
1686 #if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE
1688 bool wxFileName::GetShortcutTarget(const wxString
& shortcutPath
,
1689 wxString
& targetFilename
,
1690 wxString
* arguments
) const
1692 wxString path
, file
, ext
;
1693 wxFileName::SplitPath(shortcutPath
, & path
, & file
, & ext
);
1697 bool success
= false;
1699 // Assume it's not a shortcut if it doesn't end with lnk
1700 if (ext
.CmpNoCase(wxT("lnk"))!=0)
1703 // create a ShellLink object
1704 hres
= CoCreateInstance(CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
1705 IID_IShellLink
, (LPVOID
*) &psl
);
1707 if (SUCCEEDED(hres
))
1710 hres
= psl
->QueryInterface( IID_IPersistFile
, (LPVOID
*) &ppf
);
1711 if (SUCCEEDED(hres
))
1713 WCHAR wsz
[MAX_PATH
];
1715 MultiByteToWideChar(CP_ACP
, MB_PRECOMPOSED
, shortcutPath
.mb_str(), -1, wsz
,
1718 hres
= ppf
->Load(wsz
, 0);
1721 if (SUCCEEDED(hres
))
1724 // Wrong prototype in early versions
1725 #if defined(__MINGW32__) && !wxCHECK_W32API_VERSION(2, 2)
1726 psl
->GetPath((CHAR
*) buf
, 2048, NULL
, SLGP_UNCPRIORITY
);
1728 psl
->GetPath(buf
, 2048, NULL
, SLGP_UNCPRIORITY
);
1730 targetFilename
= wxString(buf
);
1731 success
= (shortcutPath
!= targetFilename
);
1733 psl
->GetArguments(buf
, 2048);
1735 if (!args
.empty() && arguments
)
1747 #endif // __WIN32__ && !__WXWINCE__
1750 // ----------------------------------------------------------------------------
1751 // absolute/relative paths
1752 // ----------------------------------------------------------------------------
1754 bool wxFileName::IsAbsolute(wxPathFormat format
) const
1756 // unix paths beginning with ~ are reported as being absolute
1757 if ( format
== wxPATH_UNIX
)
1759 if ( !m_dirs
.IsEmpty() )
1761 wxString dir
= m_dirs
[0u];
1763 if (!dir
.empty() && dir
[0u] == wxT('~'))
1768 // if our path doesn't start with a path separator, it's not an absolute
1773 if ( !GetVolumeSeparator(format
).empty() )
1775 // this format has volumes and an absolute path must have one, it's not
1776 // enough to have the full path to be an absolute file under Windows
1777 if ( GetVolume().empty() )
1784 bool wxFileName::MakeRelativeTo(const wxString
& pathBase
, wxPathFormat format
)
1786 wxFileName fnBase
= wxFileName::DirName(pathBase
, format
);
1788 // get cwd only once - small time saving
1789 wxString cwd
= wxGetCwd();
1790 Normalize(wxPATH_NORM_ALL
& ~wxPATH_NORM_CASE
, cwd
, format
);
1791 fnBase
.Normalize(wxPATH_NORM_ALL
& ~wxPATH_NORM_CASE
, cwd
, format
);
1793 bool withCase
= IsCaseSensitive(format
);
1795 // we can't do anything if the files live on different volumes
1796 if ( !GetVolume().IsSameAs(fnBase
.GetVolume(), withCase
) )
1802 // same drive, so we don't need our volume
1805 // remove common directories starting at the top
1806 while ( !m_dirs
.IsEmpty() && !fnBase
.m_dirs
.IsEmpty() &&
1807 m_dirs
[0u].IsSameAs(fnBase
.m_dirs
[0u], withCase
) )
1810 fnBase
.m_dirs
.RemoveAt(0);
1813 // add as many ".." as needed
1814 size_t count
= fnBase
.m_dirs
.GetCount();
1815 for ( size_t i
= 0; i
< count
; i
++ )
1817 m_dirs
.Insert(wxT(".."), 0u);
1820 if ( format
== wxPATH_UNIX
|| format
== wxPATH_DOS
)
1822 // a directory made relative with respect to itself is '.' under Unix
1823 // and DOS, by definition (but we don't have to insert "./" for the
1825 if ( m_dirs
.IsEmpty() && IsDir() )
1827 m_dirs
.Add(wxT('.'));
1837 // ----------------------------------------------------------------------------
1838 // filename kind tests
1839 // ----------------------------------------------------------------------------
1841 bool wxFileName::SameAs(const wxFileName
& filepath
, wxPathFormat format
) const
1843 wxFileName fn1
= *this,
1846 // get cwd only once - small time saving
1847 wxString cwd
= wxGetCwd();
1848 fn1
.Normalize(wxPATH_NORM_ALL
| wxPATH_NORM_CASE
, cwd
, format
);
1849 fn2
.Normalize(wxPATH_NORM_ALL
| wxPATH_NORM_CASE
, cwd
, format
);
1851 if ( fn1
.GetFullPath() == fn2
.GetFullPath() )
1854 #if defined(__UNIX__)
1855 wxStructStat st1
, st2
;
1856 if ( StatAny(st1
, fn1
) && StatAny(st2
, fn2
) )
1858 if ( st1
.st_ino
== st2
.st_ino
&& st1
.st_dev
== st2
.st_dev
)
1861 //else: It's not an error if one or both files don't exist.
1862 #endif // defined __UNIX__
1868 bool wxFileName::IsCaseSensitive( wxPathFormat format
)
1870 // only Unix filenames are truly case-sensitive
1871 return GetFormat(format
) == wxPATH_UNIX
;
1875 wxString
wxFileName::GetForbiddenChars(wxPathFormat format
)
1877 // Inits to forbidden characters that are common to (almost) all platforms.
1878 wxString strForbiddenChars
= wxT("*?");
1880 // If asserts, wxPathFormat has been changed. In case of a new path format
1881 // addition, the following code might have to be updated.
1882 wxCOMPILE_TIME_ASSERT(wxPATH_MAX
== 5, wxPathFormatChanged
);
1883 switch ( GetFormat(format
) )
1886 wxFAIL_MSG( wxT("Unknown path format") );
1887 // !! Fall through !!
1893 // On a Mac even names with * and ? are allowed (Tested with OS
1894 // 9.2.1 and OS X 10.2.5)
1895 strForbiddenChars
.clear();
1899 strForbiddenChars
+= wxT("\\/:\"<>|");
1906 return strForbiddenChars
;
1910 wxString
wxFileName::GetVolumeSeparator(wxPathFormat
WXUNUSED_IN_WINCE(format
))
1913 return wxEmptyString
;
1917 if ( (GetFormat(format
) == wxPATH_DOS
) ||
1918 (GetFormat(format
) == wxPATH_VMS
) )
1920 sepVol
= wxFILE_SEP_DSK
;
1929 wxString
wxFileName::GetPathSeparators(wxPathFormat format
)
1932 switch ( GetFormat(format
) )
1935 // accept both as native APIs do but put the native one first as
1936 // this is the one we use in GetFullPath()
1937 seps
<< wxFILE_SEP_PATH_DOS
<< wxFILE_SEP_PATH_UNIX
;
1941 wxFAIL_MSG( wxT("Unknown wxPATH_XXX style") );
1945 seps
= wxFILE_SEP_PATH_UNIX
;
1949 seps
= wxFILE_SEP_PATH_MAC
;
1953 seps
= wxFILE_SEP_PATH_VMS
;
1961 wxString
wxFileName::GetPathTerminators(wxPathFormat format
)
1963 format
= GetFormat(format
);
1965 // under VMS the end of the path is ']', not the path separator used to
1966 // separate the components
1967 return format
== wxPATH_VMS
? wxString(wxT(']')) : GetPathSeparators(format
);
1971 bool wxFileName::IsPathSeparator(wxChar ch
, wxPathFormat format
)
1973 // wxString::Find() doesn't work as expected with NUL - it will always find
1974 // it, so test for it separately
1975 return ch
!= wxT('\0') && GetPathSeparators(format
).Find(ch
) != wxNOT_FOUND
;
1980 wxFileName::IsMSWUniqueVolumeNamePath(const wxString
& path
, wxPathFormat format
)
1982 // return true if the format used is the DOS/Windows one and the string begins
1983 // with a Windows unique volume name ("\\?\Volume{guid}\")
1984 return format
== wxPATH_DOS
&&
1985 path
.length() >= wxMSWUniqueVolumePrefixLength
&&
1986 path
.StartsWith(wxS("\\\\?\\Volume{")) &&
1987 path
[wxMSWUniqueVolumePrefixLength
- 1] == wxFILE_SEP_PATH_DOS
;
1990 // ----------------------------------------------------------------------------
1991 // path components manipulation
1992 // ----------------------------------------------------------------------------
1994 /* static */ bool wxFileName::IsValidDirComponent(const wxString
& dir
)
1998 wxFAIL_MSG( wxT("empty directory passed to wxFileName::InsertDir()") );
2003 const size_t len
= dir
.length();
2004 for ( size_t n
= 0; n
< len
; n
++ )
2006 if ( dir
[n
] == GetVolumeSeparator() || IsPathSeparator(dir
[n
]) )
2008 wxFAIL_MSG( wxT("invalid directory component in wxFileName") );
2017 bool wxFileName::AppendDir( const wxString
& dir
)
2019 if (!IsValidDirComponent(dir
))
2025 void wxFileName::PrependDir( const wxString
& dir
)
2030 bool wxFileName::InsertDir(size_t before
, const wxString
& dir
)
2032 if (!IsValidDirComponent(dir
))
2034 m_dirs
.Insert(dir
, before
);
2038 void wxFileName::RemoveDir(size_t pos
)
2040 m_dirs
.RemoveAt(pos
);
2043 // ----------------------------------------------------------------------------
2045 // ----------------------------------------------------------------------------
2047 void wxFileName::SetFullName(const wxString
& fullname
)
2049 SplitPath(fullname
, NULL
/* no volume */, NULL
/* no path */,
2050 &m_name
, &m_ext
, &m_hasExt
);
2053 wxString
wxFileName::GetFullName() const
2055 wxString fullname
= m_name
;
2058 fullname
<< wxFILE_SEP_EXT
<< m_ext
;
2064 wxString
wxFileName::GetPath( int flags
, wxPathFormat format
) const
2066 format
= GetFormat( format
);
2070 // return the volume with the path as well if requested
2071 if ( flags
& wxPATH_GET_VOLUME
)
2073 fullpath
+= wxGetVolumeString(GetVolume(), format
);
2076 // the leading character
2081 fullpath
+= wxFILE_SEP_PATH_MAC
;
2086 fullpath
+= wxFILE_SEP_PATH_DOS
;
2090 wxFAIL_MSG( wxT("Unknown path format") );
2096 fullpath
+= wxFILE_SEP_PATH_UNIX
;
2101 // no leading character here but use this place to unset
2102 // wxPATH_GET_SEPARATOR flag: under VMS it doesn't make sense
2103 // as, if I understand correctly, there should never be a dot
2104 // before the closing bracket
2105 flags
&= ~wxPATH_GET_SEPARATOR
;
2108 if ( m_dirs
.empty() )
2110 // there is nothing more
2114 // then concatenate all the path components using the path separator
2115 if ( format
== wxPATH_VMS
)
2117 fullpath
+= wxT('[');
2120 const size_t dirCount
= m_dirs
.GetCount();
2121 for ( size_t i
= 0; i
< dirCount
; i
++ )
2126 if ( m_dirs
[i
] == wxT(".") )
2128 // skip appending ':', this shouldn't be done in this
2129 // case as "::" is interpreted as ".." under Unix
2133 // convert back from ".." to nothing
2134 if ( !m_dirs
[i
].IsSameAs(wxT("..")) )
2135 fullpath
+= m_dirs
[i
];
2139 wxFAIL_MSG( wxT("Unexpected path format") );
2140 // still fall through
2144 fullpath
+= m_dirs
[i
];
2148 // TODO: What to do with ".." under VMS
2150 // convert back from ".." to nothing
2151 if ( !m_dirs
[i
].IsSameAs(wxT("..")) )
2152 fullpath
+= m_dirs
[i
];
2156 if ( (flags
& wxPATH_GET_SEPARATOR
) || (i
!= dirCount
- 1) )
2157 fullpath
+= GetPathSeparator(format
);
2160 if ( format
== wxPATH_VMS
)
2162 fullpath
+= wxT(']');
2168 wxString
wxFileName::GetFullPath( wxPathFormat format
) const
2170 // we already have a function to get the path
2171 wxString fullpath
= GetPath(wxPATH_GET_VOLUME
| wxPATH_GET_SEPARATOR
,
2174 // now just add the file name and extension to it
2175 fullpath
+= GetFullName();
2180 // Return the short form of the path (returns identity on non-Windows platforms)
2181 wxString
wxFileName::GetShortPath() const
2183 wxString
path(GetFullPath());
2185 #if defined(__WINDOWS__) && defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
2186 DWORD sz
= ::GetShortPathName(path
.t_str(), NULL
, 0);
2190 if ( ::GetShortPathName
2193 wxStringBuffer(pathOut
, sz
),
2205 // Return the long form of the path (returns identity on non-Windows platforms)
2206 wxString
wxFileName::GetLongPath() const
2209 path
= GetFullPath();
2211 #if defined(__WIN32__) && !defined(__WXWINCE__) && !defined(__WXMICROWIN__)
2213 #if wxUSE_DYNLIB_CLASS
2214 typedef DWORD (WINAPI
*GET_LONG_PATH_NAME
)(const wxChar
*, wxChar
*, DWORD
);
2216 // this is MT-safe as in the worst case we're going to resolve the function
2217 // twice -- but as the result is the same in both threads, it's ok
2218 static GET_LONG_PATH_NAME s_pfnGetLongPathName
= NULL
;
2219 if ( !s_pfnGetLongPathName
)
2221 static bool s_triedToLoad
= false;
2223 if ( !s_triedToLoad
)
2225 s_triedToLoad
= true;
2227 wxDynamicLibrary
dllKernel(wxT("kernel32"));
2229 const wxChar
* GetLongPathName
= wxT("GetLongPathName")
2234 #endif // Unicode/ANSI
2236 if ( dllKernel
.HasSymbol(GetLongPathName
) )
2238 s_pfnGetLongPathName
= (GET_LONG_PATH_NAME
)
2239 dllKernel
.GetSymbol(GetLongPathName
);
2242 // note that kernel32.dll can be unloaded, it stays in memory
2243 // anyhow as all Win32 programs link to it and so it's safe to call
2244 // GetLongPathName() even after unloading it
2248 if ( s_pfnGetLongPathName
)
2250 DWORD dwSize
= (*s_pfnGetLongPathName
)(path
.t_str(), NULL
, 0);
2253 if ( (*s_pfnGetLongPathName
)
2256 wxStringBuffer(pathOut
, dwSize
),
2264 #endif // wxUSE_DYNLIB_CLASS
2266 // The OS didn't support GetLongPathName, or some other error.
2267 // We need to call FindFirstFile on each component in turn.
2269 WIN32_FIND_DATA findFileData
;
2273 pathOut
= GetVolume() +
2274 GetVolumeSeparator(wxPATH_DOS
) +
2275 GetPathSeparator(wxPATH_DOS
);
2279 wxArrayString dirs
= GetDirs();
2280 dirs
.Add(GetFullName());
2284 size_t count
= dirs
.GetCount();
2285 for ( size_t i
= 0; i
< count
; i
++ )
2287 const wxString
& dir
= dirs
[i
];
2289 // We're using pathOut to collect the long-name path, but using a
2290 // temporary for appending the last path component which may be
2292 tmpPath
= pathOut
+ dir
;
2294 // We must not process "." or ".." here as they would be (unexpectedly)
2295 // replaced by the corresponding directory names so just leave them
2298 // And we can't pass a drive and root dir to FindFirstFile (VZ: why?)
2299 if ( tmpPath
.empty() || dir
== '.' || dir
== ".." ||
2300 tmpPath
.Last() == GetVolumeSeparator(wxPATH_DOS
) )
2302 tmpPath
+= wxFILE_SEP_PATH
;
2307 hFind
= ::FindFirstFile(tmpPath
.t_str(), &findFileData
);
2308 if (hFind
== INVALID_HANDLE_VALUE
)
2310 // Error: most likely reason is that path doesn't exist, so
2311 // append any unprocessed parts and return
2312 for ( i
+= 1; i
< count
; i
++ )
2313 tmpPath
+= wxFILE_SEP_PATH
+ dirs
[i
];
2318 pathOut
+= findFileData
.cFileName
;
2319 if ( (i
< (count
-1)) )
2320 pathOut
+= wxFILE_SEP_PATH
;
2326 #endif // Win32/!Win32
2331 wxPathFormat
wxFileName::GetFormat( wxPathFormat format
)
2333 if (format
== wxPATH_NATIVE
)
2335 #if defined(__WINDOWS__) || defined(__OS2__) || defined(__DOS__)
2336 format
= wxPATH_DOS
;
2337 #elif defined(__VMS)
2338 format
= wxPATH_VMS
;
2340 format
= wxPATH_UNIX
;
2346 #ifdef wxHAS_FILESYSTEM_VOLUMES
2349 wxString
wxFileName::GetVolumeString(char drive
, int flags
)
2351 wxASSERT_MSG( !(flags
& ~wxPATH_GET_SEPARATOR
), "invalid flag specified" );
2353 wxString
vol(drive
);
2354 vol
+= wxFILE_SEP_DSK
;
2355 if ( flags
& wxPATH_GET_SEPARATOR
)
2356 vol
+= wxFILE_SEP_PATH
;
2361 #endif // wxHAS_FILESYSTEM_VOLUMES
2363 // ----------------------------------------------------------------------------
2364 // path splitting function
2365 // ----------------------------------------------------------------------------
2369 wxFileName::SplitVolume(const wxString
& fullpathWithVolume
,
2370 wxString
*pstrVolume
,
2372 wxPathFormat format
)
2374 format
= GetFormat(format
);
2376 wxString fullpath
= fullpathWithVolume
;
2378 if ( IsMSWUniqueVolumeNamePath(fullpath
, format
) )
2380 // special Windows unique volume names hack: transform
2381 // \\?\Volume{guid}\path into Volume{guid}:path
2382 // note: this check must be done before the check for UNC path
2384 // we know the last backslash from the unique volume name is located
2385 // there from IsMSWUniqueVolumeNamePath
2386 fullpath
[wxMSWUniqueVolumePrefixLength
- 1] = wxFILE_SEP_DSK
;
2388 // paths starting with a unique volume name should always be absolute
2389 fullpath
.insert(wxMSWUniqueVolumePrefixLength
, 1, wxFILE_SEP_PATH_DOS
);
2391 // remove the leading "\\?\" part
2392 fullpath
.erase(0, 4);
2394 else if ( IsUNCPath(fullpath
, format
) )
2396 // special Windows UNC paths hack: transform \\share\path into share:path
2398 fullpath
.erase(0, 2);
2400 size_t posFirstSlash
=
2401 fullpath
.find_first_of(GetPathTerminators(format
));
2402 if ( posFirstSlash
!= wxString::npos
)
2404 fullpath
[posFirstSlash
] = wxFILE_SEP_DSK
;
2406 // UNC paths are always absolute, right? (FIXME)
2407 fullpath
.insert(posFirstSlash
+ 1, 1, wxFILE_SEP_PATH_DOS
);
2411 // We separate the volume here
2412 if ( format
== wxPATH_DOS
|| format
== wxPATH_VMS
)
2414 wxString sepVol
= GetVolumeSeparator(format
);
2416 // we have to exclude the case of a colon in the very beginning of the
2417 // string as it can't be a volume separator (nor can this be a valid
2418 // DOS file name at all but we'll leave dealing with this to our caller)
2419 size_t posFirstColon
= fullpath
.find_first_of(sepVol
);
2420 if ( posFirstColon
&& posFirstColon
!= wxString::npos
)
2424 *pstrVolume
= fullpath
.Left(posFirstColon
);
2427 // remove the volume name and the separator from the full path
2428 fullpath
.erase(0, posFirstColon
+ sepVol
.length());
2433 *pstrPath
= fullpath
;
2437 void wxFileName::SplitPath(const wxString
& fullpathWithVolume
,
2438 wxString
*pstrVolume
,
2443 wxPathFormat format
)
2445 format
= GetFormat(format
);
2448 SplitVolume(fullpathWithVolume
, pstrVolume
, &fullpath
, format
);
2450 // find the positions of the last dot and last path separator in the path
2451 size_t posLastDot
= fullpath
.find_last_of(wxFILE_SEP_EXT
);
2452 size_t posLastSlash
= fullpath
.find_last_of(GetPathTerminators(format
));
2454 // check whether this dot occurs at the very beginning of a path component
2455 if ( (posLastDot
!= wxString::npos
) &&
2457 IsPathSeparator(fullpath
[posLastDot
- 1]) ||
2458 (format
== wxPATH_VMS
&& fullpath
[posLastDot
- 1] == wxT(']'))) )
2460 // dot may be (and commonly -- at least under Unix -- is) the first
2461 // character of the filename, don't treat the entire filename as
2462 // extension in this case
2463 posLastDot
= wxString::npos
;
2466 // if we do have a dot and a slash, check that the dot is in the name part
2467 if ( (posLastDot
!= wxString::npos
) &&
2468 (posLastSlash
!= wxString::npos
) &&
2469 (posLastDot
< posLastSlash
) )
2471 // the dot is part of the path, not the start of the extension
2472 posLastDot
= wxString::npos
;
2475 // now fill in the variables provided by user
2478 if ( posLastSlash
== wxString::npos
)
2485 // take everything up to the path separator but take care to make
2486 // the path equal to something like '/', not empty, for the files
2487 // immediately under root directory
2488 size_t len
= posLastSlash
;
2490 // this rule does not apply to mac since we do not start with colons (sep)
2491 // except for relative paths
2492 if ( !len
&& format
!= wxPATH_MAC
)
2495 *pstrPath
= fullpath
.Left(len
);
2497 // special VMS hack: remove the initial bracket
2498 if ( format
== wxPATH_VMS
)
2500 if ( (*pstrPath
)[0u] == wxT('[') )
2501 pstrPath
->erase(0, 1);
2508 // take all characters starting from the one after the last slash and
2509 // up to, but excluding, the last dot
2510 size_t nStart
= posLastSlash
== wxString::npos
? 0 : posLastSlash
+ 1;
2512 if ( posLastDot
== wxString::npos
)
2514 // take all until the end
2515 count
= wxString::npos
;
2517 else if ( posLastSlash
== wxString::npos
)
2521 else // have both dot and slash
2523 count
= posLastDot
- posLastSlash
- 1;
2526 *pstrName
= fullpath
.Mid(nStart
, count
);
2529 // finally deal with the extension here: we have an added complication that
2530 // extension may be empty (but present) as in "foo." where trailing dot
2531 // indicates the empty extension at the end -- and hence we must remember
2532 // that we have it independently of pstrExt
2533 if ( posLastDot
== wxString::npos
)
2543 // take everything after the dot
2545 *pstrExt
= fullpath
.Mid(posLastDot
+ 1);
2552 void wxFileName::SplitPath(const wxString
& fullpath
,
2556 wxPathFormat format
)
2559 SplitPath(fullpath
, &volume
, path
, name
, ext
, format
);
2563 path
->Prepend(wxGetVolumeString(volume
, format
));
2568 wxString
wxFileName::StripExtension(const wxString
& fullpath
)
2570 wxFileName
fn(fullpath
);
2572 return fn
.GetFullPath();
2575 // ----------------------------------------------------------------------------
2577 // ----------------------------------------------------------------------------
2581 bool wxFileName::SetTimes(const wxDateTime
*dtAccess
,
2582 const wxDateTime
*dtMod
,
2583 const wxDateTime
*dtCreate
) const
2585 #if defined(__WIN32__)
2586 FILETIME ftAccess
, ftCreate
, ftWrite
;
2589 ConvertWxToFileTime(&ftCreate
, *dtCreate
);
2591 ConvertWxToFileTime(&ftAccess
, *dtAccess
);
2593 ConvertWxToFileTime(&ftWrite
, *dtMod
);
2599 if ( wxGetOsVersion() == wxOS_WINDOWS_9X
)
2601 wxLogError(_("Setting directory access times is not supported "
2602 "under this OS version"));
2607 flags
= FILE_FLAG_BACKUP_SEMANTICS
;
2611 path
= GetFullPath();
2615 wxFileHandle
fh(path
, wxFileHandle::WriteAttr
, flags
);
2618 if ( ::SetFileTime(fh
,
2619 dtCreate
? &ftCreate
: NULL
,
2620 dtAccess
? &ftAccess
: NULL
,
2621 dtMod
? &ftWrite
: NULL
) )
2626 #elif defined(__UNIX_LIKE__) || (defined(__DOS__) && defined(__WATCOMC__))
2627 wxUnusedVar(dtCreate
);
2629 if ( !dtAccess
&& !dtMod
)
2631 // can't modify the creation time anyhow, don't try
2635 // if dtAccess or dtMod is not specified, use the other one (which must be
2636 // non NULL because of the test above) for both times
2638 utm
.actime
= dtAccess
? dtAccess
->GetTicks() : dtMod
->GetTicks();
2639 utm
.modtime
= dtMod
? dtMod
->GetTicks() : dtAccess
->GetTicks();
2640 if ( utime(GetFullPath().fn_str(), &utm
) == 0 )
2644 #else // other platform
2645 wxUnusedVar(dtAccess
);
2647 wxUnusedVar(dtCreate
);
2650 wxLogSysError(_("Failed to modify file times for '%s'"),
2651 GetFullPath().c_str());
2656 bool wxFileName::Touch() const
2658 #if defined(__UNIX_LIKE__)
2659 // under Unix touching file is simple: just pass NULL to utime()
2660 if ( utime(GetFullPath().fn_str(), NULL
) == 0 )
2665 wxLogSysError(_("Failed to touch the file '%s'"), GetFullPath().c_str());
2668 #else // other platform
2669 wxDateTime dtNow
= wxDateTime::Now();
2671 return SetTimes(&dtNow
, &dtNow
, NULL
/* don't change create time */);
2675 bool wxFileName::GetTimes(wxDateTime
*dtAccess
,
2677 wxDateTime
*dtCreate
) const
2679 #if defined(__WIN32__)
2680 // we must use different methods for the files and directories under
2681 // Windows as CreateFile(GENERIC_READ) doesn't work for the directories and
2682 // CreateFile(FILE_FLAG_BACKUP_SEMANTICS) works -- but only under NT and
2685 FILETIME ftAccess
, ftCreate
, ftWrite
;
2688 // implemented in msw/dir.cpp
2689 extern bool wxGetDirectoryTimes(const wxString
& dirname
,
2690 FILETIME
*, FILETIME
*, FILETIME
*);
2692 // we should pass the path without the trailing separator to
2693 // wxGetDirectoryTimes()
2694 ok
= wxGetDirectoryTimes(GetPath(wxPATH_GET_VOLUME
),
2695 &ftAccess
, &ftCreate
, &ftWrite
);
2699 wxFileHandle
fh(GetFullPath(), wxFileHandle::ReadAttr
);
2702 ok
= ::GetFileTime(fh
,
2703 dtCreate
? &ftCreate
: NULL
,
2704 dtAccess
? &ftAccess
: NULL
,
2705 dtMod
? &ftWrite
: NULL
) != 0;
2716 ConvertFileTimeToWx(dtCreate
, ftCreate
);
2718 ConvertFileTimeToWx(dtAccess
, ftAccess
);
2720 ConvertFileTimeToWx(dtMod
, ftWrite
);
2724 #elif defined(__UNIX_LIKE__) || defined(__WXMAC__) || defined(__OS2__) || (defined(__DOS__) && defined(__WATCOMC__))
2725 // no need to test for IsDir() here
2727 if ( StatAny(stBuf
, *this) )
2729 // Android defines st_*time fields as unsigned long, but time_t as long,
2730 // hence the static_casts.
2732 dtAccess
->Set(static_cast<time_t>(stBuf
.st_atime
));
2734 dtMod
->Set(static_cast<time_t>(stBuf
.st_mtime
));
2736 dtCreate
->Set(static_cast<time_t>(stBuf
.st_ctime
));
2740 #else // other platform
2741 wxUnusedVar(dtAccess
);
2743 wxUnusedVar(dtCreate
);
2746 wxLogSysError(_("Failed to retrieve file times for '%s'"),
2747 GetFullPath().c_str());
2752 #endif // wxUSE_DATETIME
2755 // ----------------------------------------------------------------------------
2756 // file size functions
2757 // ----------------------------------------------------------------------------
2762 wxULongLong
wxFileName::GetSize(const wxString
&filename
)
2764 if (!wxFileExists(filename
))
2765 return wxInvalidSize
;
2767 #if defined(__WIN32__)
2768 wxFileHandle
f(filename
, wxFileHandle::ReadAttr
);
2770 return wxInvalidSize
;
2772 DWORD lpFileSizeHigh
;
2773 DWORD ret
= GetFileSize(f
, &lpFileSizeHigh
);
2774 if ( ret
== INVALID_FILE_SIZE
&& ::GetLastError() != NO_ERROR
)
2775 return wxInvalidSize
;
2777 return wxULongLong(lpFileSizeHigh
, ret
);
2778 #else // ! __WIN32__
2780 if (wxStat( filename
, &st
) != 0)
2781 return wxInvalidSize
;
2782 return wxULongLong(st
.st_size
);
2787 wxString
wxFileName::GetHumanReadableSize(const wxULongLong
&bs
,
2788 const wxString
&nullsize
,
2790 wxSizeConvention conv
)
2792 // deal with trivial case first
2793 if ( bs
== 0 || bs
== wxInvalidSize
)
2796 // depending on the convention used the multiplier may be either 1000 or
2797 // 1024 and the binary infix may be empty (for "KB") or "i" (for "KiB")
2798 double multiplier
= 1024.;
2803 case wxSIZE_CONV_TRADITIONAL
:
2804 // nothing to do, this corresponds to the default values of both
2805 // the multiplier and infix string
2808 case wxSIZE_CONV_IEC
:
2812 case wxSIZE_CONV_SI
:
2817 const double kiloByteSize
= multiplier
;
2818 const double megaByteSize
= multiplier
* kiloByteSize
;
2819 const double gigaByteSize
= multiplier
* megaByteSize
;
2820 const double teraByteSize
= multiplier
* gigaByteSize
;
2822 const double bytesize
= bs
.ToDouble();
2825 if ( bytesize
< kiloByteSize
)
2826 result
.Printf("%s B", bs
.ToString());
2827 else if ( bytesize
< megaByteSize
)
2828 result
.Printf("%.*f K%sB", precision
, bytesize
/kiloByteSize
, biInfix
);
2829 else if (bytesize
< gigaByteSize
)
2830 result
.Printf("%.*f M%sB", precision
, bytesize
/megaByteSize
, biInfix
);
2831 else if (bytesize
< teraByteSize
)
2832 result
.Printf("%.*f G%sB", precision
, bytesize
/gigaByteSize
, biInfix
);
2834 result
.Printf("%.*f T%sB", precision
, bytesize
/teraByteSize
, biInfix
);
2839 wxULongLong
wxFileName::GetSize() const
2841 return GetSize(GetFullPath());
2844 wxString
wxFileName::GetHumanReadableSize(const wxString
& failmsg
,
2846 wxSizeConvention conv
) const
2848 return GetHumanReadableSize(GetSize(), failmsg
, precision
, conv
);
2851 #endif // wxUSE_LONGLONG
2853 // ----------------------------------------------------------------------------
2854 // Mac-specific functions
2855 // ----------------------------------------------------------------------------
2857 #if defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON
2862 class MacDefaultExtensionRecord
2865 MacDefaultExtensionRecord()
2871 // default copy ctor, assignment operator and dtor are ok
2873 MacDefaultExtensionRecord(const wxString
& ext
, OSType type
, OSType creator
)
2877 m_creator
= creator
;
2885 WX_DECLARE_OBJARRAY(MacDefaultExtensionRecord
, MacDefaultExtensionArray
);
2887 bool gMacDefaultExtensionsInited
= false;
2889 #include "wx/arrimpl.cpp"
2891 WX_DEFINE_EXPORTED_OBJARRAY(MacDefaultExtensionArray
);
2893 MacDefaultExtensionArray gMacDefaultExtensions
;
2895 // load the default extensions
2896 const MacDefaultExtensionRecord gDefaults
[] =
2898 MacDefaultExtensionRecord( "txt", 'TEXT', 'ttxt' ),
2899 MacDefaultExtensionRecord( "tif", 'TIFF', '****' ),
2900 MacDefaultExtensionRecord( "jpg", 'JPEG', '****' ),
2903 void MacEnsureDefaultExtensionsLoaded()
2905 if ( !gMacDefaultExtensionsInited
)
2907 // we could load the pc exchange prefs here too
2908 for ( size_t i
= 0 ; i
< WXSIZEOF( gDefaults
) ; ++i
)
2910 gMacDefaultExtensions
.Add( gDefaults
[i
] ) ;
2912 gMacDefaultExtensionsInited
= true;
2916 } // anonymous namespace
2918 bool wxFileName::MacSetTypeAndCreator( wxUint32 type
, wxUint32 creator
)
2921 FSCatalogInfo catInfo
;
2924 if ( wxMacPathToFSRef( GetFullPath() , &fsRef
) == noErr
)
2926 if ( FSGetCatalogInfo (&fsRef
, kFSCatInfoFinderInfo
, &catInfo
, NULL
, NULL
, NULL
) == noErr
)
2928 finfo
= (FileInfo
*)&catInfo
.finderInfo
;
2929 finfo
->fileType
= type
;
2930 finfo
->fileCreator
= creator
;
2931 FSSetCatalogInfo( &fsRef
, kFSCatInfoFinderInfo
, &catInfo
) ;
2938 bool wxFileName::MacGetTypeAndCreator( wxUint32
*type
, wxUint32
*creator
) const
2941 FSCatalogInfo catInfo
;
2944 if ( wxMacPathToFSRef( GetFullPath() , &fsRef
) == noErr
)
2946 if ( FSGetCatalogInfo (&fsRef
, kFSCatInfoFinderInfo
, &catInfo
, NULL
, NULL
, NULL
) == noErr
)
2948 finfo
= (FileInfo
*)&catInfo
.finderInfo
;
2949 *type
= finfo
->fileType
;
2950 *creator
= finfo
->fileCreator
;
2957 bool wxFileName::MacSetDefaultTypeAndCreator()
2959 wxUint32 type
, creator
;
2960 if ( wxFileName::MacFindDefaultTypeAndCreator(GetExt() , &type
,
2963 return MacSetTypeAndCreator( type
, creator
) ;
2968 bool wxFileName::MacFindDefaultTypeAndCreator( const wxString
& ext
, wxUint32
*type
, wxUint32
*creator
)
2970 MacEnsureDefaultExtensionsLoaded() ;
2971 wxString extl
= ext
.Lower() ;
2972 for( int i
= gMacDefaultExtensions
.Count() - 1 ; i
>= 0 ; --i
)
2974 if ( gMacDefaultExtensions
.Item(i
).m_ext
== extl
)
2976 *type
= gMacDefaultExtensions
.Item(i
).m_type
;
2977 *creator
= gMacDefaultExtensions
.Item(i
).m_creator
;
2984 void wxFileName::MacRegisterDefaultTypeAndCreator( const wxString
& ext
, wxUint32 type
, wxUint32 creator
)
2986 MacEnsureDefaultExtensionsLoaded();
2987 MacDefaultExtensionRecord
rec(ext
.Lower(), type
, creator
);
2988 gMacDefaultExtensions
.Add( rec
);
2991 #endif // defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON