1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: File- and directory-related functions
4 // Author: Julian Smart
8 // Copyright: (c) 1998 Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "filefn.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/file.h" // This does include filefn.h
35 #include "wx/filename.h"
38 // there are just too many of those...
40 #pragma warning(disable:4706) // assignment within conditional expression
47 #if !defined(__WATCOMC__)
48 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
53 #if defined(__WXMAC__)
54 #include "wx/mac/private.h" // includes mac headers
60 #include "wx/msw/private.h"
61 #include "wx/msw/mslu.h"
63 // sys/cygwin.h is needed for cygwin_conv_to_full_win32_path()
65 // note that it must be included after <windows.h>
68 #include <sys/cygwin.h>
70 #endif // __GNUWIN32__
72 // io.h is needed for _get_osfhandle()
73 // Already included by filefn.h for many Windows compilers
74 #if defined __MWERKS__ || defined __CYGWIN__
83 // TODO: Borland probably has _wgetcwd as well?
88 // ----------------------------------------------------------------------------
90 // ----------------------------------------------------------------------------
93 #define _MAXPATHLEN 1024
97 # include "MoreFilesX.h"
100 // ----------------------------------------------------------------------------
102 // ----------------------------------------------------------------------------
104 // MT-FIXME: get rid of this horror and all code using it
105 static wxChar wxFileFunctionsBuffer
[4*_MAXPATHLEN
];
107 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
109 // VisualAge C++ V4.0 cannot have any external linkage const decs
110 // in headers included by more than one primary source
112 const int wxInvalidOffset
= -1;
115 // ----------------------------------------------------------------------------
117 // ----------------------------------------------------------------------------
119 // we need to translate Mac filenames before passing them to OS functions
120 #define OS_FILENAME(s) (s.fn_str())
122 // ============================================================================
124 // ============================================================================
126 #ifdef wxNEED_WX_UNISTD_H
128 WXDLLEXPORT
int wxStat( const wxChar
*file_name
, wxStructStat
*buf
)
130 return stat( wxConvFile
.cWX2MB( file_name
), buf
);
133 WXDLLEXPORT
int wxAccess( const wxChar
*pathname
, int mode
)
135 return access( wxConvFile
.cWX2MB( pathname
), mode
);
138 WXDLLEXPORT
int wxOpen( const wxChar
*pathname
, int flags
, mode_t mode
)
140 return open( wxConvFile
.cWX2MB( pathname
), flags
, mode
);
144 // wxNEED_WX_UNISTD_H
146 // ----------------------------------------------------------------------------
148 // ----------------------------------------------------------------------------
150 // IMPLEMENT_DYNAMIC_CLASS(wxPathList, wxStringList)
152 static inline wxChar
* MYcopystring(const wxString
& s
)
154 wxChar
* copy
= new wxChar
[s
.length() + 1];
155 return wxStrcpy(copy
, s
.c_str());
158 static inline wxChar
* MYcopystring(const wxChar
* s
)
160 wxChar
* copy
= new wxChar
[wxStrlen(s
) + 1];
161 return wxStrcpy(copy
, s
);
164 void wxPathList::Add (const wxString
& path
)
166 wxStringList::Add (WXSTRINGCAST path
);
169 // Add paths e.g. from the PATH environment variable
170 void wxPathList::AddEnvList (const wxString
& envVariable
)
172 // No environment variables on WinCE
174 static const wxChar PATH_TOKS
[] =
175 #if defined(__WINDOWS__) || defined(__OS2__)
177 The space has been removed from the tokenizers, otherwise a
178 path such as "C:\Program Files" would be split into 2 paths:
179 "C:\Program" and "Files"
181 // wxT(" ;"); // Don't separate with colon in DOS (used for drive)
182 wxT(";"); // Don't separate with colon in DOS (used for drive)
188 if (wxGetEnv (WXSTRINGCAST envVariable
, &val
))
190 wxChar
*s
= MYcopystring (val
);
191 wxChar
*save_ptr
, *token
= wxStrtok (s
, PATH_TOKS
, &save_ptr
);
198 if ( (token
= wxStrtok ((wxChar
*) NULL
, PATH_TOKS
, &save_ptr
))
206 // suppress warning about unused variable save_ptr when wxStrtok() is a
207 // macro which throws away its third argument
213 wxUnusedVar(envVariable
);
214 #endif // !__WXWINCE__/__WXWINCE__
217 // Given a full filename (with path), ensure that that file can
218 // be accessed again USING FILENAME ONLY by adding the path
219 // to the list if not already there.
220 void wxPathList::EnsureFileAccessible (const wxString
& path
)
222 wxString
path_only(wxPathOnly(path
));
223 if ( !path_only
.empty() )
225 if ( !Member(path_only
) )
230 bool wxPathList::Member (const wxString
& path
)
232 for (wxStringList::compatibility_iterator node
= GetFirst(); node
; node
= node
->GetNext())
234 wxString
path2( node
->GetData() );
236 #if defined(__WINDOWS__) || defined(__OS2__) || defined(__VMS__) || defined(__WXMAC__)
238 path
.CompareTo (path2
, wxString::ignoreCase
) == 0
240 // Case sensitive File System
241 path
.CompareTo (path2
) == 0
249 wxString
wxPathList::FindValidPath (const wxString
& file
)
251 if (wxFileExists (wxExpandPath(wxFileFunctionsBuffer
, file
)))
252 return wxString(wxFileFunctionsBuffer
);
254 wxChar buf
[_MAXPATHLEN
];
255 wxStrcpy(buf
, wxFileFunctionsBuffer
);
257 wxChar
*filename
= wxIsAbsolutePath (buf
) ? wxFileNameFromPath (buf
) : (wxChar
*)buf
;
259 for (wxStringList::compatibility_iterator node
= GetFirst(); node
; node
= node
->GetNext())
261 const wxChar
*path
= node
->GetData();
262 wxStrcpy (wxFileFunctionsBuffer
, path
);
263 wxChar ch
= wxFileFunctionsBuffer
[wxStrlen(wxFileFunctionsBuffer
)-1];
264 if (ch
!= wxT('\\') && ch
!= wxT('/'))
265 wxStrcat (wxFileFunctionsBuffer
, wxT("/"));
266 wxStrcat (wxFileFunctionsBuffer
, filename
);
268 wxUnix2DosFilename (wxFileFunctionsBuffer
);
270 if (wxFileExists (wxFileFunctionsBuffer
))
272 return wxString(wxFileFunctionsBuffer
); // Found!
276 return wxEmptyString
; // Not found
279 wxString
wxPathList::FindAbsoluteValidPath (const wxString
& file
)
281 wxString f
= FindValidPath(file
);
282 if ( f
.empty() || wxIsAbsolutePath(f
) )
286 wxGetWorkingDirectory(wxStringBuffer(buf
, _MAXPATHLEN
), _MAXPATHLEN
);
288 if ( !wxEndsWithPathSeparator(buf
) )
290 buf
+= wxFILE_SEP_PATH
;
298 wxFileExists (const wxString
& filename
)
300 #if defined(__WXPALMOS__)
302 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
303 // we must use GetFileAttributes() instead of the ANSI C functions because
304 // it can cope with network (UNC) paths unlike them
305 DWORD ret
= ::GetFileAttributes(filename
);
307 return (ret
!= (DWORD
)-1) && !(ret
& FILE_ATTRIBUTE_DIRECTORY
);
310 #ifndef wxNEED_WX_UNISTD_H
311 return wxStat( filename
.fn_str() , &st
) == 0 && (st
.st_mode
& S_IFREG
);
313 return wxStat( filename
, &st
) == 0 && (st
.st_mode
& S_IFREG
);
315 #endif // __WIN32__/!__WIN32__
319 wxIsAbsolutePath (const wxString
& filename
)
321 if (!filename
.empty())
323 #if defined(__WXMAC__) && !defined(__DARWIN__)
324 // Classic or Carbon CodeWarrior like
325 // Carbon with Apple DevTools is Unix like
327 // This seems wrong to me, but there is no fix. since
328 // "MacOS:MyText.txt" is absolute whereas "MyDir:MyText.txt"
329 // is not. Or maybe ":MyDir:MyText.txt" has to be used? RR.
330 if (filename
.Find(':') != wxNOT_FOUND
&& filename
[0] != ':')
333 // Unix like or Windows
334 if (filename
[0] == wxT('/'))
338 if ((filename
[0] == wxT('[') && filename
[1] != wxT('.')))
341 #if defined(__WINDOWS__) || defined(__OS2__)
343 if (filename
[0] == wxT('\\') || (wxIsalpha (filename
[0]) && filename
[1] == wxT(':')))
351 * Strip off any extension (dot something) from end of file,
352 * IF one exists. Inserts zero into buffer.
356 void wxStripExtension(wxChar
*buffer
)
358 int len
= wxStrlen(buffer
);
362 if (buffer
[i
] == wxT('.'))
371 void wxStripExtension(wxString
& buffer
)
373 //RN: Be careful about the handling the case where
374 //buffer.Length() == 0
375 for(size_t i
= buffer
.Length() - 1; i
!= wxString::npos
; --i
)
377 if (buffer
.GetChar(i
) == wxT('.'))
379 buffer
= buffer
.Left(i
);
385 // Destructive removal of /./ and /../ stuff
386 wxChar
*wxRealPath (wxChar
*path
)
389 static const wxChar SEP
= wxT('\\');
390 wxUnix2DosFilename(path
);
392 static const wxChar SEP
= wxT('/');
394 if (path
[0] && path
[1]) {
395 /* MATTHEW: special case "/./x" */
397 if (path
[2] == SEP
&& path
[1] == wxT('.'))
405 if (p
[1] == wxT('.') && p
[2] == wxT('.') && (p
[3] == SEP
|| p
[3] == wxT('\0')))
408 for (q
= p
- 1; q
>= path
&& *q
!= SEP
; q
--)
413 if (q
[0] == SEP
&& (q
[1] != wxT('.') || q
[2] != wxT('.') || q
[3] != SEP
)
414 && (q
- 1 <= path
|| q
[-1] != SEP
))
417 if (path
[0] == wxT('\0'))
422 #if defined(__WXMSW__) || defined(__OS2__)
423 /* Check that path[2] is NULL! */
424 else if (path
[1] == wxT(':') && !path
[2])
433 else if (p
[1] == wxT('.') && (p
[2] == SEP
|| p
[2] == wxT('\0')))
442 wxChar
*wxCopyAbsolutePath(const wxString
& filename
)
444 if (filename
.empty())
445 return (wxChar
*) NULL
;
447 if (! wxIsAbsolutePath(wxExpandPath(wxFileFunctionsBuffer
, filename
))) {
448 wxChar buf
[_MAXPATHLEN
];
450 wxGetWorkingDirectory(buf
, WXSIZEOF(buf
));
451 wxChar ch
= buf
[wxStrlen(buf
) - 1];
453 if (ch
!= wxT('\\') && ch
!= wxT('/'))
454 wxStrcat(buf
, wxT("\\"));
457 wxStrcat(buf
, wxT("/"));
459 wxStrcat(buf
, wxFileFunctionsBuffer
);
460 return MYcopystring( wxRealPath(buf
) );
462 return MYcopystring( wxFileFunctionsBuffer
);
468 ~user/ => user's home dir
469 If the environment variable a = "foo" and b = "bar" then:
486 /* input name in name, pathname output to buf. */
488 wxChar
*wxExpandPath(wxChar
*buf
, const wxChar
*name
)
490 register wxChar
*d
, *s
, *nm
;
491 wxChar lnm
[_MAXPATHLEN
];
494 // Some compilers don't like this line.
495 // const wxChar trimchars[] = wxT("\n \t");
498 trimchars
[0] = wxT('\n');
499 trimchars
[1] = wxT(' ');
500 trimchars
[2] = wxT('\t');
504 const wxChar SEP
= wxT('\\');
506 const wxChar SEP
= wxT('/');
509 if (name
== NULL
|| *name
== wxT('\0'))
511 nm
= MYcopystring(name
); // Make a scratch copy
514 /* Skip leading whitespace and cr */
515 while (wxStrchr((wxChar
*)trimchars
, *nm
) != NULL
)
517 /* And strip off trailing whitespace and cr */
518 s
= nm
+ (q
= wxStrlen(nm
)) - 1;
519 while (q
-- && wxStrchr((wxChar
*)trimchars
, *s
) != NULL
)
527 q
= nm
[0] == wxT('\\') && nm
[1] == wxT('~');
530 /* Expand inline environment variables */
548 while ((*d
++ = *s
) != 0) {
550 if (*s
== wxT('\\')) {
551 if ((*(d
- 1) = *++s
)) {
559 // No env variables on WinCE
562 if (*s
++ == wxT('$') && (*s
== wxT('{') || *s
== wxT(')')))
564 if (*s
++ == wxT('$'))
567 register wxChar
*start
= d
;
568 register int braces
= (*s
== wxT('{') || *s
== wxT('('));
569 register wxChar
*value
;
570 while ((*d
++ = *s
) != 0)
571 if (braces
? (*s
== wxT('}') || *s
== wxT(')')) : !(wxIsalnum(*s
) || *s
== wxT('_')) )
576 value
= wxGetenv(braces
? start
+ 1 : start
);
578 for ((d
= start
- 1); (*d
++ = *value
++) != 0;)
592 /* Expand ~ and ~user */
594 if (nm
[0] == wxT('~') && !q
)
597 if (nm
[1] == SEP
|| nm
[1] == 0)
599 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
600 if ((s
= WXSTRINGCAST
wxGetUserHome(wxEmptyString
)) != NULL
) {
605 { /* ~user/filename */
606 register wxChar
*nnm
;
607 register wxChar
*home
;
608 for (s
= nm
; *s
&& *s
!= SEP
; s
++)
612 int was_sep
; /* MATTHEW: Was there a separator, or NULL? */
613 was_sep
= (*s
== SEP
);
614 nnm
= *s
? s
+ 1 : s
;
616 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
617 if ((home
= WXSTRINGCAST
wxGetUserHome(wxString(nm
+ 1))) == NULL
) {
618 if (was_sep
) /* replace only if it was there: */
629 if (s
&& *s
) { /* MATTHEW: s could be NULL if user '~' didn't exist */
631 while (wxT('\0') != (*d
++ = *s
++))
634 if (d
- 1 > buf
&& *(d
- 2) != SEP
)
638 while ((*d
++ = *s
++) != 0)
642 delete[] nm_tmp
; // clean up alloc
643 /* Now clean up the buffer */
644 return wxRealPath(buf
);
647 /* Contract Paths to be build upon an environment variable
650 example: "/usr/openwin/lib", OPENWINHOME --> ${OPENWINHOME}/lib
652 The call wxExpandPath can convert these back!
655 wxContractPath (const wxString
& filename
, const wxString
& envname
, const wxString
& user
)
657 static wxChar dest
[_MAXPATHLEN
];
659 if (filename
.empty())
660 return (wxChar
*) NULL
;
662 wxStrcpy (dest
, WXSTRINGCAST filename
);
664 wxUnix2DosFilename(dest
);
667 // Handle environment
671 if (!envname
.empty() && (val
= wxGetenv (WXSTRINGCAST envname
)) != NULL
&&
672 (tcp
= wxStrstr (dest
, val
)) != NULL
)
674 wxStrcpy (wxFileFunctionsBuffer
, tcp
+ wxStrlen (val
));
677 wxStrcpy (tcp
, WXSTRINGCAST envname
);
678 wxStrcat (tcp
, wxT("}"));
679 wxStrcat (tcp
, wxFileFunctionsBuffer
);
682 wxUnusedVar(envname
);
685 // Handle User's home (ignore root homes!)
686 val
= wxGetUserHome (user
);
690 const size_t len
= wxStrlen(val
);
694 if (wxStrncmp(dest
, val
, len
) == 0)
696 wxStrcpy(wxFileFunctionsBuffer
, wxT("~"));
698 wxStrcat(wxFileFunctionsBuffer
, (const wxChar
*) user
);
699 wxStrcat(wxFileFunctionsBuffer
, dest
+ len
);
700 wxStrcpy (dest
, wxFileFunctionsBuffer
);
706 // Return just the filename, not the path (basename)
707 wxChar
*wxFileNameFromPath (wxChar
*path
)
710 wxString n
= wxFileNameFromPath(p
);
712 return path
+ p
.length() - n
.length();
715 wxString
wxFileNameFromPath (const wxString
& path
)
718 wxFileName::SplitPath(path
, NULL
, &name
, &ext
);
720 wxString fullname
= name
;
723 fullname
<< wxFILE_SEP_EXT
<< ext
;
729 // Return just the directory, or NULL if no directory
731 wxPathOnly (wxChar
*path
)
735 static wxChar buf
[_MAXPATHLEN
];
738 wxStrcpy (buf
, path
);
740 int l
= wxStrlen(path
);
743 // Search backward for a backward or forward slash
746 #if defined(__WXMAC__) && !defined(__DARWIN__)
747 // Classic or Carbon CodeWarrior like
748 // Carbon with Apple DevTools is Unix like
749 if (path
[i
] == wxT(':') )
755 // Unix like or Windows
756 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
763 if (path
[i
] == wxT(']'))
772 #if defined(__WXMSW__) || defined(__OS2__)
773 // Try Drive specifier
774 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
776 // A:junk --> A:. (since A:.\junk Not A:\junk)
783 return (wxChar
*) NULL
;
786 // Return just the directory, or NULL if no directory
787 wxString
wxPathOnly (const wxString
& path
)
791 wxChar buf
[_MAXPATHLEN
];
794 wxStrcpy (buf
, WXSTRINGCAST path
);
796 int l
= path
.Length();
799 // Search backward for a backward or forward slash
802 #if defined(__WXMAC__) && !defined(__DARWIN__)
803 // Classic or Carbon CodeWarrior like
804 // Carbon with Apple DevTools is Unix like
805 if (path
[i
] == wxT(':') )
808 return wxString(buf
);
811 // Unix like or Windows
812 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
814 // Don't return an empty string
818 return wxString(buf
);
822 if (path
[i
] == wxT(']'))
825 return wxString(buf
);
831 #if defined(__WXMSW__) || defined(__OS2__)
832 // Try Drive specifier
833 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
835 // A:junk --> A:. (since A:.\junk Not A:\junk)
838 return wxString(buf
);
842 return wxEmptyString
;
845 // Utility for converting delimiters in DOS filenames to UNIX style
846 // and back again - or we get nasty problems with delimiters.
847 // Also, convert to lower case, since case is significant in UNIX.
849 #if defined(__WXMAC__)
851 #if TARGET_API_MAC_OSX
852 #define kDefaultPathStyle kCFURLPOSIXPathStyle
854 #define kDefaultPathStyle kCFURLHFSPathStyle
857 wxString
wxMacFSRefToPath( const FSRef
*fsRef
, CFStringRef additionalPathComponent
)
860 fullURLRef
= CFURLCreateFromFSRef(NULL
, fsRef
);
861 if ( additionalPathComponent
)
863 CFURLRef parentURLRef
= fullURLRef
;
864 fullURLRef
= CFURLCreateCopyAppendingPathComponent(NULL
, parentURLRef
,
865 additionalPathComponent
,false);
866 CFRelease( parentURLRef
) ;
868 CFStringRef cfString
= CFURLCopyFileSystemPath(fullURLRef
, kDefaultPathStyle
);
869 CFRelease( fullURLRef
) ;
870 return wxMacCFStringHolder(cfString
).AsString(wxLocale::GetSystemEncoding());
873 OSStatus
wxMacPathToFSRef( const wxString
&path
, FSRef
*fsRef
)
875 OSStatus err
= noErr
;
876 CFURLRef url
= CFURLCreateWithFileSystemPath(kCFAllocatorDefault
, wxMacCFStringHolder(path
,wxLocale::GetSystemEncoding() ) , kDefaultPathStyle
, false);
879 if ( CFURLGetFSRef(url
, fsRef
) == false )
890 wxString
wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname
)
892 CFStringRef cfname
= CFStringCreateWithCharacters( kCFAllocatorDefault
,
895 return wxMacCFStringHolder(cfname
).AsString() ;
898 wxString
wxMacFSSpec2MacFilename( const FSSpec
*spec
)
901 if ( FSpMakeFSRef( spec
, &fsRef
) == noErr
)
903 return wxMacFSRefToPath( &fsRef
) ;
905 return wxEmptyString
;
908 void wxMacFilename2FSSpec( const wxString
& path
, FSSpec
*spec
)
910 OSStatus err
= noErr
;
912 wxMacPathToFSRef( path
, &fsRef
) ;
913 err
= FSRefMakeFSSpec( &fsRef
, spec
) ;
919 wxDos2UnixFilename (wxChar
*s
)
928 *s
= (wxChar
)wxTolower (*s
); // Case INDEPENDENT
935 #if defined(__WXMSW__) || defined(__OS2__)
936 wxUnix2DosFilename (wxChar
*s
)
938 wxUnix2DosFilename (wxChar
*WXUNUSED(s
) )
941 // Yes, I really mean this to happen under DOS only! JACS
942 #if defined(__WXMSW__) || defined(__OS2__)
953 // Concatenate two files to form third
955 wxConcatFiles (const wxString
& file1
, const wxString
& file2
, const wxString
& file3
)
959 wxFile
in1(file1
), in2(file2
);
960 wxTempFile
out(file3
);
962 if ( !in1
.IsOpened() || !in2
.IsOpened() || !out
.IsOpened() )
966 unsigned char buf
[1024];
968 for( int i
=0; i
<2; i
++)
970 wxFile
*in
= i
==0 ? &in1
: &in2
;
972 if ( (ofs
= in
->Read(buf
,WXSIZEOF(buf
))) == wxInvalidOffset
) return false;
974 if ( !out
.Write(buf
,ofs
) )
976 } while ( ofs
== (ssize_t
)WXSIZEOF(buf
) );
993 wxCopyFile (const wxString
& file1
, const wxString
& file2
, bool overwrite
)
995 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
996 // CopyFile() copies file attributes and modification time too, so use it
997 // instead of our code if available
999 // NB: 3rd parameter is bFailIfExists i.e. the inverse of overwrite
1000 if ( !::CopyFile(file1
, file2
, !overwrite
) )
1002 wxLogSysError(_("Failed to copy the file '%s' to '%s'"),
1003 file1
.c_str(), file2
.c_str());
1007 #elif defined(__OS2__)
1008 if ( ::DosCopy((PSZ
)file1
.c_str(), (PSZ
)file2
.c_str(), overwrite
? DCPY_EXISTING
: 0) != 0 )
1010 #elif defined(__PALMOS__)
1011 // TODO with http://www.palmos.com/dev/support/docs/protein_books/Memory_Databases_Files/
1013 #elif wxUSE_FILE // !Win32
1016 // get permissions of file1
1017 if ( wxStat( file1
.c_str(), &fbuf
) != 0 )
1019 // the file probably doesn't exist or we haven't the rights to read
1021 wxLogSysError(_("Impossible to get permissions for file '%s'"),
1026 // open file1 for reading
1027 wxFile
fileIn(file1
, wxFile::read
);
1028 if ( !fileIn
.IsOpened() )
1031 // remove file2, if it exists. This is needed for creating
1032 // file2 with the correct permissions in the next step
1033 if ( wxFileExists(file2
) && (!overwrite
|| !wxRemoveFile(file2
)))
1035 wxLogSysError(_("Impossible to overwrite the file '%s'"),
1040 // reset the umask as we want to create the file with exactly the same
1041 // permissions as the original one
1044 // create file2 with the same permissions than file1 and open it for
1048 if ( !fileOut
.Create(file2
, overwrite
, fbuf
.st_mode
& 0777) )
1051 // copy contents of file1 to file2
1056 count
= fileIn
.Read(buf
, WXSIZEOF(buf
));
1057 if ( fileIn
.Error() )
1064 if ( fileOut
.Write(buf
, count
) < count
)
1068 // we can expect fileIn to be closed successfully, but we should ensure
1069 // that fileOut was closed as some write errors (disk full) might not be
1070 // detected before doing this
1071 if ( !fileIn
.Close() || !fileOut
.Close() )
1074 #if !defined(__VISAGECPP__) && !defined(__WXMAC__) || defined(__UNIX__)
1075 // no chmod in VA. Should be some permission API for HPFS386 partitions
1077 if ( chmod(OS_FILENAME(file2
), fbuf
.st_mode
) != 0 )
1079 wxLogSysError(_("Impossible to set permissions for the file '%s'"),
1083 #endif // OS/2 || Mac
1085 #else // !Win32 && ! wxUSE_FILE
1087 // impossible to simulate with wxWidgets API
1090 wxUnusedVar(overwrite
);
1093 #endif // __WXMSW__ && __WIN32__
1099 wxRenameFile (const wxString
& file1
, const wxString
& file2
)
1101 #if !defined(__WXWINCE__) && !defined(__WXPALMOS__)
1102 // Normal system call
1103 if ( wxRename (file1
, file2
) == 0 )
1108 if (wxCopyFile(file1
, file2
)) {
1109 wxRemoveFile(file1
);
1116 bool wxRemoveFile(const wxString
& file
)
1118 #if defined(__VISUALC__) \
1119 || defined(__BORLANDC__) \
1120 || defined(__WATCOMC__) \
1121 || defined(__DMC__) \
1122 || defined(__GNUWIN32__) \
1123 || (defined(__MWERKS__) && defined(__MSL__))
1124 int res
= wxRemove(file
);
1125 #elif defined(__WXMAC__)
1126 int res
= unlink(wxFNCONV(file
));
1127 #elif defined(__WXPALMOS__)
1129 // TODO with VFSFileDelete()
1131 int res
= unlink(OS_FILENAME(file
));
1137 bool wxMkdir(const wxString
& dir
, int perm
)
1139 #if defined(__WXPALMOS__)
1141 #elif defined(__WXMAC__) && !defined(__UNIX__)
1142 return (mkdir( wxFNCONV(dir
) , 0 ) == 0);
1144 const wxChar
*dirname
= dir
.c_str();
1146 // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
1147 // for the GNU compiler
1148 #if (!(defined(__WXMSW__) || defined(__OS2__) || defined(__DOS__))) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WINE__) || defined(__WXMICROWIN__)
1151 if ( mkdir(wxFNCONV(dirname
)) != 0 )
1153 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1155 #elif defined(__OS2__)
1156 if (::DosCreateDir((PSZ
)dirname
, NULL
) != 0) // enhance for EAB's??
1157 #elif defined(__DOS__)
1158 #if defined(__WATCOMC__)
1160 if ( wxMkDir(wxFNSTRINGCAST
wxFNCONV(dirname
)) != 0 )
1161 #elif defined(__DJGPP__)
1162 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1164 #error "Unsupported DOS compiler!"
1166 #else // !MSW, !DOS and !OS/2 VAC++
1169 if ( !CreateDirectory(dirname
, NULL
) )
1171 if ( wxMkDir(dir
.fn_str()) != 0 )
1175 wxLogSysError(_("Directory '%s' couldn't be created"), dirname
);
1184 bool wxRmdir(const wxString
& dir
, int WXUNUSED(flags
))
1186 #if defined(__VMS__)
1187 return false; //to be changed since rmdir exists in VMS7.x
1188 #elif defined(__OS2__)
1189 return (::DosDeleteDir((PSZ
)dir
.c_str()) == 0);
1190 #elif defined(__WXWINCE__)
1191 return (CreateDirectory(dir
, NULL
) != 0);
1192 #elif defined(__WXPALMOS__)
1193 // TODO with VFSFileRename()
1196 return (wxRmDir(OS_FILENAME(dir
)) == 0);
1200 // does the path exists? (may have or not '/' or '\\' at the end)
1201 bool wxDirExists(const wxChar
*pszPathName
)
1203 wxString
strPath(pszPathName
);
1205 #if defined(__WINDOWS__) || defined(__OS2__)
1206 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
1207 // so remove all trailing backslashes from the path - but don't do this for
1208 // the pathes "d:\" (which are different from "d:") nor for just "\"
1209 while ( wxEndsWithPathSeparator(strPath
) )
1211 size_t len
= strPath
.length();
1212 if ( len
== 1 || (len
== 3 && strPath
[len
- 2] == _T(':')) )
1215 strPath
.Truncate(len
- 1);
1217 #endif // __WINDOWS__
1220 // OS/2 can't handle "d:", it wants either "d:\" or "d:."
1221 if (strPath
.length() == 2 && strPath
[1u] == _T(':'))
1225 #if defined(__WXPALMOS__)
1227 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
1228 // stat() can't cope with network paths
1229 DWORD ret
= ::GetFileAttributes(strPath
);
1231 return (ret
!= (DWORD
)-1) && (ret
& FILE_ATTRIBUTE_DIRECTORY
);
1232 #elif defined(__OS2__)
1233 return (::DosSetCurrentDir((PSZ
)(WXSTRINGCAST strPath
)));
1237 #ifndef __VISAGECPP__
1238 return wxStat(strPath
.c_str(), &st
) == 0 && ((st
.st_mode
& S_IFMT
) == S_IFDIR
);
1240 // S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
1241 return wxStat(pszPathName
, &st
) == 0 && (st
.st_mode
== S_IFDIR
);
1244 #endif // __WIN32__/!__WIN32__
1247 // Get a temporary filename, opening and closing the file.
1248 wxChar
*wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
)
1251 wxString filename
= wxFileName::CreateTempFileName(prefix
);
1252 if ( filename
.empty() )
1256 wxStrcpy(buf
, filename
);
1258 buf
= MYcopystring(filename
);
1262 wxUnusedVar(prefix
);
1264 // wxFileName::CreateTempFileName needs wxFile class enabled
1269 bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
)
1271 buf
= wxGetTempFileName(prefix
);
1273 return !buf
.empty();
1276 // Get first file name matching given wild card.
1278 static wxDir
*gs_dir
= NULL
;
1279 static wxString gs_dirPath
;
1281 wxString
wxFindFirstFile(const wxChar
*spec
, int flags
)
1283 wxSplitPath(spec
, &gs_dirPath
, NULL
, NULL
);
1284 if ( gs_dirPath
.empty() )
1285 gs_dirPath
= wxT(".");
1286 if ( !wxEndsWithPathSeparator(gs_dirPath
) )
1287 gs_dirPath
<< wxFILE_SEP_PATH
;
1291 gs_dir
= new wxDir(gs_dirPath
);
1293 if ( !gs_dir
->IsOpened() )
1295 wxLogSysError(_("Can not enumerate files '%s'"), spec
);
1296 return wxEmptyString
;
1302 case wxDIR
: dirFlags
= wxDIR_DIRS
; break;
1303 case wxFILE
: dirFlags
= wxDIR_FILES
; break;
1304 default: dirFlags
= wxDIR_DIRS
| wxDIR_FILES
; break;
1308 gs_dir
->GetFirst(&result
, wxFileNameFromPath(wxString(spec
)), dirFlags
);
1309 if ( result
.empty() )
1315 return gs_dirPath
+ result
;
1318 wxString
wxFindNextFile()
1320 wxASSERT_MSG( gs_dir
, wxT("You must call wxFindFirstFile before!") );
1323 gs_dir
->GetNext(&result
);
1325 if ( result
.empty() )
1331 return gs_dirPath
+ result
;
1335 // Get current working directory.
1336 // If buf is NULL, allocates space using new, else
1338 wxChar
*wxGetWorkingDirectory(wxChar
*buf
, int sz
)
1340 #if defined(__WXPALMOS__)
1343 #elif defined(__WXWINCE__)
1351 buf
= new wxChar
[sz
+ 1];
1354 bool ok
wxDUMMY_INITIALIZE(false);
1356 // for the compilers which have Unicode version of _getcwd(), call it
1357 // directly, for the others call the ANSI version and do the translation
1360 #else // wxUSE_UNICODE
1361 bool needsANSI
= true;
1363 #if !defined(HAVE_WGETCWD) || wxUSE_UNICODE_MSLU
1364 // This is not legal code as the compiler
1365 // is allowed destroy the wxCharBuffer.
1366 // wxCharBuffer c_buffer(sz);
1367 // char *cbuf = (char*)(const char*)c_buffer;
1368 char cbuf
[_MAXPATHLEN
];
1372 #if wxUSE_UNICODE_MSLU
1373 if ( wxGetOsVersion() != wxWIN95
)
1375 char *cbuf
= NULL
; // never really used because needsANSI will always be false
1378 ok
= _wgetcwd(buf
, sz
) != NULL
;
1384 #endif // wxUSE_UNICODE
1386 #if defined(_MSC_VER) || defined(__MINGW32__)
1387 ok
= _getcwd(cbuf
, sz
) != NULL
;
1388 #elif defined(__WXMAC__) && !defined(__DARWIN__)
1390 if ( getcwd( lbuf
, sizeof( lbuf
) ) )
1392 wxString
res( lbuf
, *wxConvCurrent
) ;
1393 wxStrcpy( buf
, res
) ;
1398 #elif defined(__OS2__)
1400 ULONG ulDriveNum
= 0;
1401 ULONG ulDriveMap
= 0;
1402 rc
= ::DosQueryCurrentDisk(&ulDriveNum
, &ulDriveMap
);
1407 rc
= ::DosQueryCurrentDir( 0 // current drive
1411 cbuf
[0] = 'A' + (ulDriveNum
- 1);
1416 #else // !Win32/VC++ !Mac !OS2
1417 ok
= getcwd(cbuf
, sz
) != NULL
;
1420 #if wxUSE_UNICODE && !(defined(__WXMAC__) && !defined(__DARWIN__))
1421 // finally convert the result to Unicode if needed
1422 wxConvFile
.MB2WC(buf
, cbuf
, sz
);
1423 #endif // wxUSE_UNICODE
1428 wxLogSysError(_("Failed to get the working directory"));
1430 // VZ: the old code used to return "." on error which didn't make any
1431 // sense at all to me - empty string is a better error indicator
1432 // (NULL might be even better but I'm afraid this could lead to
1433 // problems with the old code assuming the return is never NULL)
1436 else // ok, but we might need to massage the path into the right format
1439 // VS: DJGPP is a strange mix of DOS and UNIX API and returns paths
1440 // with / deliminers. We don't like that.
1441 for (wxChar
*ch
= buf
; *ch
; ch
++)
1443 if (*ch
== wxT('/'))
1448 // MBN: we hope that in the case the user is compiling a GTK+/Motif app,
1449 // he needs Unix as opposed to Win32 pathnames
1450 #if defined( __CYGWIN__ ) && defined( __WINDOWS__ )
1451 // another example of DOS/Unix mix (Cygwin)
1452 wxString pathUnix
= buf
;
1453 cygwin_conv_to_full_win32_path(pathUnix
, buf
);
1454 #endif // __CYGWIN__
1469 wxChar
*buffer
= new wxChar
[_MAXPATHLEN
];
1470 wxGetWorkingDirectory(buffer
, _MAXPATHLEN
);
1471 wxString
str( buffer
);
1477 bool wxSetWorkingDirectory(const wxString
& d
)
1479 #if defined(__OS2__)
1480 return (::DosSetCurrentDir((PSZ
)d
.c_str()) == 0);
1481 #elif defined(__UNIX__) || defined(__WXMAC__) || defined(__DOS__)
1482 return (chdir(wxFNSTRINGCAST d
.fn_str()) == 0);
1483 #elif defined(__WINDOWS__)
1487 // No equivalent in WinCE
1491 return (bool)(SetCurrentDirectory(d
) != 0);
1494 // Must change drive, too.
1495 bool isDriveSpec
= ((strlen(d
) > 1) && (d
[1] == ':'));
1498 wxChar firstChar
= d
[0];
1502 firstChar
= firstChar
- 32;
1504 // To a drive number
1505 unsigned int driveNo
= firstChar
- 64;
1508 unsigned int noDrives
;
1509 _dos_setdrive(driveNo
, &noDrives
);
1512 bool success
= (chdir(WXSTRINGCAST d
) == 0);
1520 // Get the OS directory if appropriate (such as the Windows directory).
1521 // On non-Windows platform, probably just return the empty string.
1522 wxString
wxGetOSDirectory()
1525 return wxString(wxT("\\Windows"));
1526 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1528 GetWindowsDirectory(buf
, 256);
1529 return wxString(buf
);
1530 #elif defined(__WXMAC__)
1531 return wxMacFindFolder(kOnSystemDisk
, 'macs', false);
1533 return wxEmptyString
;
1537 bool wxEndsWithPathSeparator(const wxChar
*pszFileName
)
1539 size_t len
= wxStrlen(pszFileName
);
1541 return len
&& wxIsPathSeparator(pszFileName
[len
- 1]);
1544 // find a file in a list of directories, returns false if not found
1545 bool wxFindFileInPath(wxString
*pStr
, const wxChar
*pszPath
, const wxChar
*pszFile
)
1547 // we assume that it's not empty
1548 wxCHECK_MSG( !wxIsEmpty(pszFile
), false,
1549 _T("empty file name in wxFindFileInPath"));
1551 // skip path separator in the beginning of the file name if present
1552 if ( wxIsPathSeparator(*pszFile
) )
1555 // copy the path (strtok will modify it)
1556 wxChar
*szPath
= new wxChar
[wxStrlen(pszPath
) + 1];
1557 wxStrcpy(szPath
, pszPath
);
1560 wxChar
*pc
, *save_ptr
;
1561 for ( pc
= wxStrtok(szPath
, wxPATH_SEP
, &save_ptr
);
1563 pc
= wxStrtok((wxChar
*) NULL
, wxPATH_SEP
, &save_ptr
) )
1565 // search for the file in this directory
1567 if ( !wxEndsWithPathSeparator(pc
) )
1568 strFile
+= wxFILE_SEP_PATH
;
1571 if ( wxFileExists(strFile
) ) {
1577 // suppress warning about unused variable save_ptr when wxStrtok() is a
1578 // macro which throws away its third argument
1583 return pc
!= NULL
; // if true => we breaked from the loop
1586 void WXDLLEXPORT
wxSplitPath(const wxChar
*pszFileName
,
1591 // it can be empty, but it shouldn't be NULL
1592 wxCHECK_RET( pszFileName
, wxT("NULL file name in wxSplitPath") );
1594 wxFileName::SplitPath(pszFileName
, pstrPath
, pstrName
, pstrExt
);
1597 time_t WXDLLEXPORT
wxFileModificationTime(const wxString
& filename
)
1599 #if defined(__WXPALMOS__)
1601 #elif defined(__WXWINCE__)
1602 FILETIME creationTime
, lastAccessTime
, lastWriteTime
;
1603 HANDLE fileHandle
= ::CreateFile(filename
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
1604 0, FILE_ATTRIBUTE_NORMAL
, 0);
1605 if (fileHandle
== INVALID_HANDLE_VALUE
)
1609 if (GetFileTime(fileHandle
, & creationTime
, & lastAccessTime
, & lastWriteTime
))
1611 CloseHandle(fileHandle
);
1613 wxDateTime dateTime
;
1615 if ( !::FileTimeToLocalFileTime(&lastWriteTime
, &ftLocal
) )
1617 wxLogLastError(_T("FileTimeToLocalFileTime"));
1621 if ( !::FileTimeToSystemTime(&ftLocal
, &st
) )
1623 wxLogLastError(_T("FileTimeToSystemTime"));
1626 dateTime
.Set(st
.wDay
, wxDateTime::Month(st
.wMonth
- 1), st
.wYear
,
1627 st
.wHour
, st
.wMinute
, st
.wSecond
, st
.wMilliseconds
);
1628 return dateTime
.GetTicks();
1635 wxStat( filename
, &buf
);
1637 return buf
.st_mtime
;
1642 // Parses the filterStr, returning the number of filters.
1643 // Returns 0 if none or if there's a problem.
1644 // filterStr is in the form: "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpeg"
1646 int WXDLLEXPORT
wxParseCommonDialogsFilter(const wxString
& filterStr
, wxArrayString
& descriptions
, wxArrayString
& filters
)
1648 descriptions
.Clear();
1651 wxString
str(filterStr
);
1653 wxString description
, filter
;
1655 while( pos
!= wxNOT_FOUND
)
1657 pos
= str
.Find(wxT('|'));
1658 if ( pos
== wxNOT_FOUND
)
1660 // if there are no '|'s at all in the string just take the entire
1661 // string as filter and make description empty for later autocompletion
1662 if ( filters
.IsEmpty() )
1664 descriptions
.Add(wxEmptyString
);
1665 filters
.Add(filterStr
);
1669 wxFAIL_MSG( _T("missing '|' in the wildcard string!") );
1675 description
= str
.Left(pos
);
1676 str
= str
.Mid(pos
+ 1);
1677 pos
= str
.Find(wxT('|'));
1678 if ( pos
== wxNOT_FOUND
)
1684 filter
= str
.Left(pos
);
1685 str
= str
.Mid(pos
+ 1);
1688 descriptions
.Add(description
);
1689 filters
.Add(filter
);
1692 #if defined(__WXMOTIF__)
1693 // split it so there is one wildcard per entry
1694 for( size_t i
= 0 ; i
< descriptions
.GetCount() ; i
++ )
1696 pos
= filters
[i
].Find(wxT(';'));
1697 if (pos
!= wxNOT_FOUND
)
1699 // first split only filters
1700 descriptions
.Insert(descriptions
[i
],i
+1);
1701 filters
.Insert(filters
[i
].Mid(pos
+1),i
+1);
1702 filters
[i
]=filters
[i
].Left(pos
);
1704 // autoreplace new filter in description with pattern:
1705 // C/C++ Files(*.cpp;*.c;*.h)|*.cpp;*.c;*.h
1706 // cause split into:
1707 // C/C++ Files(*.cpp)|*.cpp
1708 // C/C++ Files(*.c;*.h)|*.c;*.h
1709 // and next iteration cause another split into:
1710 // C/C++ Files(*.cpp)|*.cpp
1711 // C/C++ Files(*.c)|*.c
1712 // C/C++ Files(*.h)|*.h
1713 for ( size_t k
=i
;k
<i
+2;k
++ )
1715 pos
= descriptions
[k
].Find(filters
[k
]);
1716 if (pos
!= wxNOT_FOUND
)
1718 wxString before
= descriptions
[k
].Left(pos
);
1719 wxString after
= descriptions
[k
].Mid(pos
+filters
[k
].Len());
1720 pos
= before
.Find(_T('('),true);
1721 if (pos
>before
.Find(_T(')'),true))
1723 before
= before
.Left(pos
+1);
1724 before
<< filters
[k
];
1725 pos
= after
.Find(_T(')'));
1726 int pos1
= after
.Find(_T('('));
1727 if (pos
!= wxNOT_FOUND
&& (pos
<pos1
|| pos1
==wxNOT_FOUND
))
1729 before
<< after
.Mid(pos
);
1730 descriptions
[k
] = before
;
1740 for( size_t j
= 0 ; j
< descriptions
.GetCount() ; j
++ )
1742 if ( descriptions
[j
].empty() && !filters
[j
].empty() )
1744 descriptions
[j
].Printf(_("Files (%s)"), filters
[j
].c_str());
1748 return filters
.GetCount();
1752 //------------------------------------------------------------------------
1753 // wild character routines
1754 //------------------------------------------------------------------------
1756 bool wxIsWild( const wxString
& pattern
)
1758 wxString tmp
= pattern
;
1759 wxChar
*pat
= WXSTRINGCAST(tmp
);
1764 case wxT('?'): case wxT('*'): case wxT('['): case wxT('{'):
1775 * Written By Douglas A. Lewis <dalewis@cs.Buffalo.EDU>
1777 * The match procedure is public domain code (from ircII's reg.c)
1780 bool wxMatchWild( const wxString
& pat
, const wxString
& text
, bool dot_special
)
1784 /* Match if both are empty. */
1788 const wxChar
*m
= pat
.c_str(),
1799 if (dot_special
&& (*n
== wxT('.')))
1801 /* Never match so that hidden Unix files
1802 * are never found. */
1816 else if (*m
== wxT('?'))
1824 if (*m
== wxT('\\'))
1827 /* Quoting "nothing" is a bad thing */
1834 * If we are out of both strings or we just
1835 * saw a wildcard, then we can say we have a
1846 * We could check for *n == NULL at this point, but
1847 * since it's more common to have a character there,
1848 * check to see if they match first (m and n) and
1849 * then if they don't match, THEN we can check for
1867 * If there are no more characters in the
1868 * string, but we still need to find another
1869 * character (*m != NULL), then it will be
1870 * impossible to match it
1877 if (*np
== wxT(' '))
1901 // Return the type of an open file
1903 // Some file types on some platforms seem seekable but in fact are not.
1904 // The main use of this function is to allow such cases to be detected
1905 // (IsSeekable() is implemented as wxGetFileKind() == wxFILE_KIND_DISK).
1907 // This is important for the archive streams, which benefit greatly from
1908 // being able to seek on a stream, but which will produce corrupt archives
1909 // if they unknowingly seek on a non-seekable stream.
1911 // wxFILE_KIND_DISK is a good catch all return value, since other values
1912 // disable features of the archive streams. Some other value must be returned
1913 // for a file type that appears seekable but isn't.
1916 // * Pipes on Windows
1917 // * Files on VMS with a record format other than StreamLF
1919 wxFileKind
wxGetFileKind(int fd
)
1921 #if defined __WXMSW__ && !defined __WXWINCE__ && defined wxGetOSFHandle
1922 switch (::GetFileType(wxGetOSFHandle(fd
)) & ~FILE_TYPE_REMOTE
)
1924 case FILE_TYPE_CHAR
:
1925 return wxFILE_KIND_TERMINAL
;
1926 case FILE_TYPE_DISK
:
1927 return wxFILE_KIND_DISK
;
1928 case FILE_TYPE_PIPE
:
1929 return wxFILE_KIND_PIPE
;
1932 return wxFILE_KIND_UNKNOWN
;
1934 #elif defined(__UNIX__)
1936 return wxFILE_KIND_TERMINAL
;
1941 if (S_ISFIFO(st
.st_mode
))
1942 return wxFILE_KIND_PIPE
;
1943 if (!S_ISREG(st
.st_mode
))
1944 return wxFILE_KIND_UNKNOWN
;
1946 #if defined(__VMS__)
1947 if (st
.st_fab_rfm
!= FAB$C_STMLF
)
1948 return wxFILE_KIND_UNKNOWN
;
1951 return wxFILE_KIND_DISK
;
1954 #define wxFILEKIND_STUB
1956 return wxFILE_KIND_DISK
;
1960 wxFileKind
wxGetFileKind(FILE *fp
)
1962 // Note: The watcom rtl dll doesn't have fileno (the static lib does).
1963 // Should be fixed in version 1.4.
1964 #if defined(wxFILEKIND_STUB) || \
1965 (defined(__WATCOMC__) && __WATCOMC__ <= 1230 && defined(__SW_BR))
1967 return wxFILE_KIND_DISK
;
1969 return wxGetFileKind(fileno(fp
));
1974 #pragma warning(default:4706) // assignment within conditional expression