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"
72 #include "wx/msw/wrapwin.h" // For GetShort/LongPathName
74 #include "wx/dynarray.h"
81 #include "wx/filename.h"
82 #include "wx/private/filename.h"
83 #include "wx/tokenzr.h"
84 #include "wx/config.h" // for wxExpandEnvVars
85 #include "wx/dynlib.h"
88 #if defined(__WIN32__) && defined(__MINGW32__)
89 #include "wx/msw/gccpriv.h"
93 #include "wx/msw/private.h"
96 #if defined(__WXMAC__)
97 #include "wx/osx/private.h" // includes mac headers
100 // utime() is POSIX so should normally be available on all Unices
102 #include <sys/types.h>
104 #include <sys/stat.h>
114 #include <sys/types.h>
116 #include <sys/stat.h>
127 #include <sys/utime.h>
128 #include <sys/stat.h>
139 #define MAX_PATH _MAX_PATH
144 extern const wxULongLong wxInvalidSize
= (unsigned)-1;
145 #endif // wxUSE_LONGLONG
148 // this define is missing from VC6 headers
149 #ifndef INVALID_FILE_ATTRIBUTES
150 #define INVALID_FILE_ATTRIBUTES ((DWORD)-1)
157 // ----------------------------------------------------------------------------
159 // ----------------------------------------------------------------------------
161 // small helper class which opens and closes the file - we use it just to get
162 // a file handle for the given file name to pass it to some Win32 API function
163 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
174 wxFileHandle(const wxString
& filename
, OpenMode mode
, int flags
= 0)
176 // be careful and use FILE_{READ,WRITE}_ATTRIBUTES here instead of the
177 // usual GENERIC_{READ,WRITE} as we don't want the file access time to
178 // be changed when we open it because this class is used for setting
179 // access time (see #10567)
180 m_hFile
= ::CreateFile
182 filename
.fn_str(), // name
183 mode
== ReadAttr
? FILE_READ_ATTRIBUTES
// access mask
184 : FILE_WRITE_ATTRIBUTES
,
185 FILE_SHARE_READ
| // sharing mode
186 FILE_SHARE_WRITE
, // (allow everything)
187 NULL
, // no secutity attr
188 OPEN_EXISTING
, // creation disposition
190 NULL
// no template file
193 if ( m_hFile
== INVALID_HANDLE_VALUE
)
195 if ( mode
== ReadAttr
)
197 wxLogSysError(_("Failed to open '%s' for reading"),
202 wxLogSysError(_("Failed to open '%s' for writing"),
210 if ( m_hFile
!= INVALID_HANDLE_VALUE
)
212 if ( !::CloseHandle(m_hFile
) )
214 wxLogSysError(_("Failed to close file handle"));
219 // return true only if the file could be opened successfully
220 bool IsOk() const { return m_hFile
!= INVALID_HANDLE_VALUE
; }
223 operator HANDLE() const { return m_hFile
; }
231 // ----------------------------------------------------------------------------
233 // ----------------------------------------------------------------------------
235 #if wxUSE_DATETIME && defined(__WIN32__) && !defined(__WXMICROWIN__)
237 // convert between wxDateTime and FILETIME which is a 64-bit value representing
238 // the number of 100-nanosecond intervals since January 1, 1601.
240 static void ConvertFileTimeToWx(wxDateTime
*dt
, const FILETIME
&ft
)
242 FILETIME ftcopy
= ft
;
244 if ( !::FileTimeToLocalFileTime(&ftcopy
, &ftLocal
) )
246 wxLogLastError(wxT("FileTimeToLocalFileTime"));
250 if ( !::FileTimeToSystemTime(&ftLocal
, &st
) )
252 wxLogLastError(wxT("FileTimeToSystemTime"));
255 dt
->Set(st
.wDay
, wxDateTime::Month(st
.wMonth
- 1), st
.wYear
,
256 st
.wHour
, st
.wMinute
, st
.wSecond
, st
.wMilliseconds
);
259 static void ConvertWxToFileTime(FILETIME
*ft
, const wxDateTime
& dt
)
262 st
.wDay
= dt
.GetDay();
263 st
.wMonth
= (WORD
)(dt
.GetMonth() + 1);
264 st
.wYear
= (WORD
)dt
.GetYear();
265 st
.wHour
= dt
.GetHour();
266 st
.wMinute
= dt
.GetMinute();
267 st
.wSecond
= dt
.GetSecond();
268 st
.wMilliseconds
= dt
.GetMillisecond();
271 if ( !::SystemTimeToFileTime(&st
, &ftLocal
) )
273 wxLogLastError(wxT("SystemTimeToFileTime"));
276 if ( !::LocalFileTimeToFileTime(&ftLocal
, ft
) )
278 wxLogLastError(wxT("LocalFileTimeToFileTime"));
282 #endif // wxUSE_DATETIME && __WIN32__
284 // return a string with the volume par
285 static wxString
wxGetVolumeString(const wxString
& volume
, wxPathFormat format
)
289 if ( !volume
.empty() )
291 format
= wxFileName::GetFormat(format
);
293 // Special Windows UNC paths hack, part 2: undo what we did in
294 // SplitPath() and make an UNC path if we have a drive which is not a
295 // single letter (hopefully the network shares can't be one letter only
296 // although I didn't find any authoritative docs on this)
297 if ( format
== wxPATH_DOS
&& volume
.length() > 1 )
299 path
<< wxFILE_SEP_PATH_DOS
<< wxFILE_SEP_PATH_DOS
<< volume
;
301 else if ( format
== wxPATH_DOS
|| format
== wxPATH_VMS
)
303 path
<< volume
<< wxFileName::GetVolumeSeparator(format
);
311 // return true if the character is a DOS path separator i.e. either a slash or
313 inline bool IsDOSPathSep(wxUniChar ch
)
315 return ch
== wxFILE_SEP_PATH_DOS
|| ch
== wxFILE_SEP_PATH_UNIX
;
318 // return true if the format used is the DOS/Windows one and the string looks
320 static bool IsUNCPath(const wxString
& path
, wxPathFormat format
)
322 return format
== wxPATH_DOS
&&
323 path
.length() >= 4 && // "\\a" can't be a UNC path
324 IsDOSPathSep(path
[0u]) &&
325 IsDOSPathSep(path
[1u]) &&
326 !IsDOSPathSep(path
[2u]);
329 } // anonymous namespace
331 // ============================================================================
333 // ============================================================================
335 // ----------------------------------------------------------------------------
336 // wxFileName construction
337 // ----------------------------------------------------------------------------
339 void wxFileName::Assign( const wxFileName
&filepath
)
341 m_volume
= filepath
.GetVolume();
342 m_dirs
= filepath
.GetDirs();
343 m_name
= filepath
.GetName();
344 m_ext
= filepath
.GetExt();
345 m_relative
= filepath
.m_relative
;
346 m_hasExt
= filepath
.m_hasExt
;
349 void wxFileName::Assign(const wxString
& volume
,
350 const wxString
& path
,
351 const wxString
& name
,
356 // we should ignore paths which look like UNC shares because we already
357 // have the volume here and the UNC notation (\\server\path) is only valid
358 // for paths which don't start with a volume, so prevent SetPath() from
359 // recognizing "\\foo\bar" in "c:\\foo\bar" as an UNC path
361 // note also that this is a rather ugly way to do what we want (passing
362 // some kind of flag telling to ignore UNC paths to SetPath() would be
363 // better) but this is the safest thing to do to avoid breaking backwards
364 // compatibility in 2.8
365 if ( IsUNCPath(path
, format
) )
367 // remove one of the 2 leading backslashes to ensure that it's not
368 // recognized as an UNC path by SetPath()
369 wxString
pathNonUNC(path
, 1, wxString::npos
);
370 SetPath(pathNonUNC
, format
);
372 else // no UNC complications
374 SetPath(path
, format
);
384 void wxFileName::SetPath( const wxString
& pathOrig
, wxPathFormat format
)
388 if ( pathOrig
.empty() )
396 format
= GetFormat( format
);
398 // 0) deal with possible volume part first
401 SplitVolume(pathOrig
, &volume
, &path
, format
);
402 if ( !volume
.empty() )
409 // 1) Determine if the path is relative or absolute.
413 // we had only the volume
417 wxChar leadingChar
= path
[0u];
422 m_relative
= leadingChar
== wxT(':');
424 // We then remove a leading ":". The reason is in our
425 // storage form for relative paths:
426 // ":dir:file.txt" actually means "./dir/file.txt" in
427 // DOS notation and should get stored as
428 // (relative) (dir) (file.txt)
429 // "::dir:file.txt" actually means "../dir/file.txt"
430 // stored as (relative) (..) (dir) (file.txt)
431 // This is important only for the Mac as an empty dir
432 // actually means <UP>, whereas under DOS, double
433 // slashes can be ignored: "\\\\" is the same as "\\".
439 // TODO: what is the relative path format here?
444 wxFAIL_MSG( wxT("Unknown path format") );
445 // !! Fall through !!
448 m_relative
= leadingChar
!= wxT('/');
452 m_relative
= !IsPathSeparator(leadingChar
, format
);
457 // 2) Break up the path into its members. If the original path
458 // was just "/" or "\\", m_dirs will be empty. We know from
459 // the m_relative field, if this means "nothing" or "root dir".
461 wxStringTokenizer
tn( path
, GetPathSeparators(format
) );
463 while ( tn
.HasMoreTokens() )
465 wxString token
= tn
.GetNextToken();
467 // Remove empty token under DOS and Unix, interpret them
471 if (format
== wxPATH_MAC
)
472 m_dirs
.Add( wxT("..") );
482 void wxFileName::Assign(const wxString
& fullpath
,
485 wxString volume
, path
, name
, ext
;
487 SplitPath(fullpath
, &volume
, &path
, &name
, &ext
, &hasExt
, format
);
489 Assign(volume
, path
, name
, ext
, hasExt
, format
);
492 void wxFileName::Assign(const wxString
& fullpathOrig
,
493 const wxString
& fullname
,
496 // always recognize fullpath as directory, even if it doesn't end with a
498 wxString fullpath
= fullpathOrig
;
499 if ( !fullpath
.empty() && !wxEndsWithPathSeparator(fullpath
) )
501 fullpath
+= GetPathSeparator(format
);
504 wxString volume
, path
, name
, ext
;
507 // do some consistency checks: the name should be really just the filename
508 // and the path should be really just a path
509 wxString volDummy
, pathDummy
, nameDummy
, extDummy
;
511 SplitPath(fullname
, &volDummy
, &pathDummy
, &name
, &ext
, &hasExt
, format
);
513 wxASSERT_MSG( volDummy
.empty() && pathDummy
.empty(),
514 wxT("the file name shouldn't contain the path") );
516 SplitPath(fullpath
, &volume
, &path
, &nameDummy
, &extDummy
, format
);
519 // This test makes no sense on an OpenVMS system.
520 wxASSERT_MSG( nameDummy
.empty() && extDummy
.empty(),
521 wxT("the path shouldn't contain file name nor extension") );
523 Assign(volume
, path
, name
, ext
, hasExt
, format
);
526 void wxFileName::Assign(const wxString
& pathOrig
,
527 const wxString
& name
,
533 SplitVolume(pathOrig
, &volume
, &path
, format
);
535 Assign(volume
, path
, name
, ext
, format
);
538 void wxFileName::AssignDir(const wxString
& dir
, wxPathFormat format
)
540 Assign(dir
, wxEmptyString
, format
);
543 void wxFileName::Clear()
549 m_ext
= wxEmptyString
;
551 // we don't have any absolute path for now
559 wxFileName
wxFileName::FileName(const wxString
& file
, wxPathFormat format
)
561 return wxFileName(file
, format
);
565 wxFileName
wxFileName::DirName(const wxString
& dir
, wxPathFormat format
)
568 fn
.AssignDir(dir
, format
);
572 // ----------------------------------------------------------------------------
574 // ----------------------------------------------------------------------------
576 bool wxFileName::FileExists() const
578 return wxFileName::FileExists( GetFullPath() );
582 bool wxFileName::FileExists( const wxString
&filePath
)
584 #if defined(__WXPALMOS__)
586 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
587 // we must use GetFileAttributes() instead of the ANSI C functions because
588 // it can cope with network (UNC) paths unlike them
589 DWORD ret
= ::GetFileAttributes(filePath
.fn_str());
591 return (ret
!= INVALID_FILE_ATTRIBUTES
) && !(ret
& FILE_ATTRIBUTE_DIRECTORY
);
594 #define S_ISREG(mode) ((mode) & S_IFREG)
597 #ifndef wxNEED_WX_UNISTD_H
598 return (wxStat( filePath
.fn_str() , &st
) == 0 && S_ISREG(st
.st_mode
))
600 || (errno
== EACCES
) // if access is denied something with that name
601 // exists and is opened in exclusive mode.
605 return wxStat( filePath
, &st
) == 0 && S_ISREG(st
.st_mode
);
607 #endif // __WIN32__/!__WIN32__
610 bool wxFileName::DirExists() const
612 return wxFileName::DirExists( GetPath() );
616 bool wxFileName::DirExists( const wxString
&dirPath
)
618 wxString
strPath(dirPath
);
620 #if defined(__WINDOWS__) || defined(__OS2__)
621 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
622 // so remove all trailing backslashes from the path - but don't do this for
623 // the paths "d:\" (which are different from "d:") nor for just "\"
624 while ( wxEndsWithPathSeparator(strPath
) )
626 size_t len
= strPath
.length();
627 if ( len
== 1 || (len
== 3 && strPath
[len
- 2] == wxT(':')) )
630 strPath
.Truncate(len
- 1);
632 #endif // __WINDOWS__
635 // OS/2 can't handle "d:", it wants either "d:\" or "d:."
636 if (strPath
.length() == 2 && strPath
[1u] == wxT(':'))
640 #if defined(__WXPALMOS__)
642 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
643 // stat() can't cope with network paths
644 DWORD ret
= ::GetFileAttributes(strPath
.fn_str());
646 return (ret
!= INVALID_FILE_ATTRIBUTES
) && (ret
& FILE_ATTRIBUTE_DIRECTORY
);
647 #elif defined(__OS2__)
648 FILESTATUS3 Info
= {{0}};
649 APIRET rc
= ::DosQueryPathInfo((PSZ
)(WXSTRINGCAST strPath
), FIL_STANDARD
,
650 (void*) &Info
, sizeof(FILESTATUS3
));
652 return ((rc
== NO_ERROR
) && (Info
.attrFile
& FILE_DIRECTORY
)) ||
653 (rc
== ERROR_SHARING_VIOLATION
);
654 // If we got a sharing violation, there must be something with this name.
658 #ifndef __VISAGECPP__
659 return wxStat(strPath
.c_str(), &st
) == 0 && ((st
.st_mode
& S_IFMT
) == S_IFDIR
);
661 // S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
662 return wxStat(strPath
.c_str(), &st
) == 0 && (st
.st_mode
== S_IFDIR
);
665 #endif // __WIN32__/!__WIN32__
668 // ----------------------------------------------------------------------------
669 // CWD and HOME stuff
670 // ----------------------------------------------------------------------------
672 void wxFileName::AssignCwd(const wxString
& volume
)
674 AssignDir(wxFileName::GetCwd(volume
));
678 wxString
wxFileName::GetCwd(const wxString
& volume
)
680 // if we have the volume, we must get the current directory on this drive
681 // and to do this we have to chdir to this volume - at least under Windows,
682 // I don't know how to get the current drive on another volume elsewhere
685 if ( !volume
.empty() )
688 SetCwd(volume
+ GetVolumeSeparator());
691 wxString cwd
= ::wxGetCwd();
693 if ( !volume
.empty() )
701 bool wxFileName::SetCwd() const
703 return wxFileName::SetCwd( GetPath() );
706 bool wxFileName::SetCwd( const wxString
&cwd
)
708 return ::wxSetWorkingDirectory( cwd
);
711 void wxFileName::AssignHomeDir()
713 AssignDir(wxFileName::GetHomeDir());
716 wxString
wxFileName::GetHomeDir()
718 return ::wxGetHomeDir();
722 // ----------------------------------------------------------------------------
723 // CreateTempFileName
724 // ----------------------------------------------------------------------------
726 #if wxUSE_FILE || wxUSE_FFILE
729 #if !defined wx_fdopen && defined HAVE_FDOPEN
730 #define wx_fdopen fdopen
733 // NB: GetTempFileName() under Windows creates the file, so using
734 // O_EXCL there would fail
736 #define wxOPEN_EXCL 0
738 #define wxOPEN_EXCL O_EXCL
742 #ifdef wxOpenOSFHandle
743 #define WX_HAVE_DELETE_ON_CLOSE
744 // On Windows create a file with the FILE_FLAGS_DELETE_ON_CLOSE flags.
746 static int wxOpenWithDeleteOnClose(const wxString
& filename
)
748 DWORD access
= GENERIC_READ
| GENERIC_WRITE
;
750 DWORD disposition
= OPEN_ALWAYS
;
752 DWORD attributes
= FILE_ATTRIBUTE_TEMPORARY
|
753 FILE_FLAG_DELETE_ON_CLOSE
;
755 HANDLE h
= ::CreateFile(filename
.fn_str(), access
, 0, NULL
,
756 disposition
, attributes
, NULL
);
758 return wxOpenOSFHandle(h
, wxO_BINARY
);
760 #endif // wxOpenOSFHandle
763 // Helper to open the file
765 static int wxTempOpen(const wxString
& path
, bool *deleteOnClose
)
767 #ifdef WX_HAVE_DELETE_ON_CLOSE
769 return wxOpenWithDeleteOnClose(path
);
772 *deleteOnClose
= false;
774 return wxOpen(path
, wxO_BINARY
| O_RDWR
| O_CREAT
| wxOPEN_EXCL
, 0600);
779 // Helper to open the file and attach it to the wxFFile
781 static bool wxTempOpen(wxFFile
*file
, const wxString
& path
, bool *deleteOnClose
)
784 *deleteOnClose
= false;
785 return file
->Open(path
, wxT("w+b"));
787 int fd
= wxTempOpen(path
, deleteOnClose
);
790 file
->Attach(wx_fdopen(fd
, "w+b"));
791 return file
->IsOpened();
794 #endif // wxUSE_FFILE
798 #define WXFILEARGS(x, y) y
800 #define WXFILEARGS(x, y) x
802 #define WXFILEARGS(x, y) x, y
806 // Implementation of wxFileName::CreateTempFileName().
808 static wxString
wxCreateTempImpl(
809 const wxString
& prefix
,
810 WXFILEARGS(wxFile
*fileTemp
, wxFFile
*ffileTemp
),
811 bool *deleteOnClose
= NULL
)
813 #if wxUSE_FILE && wxUSE_FFILE
814 wxASSERT(fileTemp
== NULL
|| ffileTemp
== NULL
);
816 wxString path
, dir
, name
;
817 bool wantDeleteOnClose
= false;
821 // set the result to false initially
822 wantDeleteOnClose
= *deleteOnClose
;
823 *deleteOnClose
= false;
827 // easier if it alwasys points to something
828 deleteOnClose
= &wantDeleteOnClose
;
831 // use the directory specified by the prefix
832 wxFileName::SplitPath(prefix
, &dir
, &name
, NULL
/* extension */);
836 dir
= wxFileName::GetTempDir();
839 #if defined(__WXWINCE__)
840 path
= dir
+ wxT("\\") + name
;
842 while (wxFileName::FileExists(path
))
844 path
= dir
+ wxT("\\") + name
;
849 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
850 if ( !::GetTempFileName(dir
.fn_str(), name
.fn_str(), 0,
851 wxStringBuffer(path
, MAX_PATH
+ 1)) )
853 wxLogLastError(wxT("GetTempFileName"));
861 if ( !wxEndsWithPathSeparator(dir
) &&
862 (name
.empty() || !wxIsPathSeparator(name
[0u])) )
864 path
+= wxFILE_SEP_PATH
;
869 #if defined(HAVE_MKSTEMP)
870 // scratch space for mkstemp()
871 path
+= wxT("XXXXXX");
873 // we need to copy the path to the buffer in which mkstemp() can modify it
874 wxCharBuffer
buf(path
.fn_str());
876 // cast is safe because the string length doesn't change
877 int fdTemp
= mkstemp( (char*)(const char*) buf
);
880 // this might be not necessary as mkstemp() on most systems should have
881 // already done it but it doesn't hurt neither...
884 else // mkstemp() succeeded
886 path
= wxConvFile
.cMB2WX( (const char*) buf
);
889 // avoid leaking the fd
892 fileTemp
->Attach(fdTemp
);
901 ffileTemp
->Attach(wx_fdopen(fdTemp
, "r+b"));
903 ffileTemp
->Open(path
, wxT("r+b"));
914 #else // !HAVE_MKSTEMP
918 path
+= wxT("XXXXXX");
920 wxCharBuffer buf
= wxConvFile
.cWX2MB( path
);
921 if ( !mktemp( (char*)(const char*) buf
) )
927 path
= wxConvFile
.cMB2WX( (const char*) buf
);
929 #else // !HAVE_MKTEMP (includes __DOS__)
930 // generate the unique file name ourselves
931 #if !defined(__DOS__) && !defined(__PALMOS__) && (!defined(__MWERKS__) || defined(__DARWIN__) )
932 path
<< (unsigned int)getpid();
937 static const size_t numTries
= 1000;
938 for ( size_t n
= 0; n
< numTries
; n
++ )
940 // 3 hex digits is enough for numTries == 1000 < 4096
941 pathTry
= path
+ wxString::Format(wxT("%.03x"), (unsigned int) n
);
942 if ( !wxFileName::FileExists(pathTry
) )
951 #endif // HAVE_MKTEMP/!HAVE_MKTEMP
953 #endif // HAVE_MKSTEMP/!HAVE_MKSTEMP
955 #endif // Windows/!Windows
959 wxLogSysError(_("Failed to create a temporary file name"));
965 // open the file - of course, there is a race condition here, this is
966 // why we always prefer using mkstemp()...
968 if ( fileTemp
&& !fileTemp
->IsOpened() )
970 *deleteOnClose
= wantDeleteOnClose
;
971 int fd
= wxTempOpen(path
, deleteOnClose
);
973 fileTemp
->Attach(fd
);
980 if ( ffileTemp
&& !ffileTemp
->IsOpened() )
982 *deleteOnClose
= wantDeleteOnClose
;
983 ok
= wxTempOpen(ffileTemp
, path
, deleteOnClose
);
989 // FIXME: If !ok here should we loop and try again with another
990 // file name? That is the standard recourse if open(O_EXCL)
991 // fails, though of course it should be protected against
992 // possible infinite looping too.
994 wxLogError(_("Failed to open temporary file."));
1004 static bool wxCreateTempImpl(
1005 const wxString
& prefix
,
1006 WXFILEARGS(wxFile
*fileTemp
, wxFFile
*ffileTemp
),
1009 bool deleteOnClose
= true;
1011 *name
= wxCreateTempImpl(prefix
,
1012 WXFILEARGS(fileTemp
, ffileTemp
),
1015 bool ok
= !name
->empty();
1020 else if (ok
&& wxRemoveFile(*name
))
1028 static void wxAssignTempImpl(
1030 const wxString
& prefix
,
1031 WXFILEARGS(wxFile
*fileTemp
, wxFFile
*ffileTemp
))
1034 tempname
= wxCreateTempImpl(prefix
, WXFILEARGS(fileTemp
, ffileTemp
));
1036 if ( tempname
.empty() )
1038 // error, failed to get temp file name
1043 fn
->Assign(tempname
);
1048 void wxFileName::AssignTempFileName(const wxString
& prefix
)
1050 wxAssignTempImpl(this, prefix
, WXFILEARGS(NULL
, NULL
));
1054 wxString
wxFileName::CreateTempFileName(const wxString
& prefix
)
1056 return wxCreateTempImpl(prefix
, WXFILEARGS(NULL
, NULL
));
1059 #endif // wxUSE_FILE || wxUSE_FFILE
1064 wxString
wxCreateTempFileName(const wxString
& prefix
,
1066 bool *deleteOnClose
)
1068 return wxCreateTempImpl(prefix
, WXFILEARGS(fileTemp
, NULL
), deleteOnClose
);
1071 bool wxCreateTempFile(const wxString
& prefix
,
1075 return wxCreateTempImpl(prefix
, WXFILEARGS(fileTemp
, NULL
), name
);
1078 void wxFileName::AssignTempFileName(const wxString
& prefix
, wxFile
*fileTemp
)
1080 wxAssignTempImpl(this, prefix
, WXFILEARGS(fileTemp
, NULL
));
1085 wxFileName::CreateTempFileName(const wxString
& prefix
, wxFile
*fileTemp
)
1087 return wxCreateTempFileName(prefix
, fileTemp
);
1090 #endif // wxUSE_FILE
1095 wxString
wxCreateTempFileName(const wxString
& prefix
,
1097 bool *deleteOnClose
)
1099 return wxCreateTempImpl(prefix
, WXFILEARGS(NULL
, fileTemp
), deleteOnClose
);
1102 bool wxCreateTempFile(const wxString
& prefix
,
1106 return wxCreateTempImpl(prefix
, WXFILEARGS(NULL
, fileTemp
), name
);
1110 void wxFileName::AssignTempFileName(const wxString
& prefix
, wxFFile
*fileTemp
)
1112 wxAssignTempImpl(this, prefix
, WXFILEARGS(NULL
, fileTemp
));
1117 wxFileName::CreateTempFileName(const wxString
& prefix
, wxFFile
*fileTemp
)
1119 return wxCreateTempFileName(prefix
, fileTemp
);
1122 #endif // wxUSE_FFILE
1125 // ----------------------------------------------------------------------------
1126 // directory operations
1127 // ----------------------------------------------------------------------------
1129 // helper of GetTempDir(): check if the given directory exists and return it if
1130 // it does or an empty string otherwise
1134 wxString
CheckIfDirExists(const wxString
& dir
)
1136 return wxFileName::DirExists(dir
) ? dir
: wxString();
1139 } // anonymous namespace
1141 wxString
wxFileName::GetTempDir()
1143 // first try getting it from environment: this allows overriding the values
1144 // used by default if the user wants to create temporary files in another
1146 wxString dir
= CheckIfDirExists(wxGetenv("TMPDIR"));
1149 dir
= CheckIfDirExists(wxGetenv("TMP"));
1151 dir
= CheckIfDirExists(wxGetenv("TEMP"));
1154 // if no environment variables are set, use the system default
1157 #if defined(__WXWINCE__)
1158 dir
= CheckIfDirExists(wxT("\\temp"));
1159 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1160 if ( !::GetTempPath(MAX_PATH
, wxStringBuffer(dir
, MAX_PATH
+ 1)) )
1162 wxLogLastError(wxT("GetTempPath"));
1164 #elif defined(__WXMAC__) && wxOSX_USE_CARBON
1165 dir
= wxMacFindFolder(short(kOnSystemDisk
), kTemporaryFolderType
, kCreateFolder
);
1166 #endif // systems with native way
1169 // fall back to hard coded value
1172 #ifdef __UNIX_LIKE__
1173 dir
= CheckIfDirExists("/tmp");
1175 #endif // __UNIX_LIKE__
1182 bool wxFileName::Mkdir( int perm
, int flags
) const
1184 return wxFileName::Mkdir(GetPath(), perm
, flags
);
1187 bool wxFileName::Mkdir( const wxString
& dir
, int perm
, int flags
)
1189 if ( flags
& wxPATH_MKDIR_FULL
)
1191 // split the path in components
1192 wxFileName filename
;
1193 filename
.AssignDir(dir
);
1196 if ( filename
.HasVolume())
1198 currPath
<< wxGetVolumeString(filename
.GetVolume(), wxPATH_NATIVE
);
1201 wxArrayString dirs
= filename
.GetDirs();
1202 size_t count
= dirs
.GetCount();
1203 for ( size_t i
= 0; i
< count
; i
++ )
1205 if ( i
> 0 || filename
.IsAbsolute() )
1206 currPath
+= wxFILE_SEP_PATH
;
1207 currPath
+= dirs
[i
];
1209 if (!DirExists(currPath
))
1211 if (!wxMkdir(currPath
, perm
))
1213 // no need to try creating further directories
1223 return ::wxMkdir( dir
, perm
);
1226 bool wxFileName::Rmdir(int flags
) const
1228 return wxFileName::Rmdir( GetPath(), flags
);
1231 bool wxFileName::Rmdir(const wxString
& dir
, int flags
)
1234 if ( flags
& wxPATH_RMDIR_RECURSIVE
)
1236 // SHFileOperation needs double null termination string
1237 // but without separator at the end of the path
1239 if ( path
.Last() == wxFILE_SEP_PATH
)
1243 SHFILEOPSTRUCT fileop
;
1244 wxZeroMemory(fileop
);
1245 fileop
.wFunc
= FO_DELETE
;
1246 fileop
.pFrom
= path
.fn_str();
1247 fileop
.fFlags
= FOF_SILENT
| FOF_NOCONFIRMATION
;
1249 // FOF_NOERRORUI is not defined in WinCE
1250 fileop
.fFlags
|= FOF_NOERRORUI
;
1253 int ret
= SHFileOperation(&fileop
);
1256 // SHFileOperation may return non-Win32 error codes, so the error
1257 // message can be incorrect
1258 wxLogApiError(wxT("SHFileOperation"), ret
);
1264 else if ( flags
& wxPATH_RMDIR_FULL
)
1266 if ( flags
!= 0 ) // wxPATH_RMDIR_FULL or wxPATH_RMDIR_RECURSIVE
1267 #endif // !__WXMSW__
1270 if ( path
.Last() != wxFILE_SEP_PATH
)
1271 path
+= wxFILE_SEP_PATH
;
1275 if ( !d
.IsOpened() )
1280 // first delete all subdirectories
1281 bool cont
= d
.GetFirst(&filename
, "", wxDIR_DIRS
| wxDIR_HIDDEN
);
1284 wxFileName::Rmdir(path
+ filename
, flags
);
1285 cont
= d
.GetNext(&filename
);
1289 if ( flags
& wxPATH_RMDIR_RECURSIVE
)
1291 // delete all files too
1292 cont
= d
.GetFirst(&filename
, "", wxDIR_FILES
| wxDIR_HIDDEN
);
1295 ::wxRemoveFile(path
+ filename
);
1296 cont
= d
.GetNext(&filename
);
1299 #endif // !__WXMSW__
1302 return ::wxRmdir(dir
);
1305 // ----------------------------------------------------------------------------
1306 // path normalization
1307 // ----------------------------------------------------------------------------
1309 bool wxFileName::Normalize(int flags
,
1310 const wxString
& cwd
,
1311 wxPathFormat format
)
1313 // deal with env vars renaming first as this may seriously change the path
1314 if ( flags
& wxPATH_NORM_ENV_VARS
)
1316 wxString pathOrig
= GetFullPath(format
);
1317 wxString path
= wxExpandEnvVars(pathOrig
);
1318 if ( path
!= pathOrig
)
1324 // the existing path components
1325 wxArrayString dirs
= GetDirs();
1327 // the path to prepend in front to make the path absolute
1330 format
= GetFormat(format
);
1332 // set up the directory to use for making the path absolute later
1333 if ( (flags
& wxPATH_NORM_ABSOLUTE
) && !IsAbsolute(format
) )
1337 curDir
.AssignCwd(GetVolume());
1339 else // cwd provided
1341 curDir
.AssignDir(cwd
);
1345 // handle ~ stuff under Unix only
1346 if ( (format
== wxPATH_UNIX
) && (flags
& wxPATH_NORM_TILDE
) && m_relative
)
1348 if ( !dirs
.IsEmpty() )
1350 wxString dir
= dirs
[0u];
1351 if ( !dir
.empty() && dir
[0u] == wxT('~') )
1353 // to make the path absolute use the home directory
1354 curDir
.AssignDir(wxGetUserHome(dir
.c_str() + 1));
1360 // transform relative path into abs one
1361 if ( curDir
.IsOk() )
1363 // this path may be relative because it doesn't have the volume name
1364 // and still have m_relative=true; in this case we shouldn't modify
1365 // our directory components but just set the current volume
1366 if ( !HasVolume() && curDir
.HasVolume() )
1368 SetVolume(curDir
.GetVolume());
1372 // yes, it was the case - we don't need curDir then
1377 // finally, prepend curDir to the dirs array
1378 wxArrayString dirsNew
= curDir
.GetDirs();
1379 WX_PREPEND_ARRAY(dirs
, dirsNew
);
1381 // if we used e.g. tilde expansion previously and wxGetUserHome didn't
1382 // return for some reason an absolute path, then curDir maybe not be absolute!
1383 if ( !curDir
.m_relative
)
1385 // we have prepended an absolute path and thus we are now an absolute
1389 // else if (flags & wxPATH_NORM_ABSOLUTE):
1390 // should we warn the user that we didn't manage to make the path absolute?
1393 // now deal with ".", ".." and the rest
1395 size_t count
= dirs
.GetCount();
1396 for ( size_t n
= 0; n
< count
; n
++ )
1398 wxString dir
= dirs
[n
];
1400 if ( flags
& wxPATH_NORM_DOTS
)
1402 if ( dir
== wxT(".") )
1408 if ( dir
== wxT("..") )
1410 if ( m_dirs
.IsEmpty() )
1412 wxLogError(_("The path '%s' contains too many \"..\"!"),
1413 GetFullPath().c_str());
1417 m_dirs
.RemoveAt(m_dirs
.GetCount() - 1);
1425 #if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE
1426 if ( (flags
& wxPATH_NORM_SHORTCUT
) )
1429 if (GetShortcutTarget(GetFullPath(format
), filename
))
1437 #if defined(__WIN32__)
1438 if ( (flags
& wxPATH_NORM_LONG
) && (format
== wxPATH_DOS
) )
1440 Assign(GetLongPath());
1444 // Change case (this should be kept at the end of the function, to ensure
1445 // that the path doesn't change any more after we normalize its case)
1446 if ( (flags
& wxPATH_NORM_CASE
) && !IsCaseSensitive(format
) )
1448 m_volume
.MakeLower();
1452 // directory entries must be made lower case as well
1453 count
= m_dirs
.GetCount();
1454 for ( size_t i
= 0; i
< count
; i
++ )
1456 m_dirs
[i
].MakeLower();
1464 bool wxFileName::ReplaceEnvVariable(const wxString
& envname
,
1465 const wxString
& replacementFmtString
,
1466 wxPathFormat format
)
1468 // look into stringForm for the contents of the given environment variable
1470 if (envname
.empty() ||
1471 !wxGetEnv(envname
, &val
))
1476 wxString stringForm
= GetPath(wxPATH_GET_VOLUME
, format
);
1477 // do not touch the file name and the extension
1479 wxString replacement
= wxString::Format(replacementFmtString
, envname
);
1480 stringForm
.Replace(val
, replacement
);
1482 // Now assign ourselves the modified path:
1483 Assign(stringForm
, GetFullName(), format
);
1489 bool wxFileName::ReplaceHomeDir(wxPathFormat format
)
1491 wxString homedir
= wxGetHomeDir();
1492 if (homedir
.empty())
1495 wxString stringForm
= GetPath(wxPATH_GET_VOLUME
, format
);
1496 // do not touch the file name and the extension
1498 stringForm
.Replace(homedir
, "~");
1500 // Now assign ourselves the modified path:
1501 Assign(stringForm
, GetFullName(), format
);
1506 // ----------------------------------------------------------------------------
1507 // get the shortcut target
1508 // ----------------------------------------------------------------------------
1510 // WinCE (3) doesn't have CLSID_ShellLink, IID_IShellLink definitions.
1511 // The .lnk file is a plain text file so it should be easy to
1512 // make it work. Hint from Google Groups:
1513 // "If you open up a lnk file, you'll see a
1514 // number, followed by a pound sign (#), followed by more text. The
1515 // number is the number of characters that follows the pound sign. The
1516 // characters after the pound sign are the command line (which _can_
1517 // include arguments) to be executed. Any path (e.g. \windows\program
1518 // files\myapp.exe) that includes spaces needs to be enclosed in
1519 // quotation marks."
1521 #if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE
1522 // The following lines are necessary under WinCE
1523 // #include "wx/msw/private.h"
1524 // #include <ole2.h>
1526 #if defined(__WXWINCE__)
1527 #include <shlguid.h>
1530 bool wxFileName::GetShortcutTarget(const wxString
& shortcutPath
,
1531 wxString
& targetFilename
,
1532 wxString
* arguments
) const
1534 wxString path
, file
, ext
;
1535 wxFileName::SplitPath(shortcutPath
, & path
, & file
, & ext
);
1539 bool success
= false;
1541 // Assume it's not a shortcut if it doesn't end with lnk
1542 if (ext
.CmpNoCase(wxT("lnk"))!=0)
1545 // create a ShellLink object
1546 hres
= CoCreateInstance(CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
1547 IID_IShellLink
, (LPVOID
*) &psl
);
1549 if (SUCCEEDED(hres
))
1552 hres
= psl
->QueryInterface( IID_IPersistFile
, (LPVOID
*) &ppf
);
1553 if (SUCCEEDED(hres
))
1555 WCHAR wsz
[MAX_PATH
];
1557 MultiByteToWideChar(CP_ACP
, MB_PRECOMPOSED
, shortcutPath
.mb_str(), -1, wsz
,
1560 hres
= ppf
->Load(wsz
, 0);
1563 if (SUCCEEDED(hres
))
1566 // Wrong prototype in early versions
1567 #if defined(__MINGW32__) && !wxCHECK_W32API_VERSION(2, 2)
1568 psl
->GetPath((CHAR
*) buf
, 2048, NULL
, SLGP_UNCPRIORITY
);
1570 psl
->GetPath(buf
, 2048, NULL
, SLGP_UNCPRIORITY
);
1572 targetFilename
= wxString(buf
);
1573 success
= (shortcutPath
!= targetFilename
);
1575 psl
->GetArguments(buf
, 2048);
1577 if (!args
.empty() && arguments
)
1589 #endif // __WIN32__ && !__WXWINCE__
1592 // ----------------------------------------------------------------------------
1593 // absolute/relative paths
1594 // ----------------------------------------------------------------------------
1596 bool wxFileName::IsAbsolute(wxPathFormat format
) const
1598 // unix paths beginning with ~ are reported as being absolute
1599 if ( format
== wxPATH_UNIX
)
1601 if ( !m_dirs
.IsEmpty() )
1603 wxString dir
= m_dirs
[0u];
1605 if (!dir
.empty() && dir
[0u] == wxT('~'))
1610 // if our path doesn't start with a path separator, it's not an absolute
1615 if ( !GetVolumeSeparator(format
).empty() )
1617 // this format has volumes and an absolute path must have one, it's not
1618 // enough to have the full path to be an absolute file under Windows
1619 if ( GetVolume().empty() )
1626 bool wxFileName::MakeRelativeTo(const wxString
& pathBase
, wxPathFormat format
)
1628 wxFileName fnBase
= wxFileName::DirName(pathBase
, format
);
1630 // get cwd only once - small time saving
1631 wxString cwd
= wxGetCwd();
1632 Normalize(wxPATH_NORM_ALL
& ~wxPATH_NORM_CASE
, cwd
, format
);
1633 fnBase
.Normalize(wxPATH_NORM_ALL
& ~wxPATH_NORM_CASE
, cwd
, format
);
1635 bool withCase
= IsCaseSensitive(format
);
1637 // we can't do anything if the files live on different volumes
1638 if ( !GetVolume().IsSameAs(fnBase
.GetVolume(), withCase
) )
1644 // same drive, so we don't need our volume
1647 // remove common directories starting at the top
1648 while ( !m_dirs
.IsEmpty() && !fnBase
.m_dirs
.IsEmpty() &&
1649 m_dirs
[0u].IsSameAs(fnBase
.m_dirs
[0u], withCase
) )
1652 fnBase
.m_dirs
.RemoveAt(0);
1655 // add as many ".." as needed
1656 size_t count
= fnBase
.m_dirs
.GetCount();
1657 for ( size_t i
= 0; i
< count
; i
++ )
1659 m_dirs
.Insert(wxT(".."), 0u);
1662 if ( format
== wxPATH_UNIX
|| format
== wxPATH_DOS
)
1664 // a directory made relative with respect to itself is '.' under Unix
1665 // and DOS, by definition (but we don't have to insert "./" for the
1667 if ( m_dirs
.IsEmpty() && IsDir() )
1669 m_dirs
.Add(wxT('.'));
1679 // ----------------------------------------------------------------------------
1680 // filename kind tests
1681 // ----------------------------------------------------------------------------
1683 bool wxFileName::SameAs(const wxFileName
& filepath
, wxPathFormat format
) const
1685 wxFileName fn1
= *this,
1688 // get cwd only once - small time saving
1689 wxString cwd
= wxGetCwd();
1690 fn1
.Normalize(wxPATH_NORM_ALL
| wxPATH_NORM_CASE
, cwd
, format
);
1691 fn2
.Normalize(wxPATH_NORM_ALL
| wxPATH_NORM_CASE
, cwd
, format
);
1693 if ( fn1
.GetFullPath() == fn2
.GetFullPath() )
1696 // TODO: compare inodes for Unix, this works even when filenames are
1697 // different but files are the same (symlinks) (VZ)
1703 bool wxFileName::IsCaseSensitive( wxPathFormat format
)
1705 // only Unix filenames are truely case-sensitive
1706 return GetFormat(format
) == wxPATH_UNIX
;
1710 wxString
wxFileName::GetForbiddenChars(wxPathFormat format
)
1712 // Inits to forbidden characters that are common to (almost) all platforms.
1713 wxString strForbiddenChars
= wxT("*?");
1715 // If asserts, wxPathFormat has been changed. In case of a new path format
1716 // addition, the following code might have to be updated.
1717 wxCOMPILE_TIME_ASSERT(wxPATH_MAX
== 5, wxPathFormatChanged
);
1718 switch ( GetFormat(format
) )
1721 wxFAIL_MSG( wxT("Unknown path format") );
1722 // !! Fall through !!
1728 // On a Mac even names with * and ? are allowed (Tested with OS
1729 // 9.2.1 and OS X 10.2.5)
1730 strForbiddenChars
= wxEmptyString
;
1734 strForbiddenChars
+= wxT("\\/:\"<>|");
1741 return strForbiddenChars
;
1745 wxString
wxFileName::GetVolumeSeparator(wxPathFormat
WXUNUSED_IN_WINCE(format
))
1748 return wxEmptyString
;
1752 if ( (GetFormat(format
) == wxPATH_DOS
) ||
1753 (GetFormat(format
) == wxPATH_VMS
) )
1755 sepVol
= wxFILE_SEP_DSK
;
1764 wxString
wxFileName::GetPathSeparators(wxPathFormat format
)
1767 switch ( GetFormat(format
) )
1770 // accept both as native APIs do but put the native one first as
1771 // this is the one we use in GetFullPath()
1772 seps
<< wxFILE_SEP_PATH_DOS
<< wxFILE_SEP_PATH_UNIX
;
1776 wxFAIL_MSG( wxT("Unknown wxPATH_XXX style") );
1780 seps
= wxFILE_SEP_PATH_UNIX
;
1784 seps
= wxFILE_SEP_PATH_MAC
;
1788 seps
= wxFILE_SEP_PATH_VMS
;
1796 wxString
wxFileName::GetPathTerminators(wxPathFormat format
)
1798 format
= GetFormat(format
);
1800 // under VMS the end of the path is ']', not the path separator used to
1801 // separate the components
1802 return format
== wxPATH_VMS
? wxString(wxT(']')) : GetPathSeparators(format
);
1806 bool wxFileName::IsPathSeparator(wxChar ch
, wxPathFormat format
)
1808 // wxString::Find() doesn't work as expected with NUL - it will always find
1809 // it, so test for it separately
1810 return ch
!= wxT('\0') && GetPathSeparators(format
).Find(ch
) != wxNOT_FOUND
;
1813 // ----------------------------------------------------------------------------
1814 // path components manipulation
1815 // ----------------------------------------------------------------------------
1817 /* static */ bool wxFileName::IsValidDirComponent(const wxString
& dir
)
1821 wxFAIL_MSG( wxT("empty directory passed to wxFileName::InsertDir()") );
1826 const size_t len
= dir
.length();
1827 for ( size_t n
= 0; n
< len
; n
++ )
1829 if ( dir
[n
] == GetVolumeSeparator() || IsPathSeparator(dir
[n
]) )
1831 wxFAIL_MSG( wxT("invalid directory component in wxFileName") );
1840 void wxFileName::AppendDir( const wxString
& dir
)
1842 if ( IsValidDirComponent(dir
) )
1846 void wxFileName::PrependDir( const wxString
& dir
)
1851 void wxFileName::InsertDir(size_t before
, const wxString
& dir
)
1853 if ( IsValidDirComponent(dir
) )
1854 m_dirs
.Insert(dir
, before
);
1857 void wxFileName::RemoveDir(size_t pos
)
1859 m_dirs
.RemoveAt(pos
);
1862 // ----------------------------------------------------------------------------
1864 // ----------------------------------------------------------------------------
1866 void wxFileName::SetFullName(const wxString
& fullname
)
1868 SplitPath(fullname
, NULL
/* no volume */, NULL
/* no path */,
1869 &m_name
, &m_ext
, &m_hasExt
);
1872 wxString
wxFileName::GetFullName() const
1874 wxString fullname
= m_name
;
1877 fullname
<< wxFILE_SEP_EXT
<< m_ext
;
1883 wxString
wxFileName::GetPath( int flags
, wxPathFormat format
) const
1885 format
= GetFormat( format
);
1889 // return the volume with the path as well if requested
1890 if ( flags
& wxPATH_GET_VOLUME
)
1892 fullpath
+= wxGetVolumeString(GetVolume(), format
);
1895 // the leading character
1900 fullpath
+= wxFILE_SEP_PATH_MAC
;
1905 fullpath
+= wxFILE_SEP_PATH_DOS
;
1909 wxFAIL_MSG( wxT("Unknown path format") );
1915 fullpath
+= wxFILE_SEP_PATH_UNIX
;
1920 // no leading character here but use this place to unset
1921 // wxPATH_GET_SEPARATOR flag: under VMS it doesn't make sense
1922 // as, if I understand correctly, there should never be a dot
1923 // before the closing bracket
1924 flags
&= ~wxPATH_GET_SEPARATOR
;
1927 if ( m_dirs
.empty() )
1929 // there is nothing more
1933 // then concatenate all the path components using the path separator
1934 if ( format
== wxPATH_VMS
)
1936 fullpath
+= wxT('[');
1939 const size_t dirCount
= m_dirs
.GetCount();
1940 for ( size_t i
= 0; i
< dirCount
; i
++ )
1945 if ( m_dirs
[i
] == wxT(".") )
1947 // skip appending ':', this shouldn't be done in this
1948 // case as "::" is interpreted as ".." under Unix
1952 // convert back from ".." to nothing
1953 if ( !m_dirs
[i
].IsSameAs(wxT("..")) )
1954 fullpath
+= m_dirs
[i
];
1958 wxFAIL_MSG( wxT("Unexpected path format") );
1959 // still fall through
1963 fullpath
+= m_dirs
[i
];
1967 // TODO: What to do with ".." under VMS
1969 // convert back from ".." to nothing
1970 if ( !m_dirs
[i
].IsSameAs(wxT("..")) )
1971 fullpath
+= m_dirs
[i
];
1975 if ( (flags
& wxPATH_GET_SEPARATOR
) || (i
!= dirCount
- 1) )
1976 fullpath
+= GetPathSeparator(format
);
1979 if ( format
== wxPATH_VMS
)
1981 fullpath
+= wxT(']');
1987 wxString
wxFileName::GetFullPath( wxPathFormat format
) const
1989 // we already have a function to get the path
1990 wxString fullpath
= GetPath(wxPATH_GET_VOLUME
| wxPATH_GET_SEPARATOR
,
1993 // now just add the file name and extension to it
1994 fullpath
+= GetFullName();
1999 // Return the short form of the path (returns identity on non-Windows platforms)
2000 wxString
wxFileName::GetShortPath() const
2002 wxString
path(GetFullPath());
2004 #if defined(__WXMSW__) && defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
2005 DWORD sz
= ::GetShortPathName(path
.fn_str(), NULL
, 0);
2009 if ( ::GetShortPathName
2012 wxStringBuffer(pathOut
, sz
),
2024 // Return the long form of the path (returns identity on non-Windows platforms)
2025 wxString
wxFileName::GetLongPath() const
2028 path
= GetFullPath();
2030 #if defined(__WIN32__) && !defined(__WXWINCE__) && !defined(__WXMICROWIN__)
2032 #if wxUSE_DYNLIB_CLASS
2033 typedef DWORD (WINAPI
*GET_LONG_PATH_NAME
)(const wxChar
*, wxChar
*, DWORD
);
2035 // this is MT-safe as in the worst case we're going to resolve the function
2036 // twice -- but as the result is the same in both threads, it's ok
2037 static GET_LONG_PATH_NAME s_pfnGetLongPathName
= NULL
;
2038 if ( !s_pfnGetLongPathName
)
2040 static bool s_triedToLoad
= false;
2042 if ( !s_triedToLoad
)
2044 s_triedToLoad
= true;
2046 wxDynamicLibrary
dllKernel(wxT("kernel32"));
2048 const wxChar
* GetLongPathName
= wxT("GetLongPathName")
2053 #endif // Unicode/ANSI
2055 if ( dllKernel
.HasSymbol(GetLongPathName
) )
2057 s_pfnGetLongPathName
= (GET_LONG_PATH_NAME
)
2058 dllKernel
.GetSymbol(GetLongPathName
);
2061 // note that kernel32.dll can be unloaded, it stays in memory
2062 // anyhow as all Win32 programs link to it and so it's safe to call
2063 // GetLongPathName() even after unloading it
2067 if ( s_pfnGetLongPathName
)
2069 DWORD dwSize
= (*s_pfnGetLongPathName
)(path
.fn_str(), NULL
, 0);
2072 if ( (*s_pfnGetLongPathName
)
2075 wxStringBuffer(pathOut
, dwSize
),
2083 #endif // wxUSE_DYNLIB_CLASS
2085 // The OS didn't support GetLongPathName, or some other error.
2086 // We need to call FindFirstFile on each component in turn.
2088 WIN32_FIND_DATA findFileData
;
2092 pathOut
= GetVolume() +
2093 GetVolumeSeparator(wxPATH_DOS
) +
2094 GetPathSeparator(wxPATH_DOS
);
2096 pathOut
= wxEmptyString
;
2098 wxArrayString dirs
= GetDirs();
2099 dirs
.Add(GetFullName());
2103 size_t count
= dirs
.GetCount();
2104 for ( size_t i
= 0; i
< count
; i
++ )
2106 const wxString
& dir
= dirs
[i
];
2108 // We're using pathOut to collect the long-name path, but using a
2109 // temporary for appending the last path component which may be
2111 tmpPath
= pathOut
+ dir
;
2113 // We must not process "." or ".." here as they would be (unexpectedly)
2114 // replaced by the corresponding directory names so just leave them
2117 // And we can't pass a drive and root dir to FindFirstFile (VZ: why?)
2118 if ( tmpPath
.empty() || dir
== '.' || dir
== ".." ||
2119 tmpPath
.Last() == GetVolumeSeparator(wxPATH_DOS
) )
2121 tmpPath
+= wxFILE_SEP_PATH
;
2126 hFind
= ::FindFirstFile(tmpPath
.fn_str(), &findFileData
);
2127 if (hFind
== INVALID_HANDLE_VALUE
)
2129 // Error: most likely reason is that path doesn't exist, so
2130 // append any unprocessed parts and return
2131 for ( i
+= 1; i
< count
; i
++ )
2132 tmpPath
+= wxFILE_SEP_PATH
+ dirs
[i
];
2137 pathOut
+= findFileData
.cFileName
;
2138 if ( (i
< (count
-1)) )
2139 pathOut
+= wxFILE_SEP_PATH
;
2145 #endif // Win32/!Win32
2150 wxPathFormat
wxFileName::GetFormat( wxPathFormat format
)
2152 if (format
== wxPATH_NATIVE
)
2154 #if defined(__WXMSW__) || defined(__OS2__) || defined(__DOS__)
2155 format
= wxPATH_DOS
;
2156 #elif defined(__VMS)
2157 format
= wxPATH_VMS
;
2159 format
= wxPATH_UNIX
;
2165 #ifdef wxHAS_FILESYSTEM_VOLUMES
2168 wxString
wxFileName::GetVolumeString(char drive
, int flags
)
2170 wxASSERT_MSG( !(flags
& ~wxPATH_GET_SEPARATOR
), "invalid flag specified" );
2172 wxString
vol(drive
);
2173 vol
+= wxFILE_SEP_DSK
;
2174 if ( flags
& wxPATH_GET_SEPARATOR
)
2175 vol
+= wxFILE_SEP_PATH
;
2180 #endif // wxHAS_FILESYSTEM_VOLUMES
2182 // ----------------------------------------------------------------------------
2183 // path splitting function
2184 // ----------------------------------------------------------------------------
2188 wxFileName::SplitVolume(const wxString
& fullpathWithVolume
,
2189 wxString
*pstrVolume
,
2191 wxPathFormat format
)
2193 format
= GetFormat(format
);
2195 wxString fullpath
= fullpathWithVolume
;
2197 // special Windows UNC paths hack: transform \\share\path into share:path
2198 if ( IsUNCPath(fullpath
, format
) )
2200 fullpath
.erase(0, 2);
2202 size_t posFirstSlash
=
2203 fullpath
.find_first_of(GetPathTerminators(format
));
2204 if ( posFirstSlash
!= wxString::npos
)
2206 fullpath
[posFirstSlash
] = wxFILE_SEP_DSK
;
2208 // UNC paths are always absolute, right? (FIXME)
2209 fullpath
.insert(posFirstSlash
+ 1, 1, wxFILE_SEP_PATH_DOS
);
2213 // We separate the volume here
2214 if ( format
== wxPATH_DOS
|| format
== wxPATH_VMS
)
2216 wxString sepVol
= GetVolumeSeparator(format
);
2218 // we have to exclude the case of a colon in the very beginning of the
2219 // string as it can't be a volume separator (nor can this be a valid
2220 // DOS file name at all but we'll leave dealing with this to our caller)
2221 size_t posFirstColon
= fullpath
.find_first_of(sepVol
);
2222 if ( posFirstColon
&& posFirstColon
!= wxString::npos
)
2226 *pstrVolume
= fullpath
.Left(posFirstColon
);
2229 // remove the volume name and the separator from the full path
2230 fullpath
.erase(0, posFirstColon
+ sepVol
.length());
2235 *pstrPath
= fullpath
;
2239 void wxFileName::SplitPath(const wxString
& fullpathWithVolume
,
2240 wxString
*pstrVolume
,
2245 wxPathFormat format
)
2247 format
= GetFormat(format
);
2250 SplitVolume(fullpathWithVolume
, pstrVolume
, &fullpath
, format
);
2252 // find the positions of the last dot and last path separator in the path
2253 size_t posLastDot
= fullpath
.find_last_of(wxFILE_SEP_EXT
);
2254 size_t posLastSlash
= fullpath
.find_last_of(GetPathTerminators(format
));
2256 // check whether this dot occurs at the very beginning of a path component
2257 if ( (posLastDot
!= wxString::npos
) &&
2259 IsPathSeparator(fullpath
[posLastDot
- 1]) ||
2260 (format
== wxPATH_VMS
&& fullpath
[posLastDot
- 1] == wxT(']'))) )
2262 // dot may be (and commonly -- at least under Unix -- is) the first
2263 // character of the filename, don't treat the entire filename as
2264 // extension in this case
2265 posLastDot
= wxString::npos
;
2268 // if we do have a dot and a slash, check that the dot is in the name part
2269 if ( (posLastDot
!= wxString::npos
) &&
2270 (posLastSlash
!= wxString::npos
) &&
2271 (posLastDot
< posLastSlash
) )
2273 // the dot is part of the path, not the start of the extension
2274 posLastDot
= wxString::npos
;
2277 // now fill in the variables provided by user
2280 if ( posLastSlash
== wxString::npos
)
2287 // take everything up to the path separator but take care to make
2288 // the path equal to something like '/', not empty, for the files
2289 // immediately under root directory
2290 size_t len
= posLastSlash
;
2292 // this rule does not apply to mac since we do not start with colons (sep)
2293 // except for relative paths
2294 if ( !len
&& format
!= wxPATH_MAC
)
2297 *pstrPath
= fullpath
.Left(len
);
2299 // special VMS hack: remove the initial bracket
2300 if ( format
== wxPATH_VMS
)
2302 if ( (*pstrPath
)[0u] == wxT('[') )
2303 pstrPath
->erase(0, 1);
2310 // take all characters starting from the one after the last slash and
2311 // up to, but excluding, the last dot
2312 size_t nStart
= posLastSlash
== wxString::npos
? 0 : posLastSlash
+ 1;
2314 if ( posLastDot
== wxString::npos
)
2316 // take all until the end
2317 count
= wxString::npos
;
2319 else if ( posLastSlash
== wxString::npos
)
2323 else // have both dot and slash
2325 count
= posLastDot
- posLastSlash
- 1;
2328 *pstrName
= fullpath
.Mid(nStart
, count
);
2331 // finally deal with the extension here: we have an added complication that
2332 // extension may be empty (but present) as in "foo." where trailing dot
2333 // indicates the empty extension at the end -- and hence we must remember
2334 // that we have it independently of pstrExt
2335 if ( posLastDot
== wxString::npos
)
2345 // take everything after the dot
2347 *pstrExt
= fullpath
.Mid(posLastDot
+ 1);
2354 void wxFileName::SplitPath(const wxString
& fullpath
,
2358 wxPathFormat format
)
2361 SplitPath(fullpath
, &volume
, path
, name
, ext
, format
);
2365 path
->Prepend(wxGetVolumeString(volume
, format
));
2370 wxString
wxFileName::StripExtension(const wxString
& fullpath
)
2372 wxFileName
fn(fullpath
);
2374 return fn
.GetFullPath();
2377 // ----------------------------------------------------------------------------
2379 // ----------------------------------------------------------------------------
2383 bool wxFileName::SetTimes(const wxDateTime
*dtAccess
,
2384 const wxDateTime
*dtMod
,
2385 const wxDateTime
*dtCreate
) const
2387 #if defined(__WIN32__)
2388 FILETIME ftAccess
, ftCreate
, ftWrite
;
2391 ConvertWxToFileTime(&ftCreate
, *dtCreate
);
2393 ConvertWxToFileTime(&ftAccess
, *dtAccess
);
2395 ConvertWxToFileTime(&ftWrite
, *dtMod
);
2401 if ( wxGetOsVersion() == wxOS_WINDOWS_9X
)
2403 wxLogError(_("Setting directory access times is not supported "
2404 "under this OS version"));
2409 flags
= FILE_FLAG_BACKUP_SEMANTICS
;
2413 path
= GetFullPath();
2417 wxFileHandle
fh(path
, wxFileHandle::WriteAttr
, flags
);
2420 if ( ::SetFileTime(fh
,
2421 dtCreate
? &ftCreate
: NULL
,
2422 dtAccess
? &ftAccess
: NULL
,
2423 dtMod
? &ftWrite
: NULL
) )
2428 #elif defined(__UNIX_LIKE__) || (defined(__DOS__) && defined(__WATCOMC__))
2429 wxUnusedVar(dtCreate
);
2431 if ( !dtAccess
&& !dtMod
)
2433 // can't modify the creation time anyhow, don't try
2437 // if dtAccess or dtMod is not specified, use the other one (which must be
2438 // non NULL because of the test above) for both times
2440 utm
.actime
= dtAccess
? dtAccess
->GetTicks() : dtMod
->GetTicks();
2441 utm
.modtime
= dtMod
? dtMod
->GetTicks() : dtAccess
->GetTicks();
2442 if ( utime(GetFullPath().fn_str(), &utm
) == 0 )
2446 #else // other platform
2447 wxUnusedVar(dtAccess
);
2449 wxUnusedVar(dtCreate
);
2452 wxLogSysError(_("Failed to modify file times for '%s'"),
2453 GetFullPath().c_str());
2458 bool wxFileName::Touch() const
2460 #if defined(__UNIX_LIKE__)
2461 // under Unix touching file is simple: just pass NULL to utime()
2462 if ( utime(GetFullPath().fn_str(), NULL
) == 0 )
2467 wxLogSysError(_("Failed to touch the file '%s'"), GetFullPath().c_str());
2470 #else // other platform
2471 wxDateTime dtNow
= wxDateTime::Now();
2473 return SetTimes(&dtNow
, &dtNow
, NULL
/* don't change create time */);
2477 bool wxFileName::GetTimes(wxDateTime
*dtAccess
,
2479 wxDateTime
*dtCreate
) const
2481 #if defined(__WIN32__)
2482 // we must use different methods for the files and directories under
2483 // Windows as CreateFile(GENERIC_READ) doesn't work for the directories and
2484 // CreateFile(FILE_FLAG_BACKUP_SEMANTICS) works -- but only under NT and
2487 FILETIME ftAccess
, ftCreate
, ftWrite
;
2490 // implemented in msw/dir.cpp
2491 extern bool wxGetDirectoryTimes(const wxString
& dirname
,
2492 FILETIME
*, FILETIME
*, FILETIME
*);
2494 // we should pass the path without the trailing separator to
2495 // wxGetDirectoryTimes()
2496 ok
= wxGetDirectoryTimes(GetPath(wxPATH_GET_VOLUME
),
2497 &ftAccess
, &ftCreate
, &ftWrite
);
2501 wxFileHandle
fh(GetFullPath(), wxFileHandle::ReadAttr
);
2504 ok
= ::GetFileTime(fh
,
2505 dtCreate
? &ftCreate
: NULL
,
2506 dtAccess
? &ftAccess
: NULL
,
2507 dtMod
? &ftWrite
: NULL
) != 0;
2518 ConvertFileTimeToWx(dtCreate
, ftCreate
);
2520 ConvertFileTimeToWx(dtAccess
, ftAccess
);
2522 ConvertFileTimeToWx(dtMod
, ftWrite
);
2526 #elif defined(__UNIX_LIKE__) || defined(__WXMAC__) || defined(__OS2__) || (defined(__DOS__) && defined(__WATCOMC__))
2527 // no need to test for IsDir() here
2529 if ( wxStat( GetFullPath().c_str(), &stBuf
) == 0 )
2532 dtAccess
->Set(stBuf
.st_atime
);
2534 dtMod
->Set(stBuf
.st_mtime
);
2536 dtCreate
->Set(stBuf
.st_ctime
);
2540 #else // other platform
2541 wxUnusedVar(dtAccess
);
2543 wxUnusedVar(dtCreate
);
2546 wxLogSysError(_("Failed to retrieve file times for '%s'"),
2547 GetFullPath().c_str());
2552 #endif // wxUSE_DATETIME
2555 // ----------------------------------------------------------------------------
2556 // file size functions
2557 // ----------------------------------------------------------------------------
2562 wxULongLong
wxFileName::GetSize(const wxString
&filename
)
2564 if (!wxFileExists(filename
))
2565 return wxInvalidSize
;
2567 #if defined(__WXPALMOS__)
2569 return wxInvalidSize
;
2570 #elif defined(__WIN32__)
2571 wxFileHandle
f(filename
, wxFileHandle::ReadAttr
);
2573 return wxInvalidSize
;
2575 DWORD lpFileSizeHigh
;
2576 DWORD ret
= GetFileSize(f
, &lpFileSizeHigh
);
2577 if ( ret
== INVALID_FILE_SIZE
&& ::GetLastError() != NO_ERROR
)
2578 return wxInvalidSize
;
2580 return wxULongLong(lpFileSizeHigh
, ret
);
2581 #else // ! __WIN32__
2583 #ifndef wxNEED_WX_UNISTD_H
2584 if (wxStat( filename
.fn_str() , &st
) != 0)
2586 if (wxStat( filename
, &st
) != 0)
2588 return wxInvalidSize
;
2589 return wxULongLong(st
.st_size
);
2594 wxString
wxFileName::GetHumanReadableSize(const wxULongLong
&bs
,
2595 const wxString
&nullsize
,
2598 static const double KILOBYTESIZE
= 1024.0;
2599 static const double MEGABYTESIZE
= 1024.0*KILOBYTESIZE
;
2600 static const double GIGABYTESIZE
= 1024.0*MEGABYTESIZE
;
2601 static const double TERABYTESIZE
= 1024.0*GIGABYTESIZE
;
2603 if (bs
== 0 || bs
== wxInvalidSize
)
2606 double bytesize
= bs
.ToDouble();
2607 if (bytesize
< KILOBYTESIZE
)
2608 return wxString::Format(_("%s B"), bs
.ToString().c_str());
2609 if (bytesize
< MEGABYTESIZE
)
2610 return wxString::Format(_("%.*f kB"), precision
, bytesize
/KILOBYTESIZE
);
2611 if (bytesize
< GIGABYTESIZE
)
2612 return wxString::Format(_("%.*f MB"), precision
, bytesize
/MEGABYTESIZE
);
2613 if (bytesize
< TERABYTESIZE
)
2614 return wxString::Format(_("%.*f GB"), precision
, bytesize
/GIGABYTESIZE
);
2616 return wxString::Format(_("%.*f TB"), precision
, bytesize
/TERABYTESIZE
);
2619 wxULongLong
wxFileName::GetSize() const
2621 return GetSize(GetFullPath());
2624 wxString
wxFileName::GetHumanReadableSize(const wxString
&failmsg
, int precision
) const
2626 return GetHumanReadableSize(GetSize(), failmsg
, precision
);
2629 #endif // wxUSE_LONGLONG
2631 // ----------------------------------------------------------------------------
2632 // Mac-specific functions
2633 // ----------------------------------------------------------------------------
2635 #if defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON
2640 class MacDefaultExtensionRecord
2643 MacDefaultExtensionRecord()
2649 // default copy ctor, assignment operator and dtor are ok
2651 MacDefaultExtensionRecord(const wxString
& ext
, OSType type
, OSType creator
)
2655 m_creator
= creator
;
2663 WX_DECLARE_OBJARRAY(MacDefaultExtensionRecord
, MacDefaultExtensionArray
);
2665 bool gMacDefaultExtensionsInited
= false;
2667 #include "wx/arrimpl.cpp"
2669 WX_DEFINE_EXPORTED_OBJARRAY(MacDefaultExtensionArray
);
2671 MacDefaultExtensionArray gMacDefaultExtensions
;
2673 // load the default extensions
2674 const MacDefaultExtensionRecord gDefaults
[] =
2676 MacDefaultExtensionRecord( "txt", 'TEXT', 'ttxt' ),
2677 MacDefaultExtensionRecord( "tif", 'TIFF', '****' ),
2678 MacDefaultExtensionRecord( "jpg", 'JPEG', '****' ),
2681 void MacEnsureDefaultExtensionsLoaded()
2683 if ( !gMacDefaultExtensionsInited
)
2685 // we could load the pc exchange prefs here too
2686 for ( size_t i
= 0 ; i
< WXSIZEOF( gDefaults
) ; ++i
)
2688 gMacDefaultExtensions
.Add( gDefaults
[i
] ) ;
2690 gMacDefaultExtensionsInited
= true;
2694 } // anonymous namespace
2696 bool wxFileName::MacSetTypeAndCreator( wxUint32 type
, wxUint32 creator
)
2699 FSCatalogInfo catInfo
;
2702 if ( wxMacPathToFSRef( GetFullPath() , &fsRef
) == noErr
)
2704 if ( FSGetCatalogInfo (&fsRef
, kFSCatInfoFinderInfo
, &catInfo
, NULL
, NULL
, NULL
) == noErr
)
2706 finfo
= (FileInfo
*)&catInfo
.finderInfo
;
2707 finfo
->fileType
= type
;
2708 finfo
->fileCreator
= creator
;
2709 FSSetCatalogInfo( &fsRef
, kFSCatInfoFinderInfo
, &catInfo
) ;
2716 bool wxFileName::MacGetTypeAndCreator( wxUint32
*type
, wxUint32
*creator
) const
2719 FSCatalogInfo catInfo
;
2722 if ( wxMacPathToFSRef( GetFullPath() , &fsRef
) == noErr
)
2724 if ( FSGetCatalogInfo (&fsRef
, kFSCatInfoFinderInfo
, &catInfo
, NULL
, NULL
, NULL
) == noErr
)
2726 finfo
= (FileInfo
*)&catInfo
.finderInfo
;
2727 *type
= finfo
->fileType
;
2728 *creator
= finfo
->fileCreator
;
2735 bool wxFileName::MacSetDefaultTypeAndCreator()
2737 wxUint32 type
, creator
;
2738 if ( wxFileName::MacFindDefaultTypeAndCreator(GetExt() , &type
,
2741 return MacSetTypeAndCreator( type
, creator
) ;
2746 bool wxFileName::MacFindDefaultTypeAndCreator( const wxString
& ext
, wxUint32
*type
, wxUint32
*creator
)
2748 MacEnsureDefaultExtensionsLoaded() ;
2749 wxString extl
= ext
.Lower() ;
2750 for( int i
= gMacDefaultExtensions
.Count() - 1 ; i
>= 0 ; --i
)
2752 if ( gMacDefaultExtensions
.Item(i
).m_ext
== extl
)
2754 *type
= gMacDefaultExtensions
.Item(i
).m_type
;
2755 *creator
= gMacDefaultExtensions
.Item(i
).m_creator
;
2762 void wxFileName::MacRegisterDefaultTypeAndCreator( const wxString
& ext
, wxUint32 type
, wxUint32 creator
)
2764 MacEnsureDefaultExtensionsLoaded();
2765 MacDefaultExtensionRecord
rec(ext
.Lower(), type
, creator
);
2766 gMacDefaultExtensions
.Add( rec
);
2769 #endif // defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON