1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: File- and directory-related functions
4 // Author: Julian Smart
8 // Copyright: (c) 1998 Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "filefn.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.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 <sys/types.h>
75 #include "wx/os2/private.h"
77 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
78 #if !defined( __GNUWIN32__ ) && !defined( __MWERKS__ ) && !defined(__SALFORDC__)
83 #endif // native Win compiler
96 #ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
97 // this (3.1 I believe) and how to test for it.
98 // If this works for Borland 4.0 as well, then no worries.
107 #include "wx/setup.h"
110 // No, Cygwin doesn't appear to have fnmatch.h after all.
111 #if defined(HAVE_FNMATCH_H)
117 #include "wx/msw/mslu.h"
119 // sys/cygwin.h is needed for cygwin_conv_to_full_win32_path()
121 // note that it must be included after <windows.h>
124 #include <sys/cygwin.h>
128 #include <sys/unistd.h>
130 #endif // __GNUWIN32__
131 #endif // __WINDOWS__
133 // TODO: Borland probably has _wgetcwd as well?
138 // ----------------------------------------------------------------------------
140 // ----------------------------------------------------------------------------
143 #define _MAXPATHLEN 1024
147 # include "MoreFiles.h"
148 # include "MoreFilesExtras.h"
149 # include "FullPath.h"
150 # include "FSpCompat.h"
153 IMPLEMENT_DYNAMIC_CLASS(wxPathList
, wxStringList
)
155 // ----------------------------------------------------------------------------
157 // ----------------------------------------------------------------------------
159 static wxChar wxFileFunctionsBuffer
[4*_MAXPATHLEN
];
161 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
163 // VisualAge C++ V4.0 cannot have any external linkage const decs
164 // in headers included by more than one primary source
166 const off_t wxInvalidOffset
= (off_t
)-1;
169 // ----------------------------------------------------------------------------
171 // ----------------------------------------------------------------------------
173 // we need to translate Mac filenames before passing them to OS functions
174 #define OS_FILENAME(s) (s.fn_str())
176 // ============================================================================
178 // ============================================================================
180 void wxPathList::Add (const wxString
& path
)
182 wxStringList::Add (WXSTRINGCAST path
);
185 // Add paths e.g. from the PATH environment variable
186 void wxPathList::AddEnvList (const wxString
& envVariable
)
188 static const wxChar PATH_TOKS
[] =
190 wxT(" ;"); // Don't seperate with colon in DOS (used for drive)
195 wxChar
*val
= wxGetenv (WXSTRINGCAST envVariable
);
198 wxChar
*s
= copystring (val
);
199 wxChar
*save_ptr
, *token
= wxStrtok (s
, PATH_TOKS
, &save_ptr
);
203 Add (copystring (token
));
206 if ((token
= wxStrtok ((wxChar
*) NULL
, PATH_TOKS
, &save_ptr
)) != NULL
)
207 Add (wxString(token
));
211 // suppress warning about unused variable save_ptr when wxStrtok() is a
212 // macro which throws away its third argument
219 // Given a full filename (with path), ensure that that file can
220 // be accessed again USING FILENAME ONLY by adding the path
221 // to the list if not already there.
222 void wxPathList::EnsureFileAccessible (const wxString
& path
)
224 wxString
path_only(wxPathOnly(path
));
225 if ( !path_only
.IsEmpty() )
227 if ( !Member(path_only
) )
232 bool wxPathList::Member (const wxString
& path
)
234 for (wxNode
* node
= First (); node
!= NULL
; node
= node
->Next ())
236 wxString
path2((wxChar
*) node
->Data ());
238 #if defined(__WINDOWS__) || defined(__VMS__) || defined (__WXMAC__)
240 path
.CompareTo (path2
, wxString::ignoreCase
) == 0
242 // Case sensitive File System
243 path
.CompareTo (path2
) == 0
251 wxString
wxPathList::FindValidPath (const wxString
& file
)
253 if (wxFileExists (wxExpandPath(wxFileFunctionsBuffer
, file
)))
254 return wxString(wxFileFunctionsBuffer
);
256 wxChar buf
[_MAXPATHLEN
];
257 wxStrcpy(buf
, wxFileFunctionsBuffer
);
259 wxChar
*filename
= (wxChar
*) NULL
; /* shut up buggy egcs warning */
260 filename
= IsAbsolutePath (buf
) ? wxFileNameFromPath (buf
) : (wxChar
*)buf
;
262 for (wxNode
* node
= First (); node
; node
= node
->Next ())
264 wxChar
*path
= (wxChar
*) node
->Data ();
265 wxStrcpy (wxFileFunctionsBuffer
, path
);
266 wxChar ch
= wxFileFunctionsBuffer
[wxStrlen(wxFileFunctionsBuffer
)-1];
267 if (ch
!= wxT('\\') && ch
!= wxT('/'))
268 wxStrcat (wxFileFunctionsBuffer
, wxT("/"));
269 wxStrcat (wxFileFunctionsBuffer
, filename
);
271 Unix2DosFilename (wxFileFunctionsBuffer
);
273 if (wxFileExists (wxFileFunctionsBuffer
))
275 return wxString(wxFileFunctionsBuffer
); // Found!
279 return wxString(wxT("")); // Not found
282 wxString
wxPathList::FindAbsoluteValidPath (const wxString
& file
)
284 wxString f
= FindValidPath(file
);
285 if ( wxIsAbsolutePath(f
) )
289 wxGetWorkingDirectory(wxStringBuffer(buf
, _MAXPATHLEN
), _MAXPATHLEN
);
291 if ( !wxEndsWithPathSeparator(buf
) )
293 buf
+= wxFILE_SEP_PATH
;
301 wxFileExists (const wxString
& filename
)
303 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
304 // GetFileAttributes can copy with network paths unlike stat()
305 DWORD ret
= ::GetFileAttributes(filename
);
307 return (ret
!= (DWORD
)-1) && !(ret
& FILE_ATTRIBUTE_DIRECTORY
);
310 if ( !filename
.empty() && wxStat (OS_FILENAME(filename
), &stbuf
) == 0 )
318 wxIsAbsolutePath (const wxString
& filename
)
320 if (filename
!= wxT(""))
322 #if defined(__WXMAC__) && !defined(__DARWIN__)
323 // Classic or Carbon CodeWarrior like
324 // Carbon with Apple DevTools is Unix like
326 // This seems wrong to me, but there is no fix. since
327 // "MacOS:MyText.txt" is absolute whereas "MyDir:MyText.txt"
328 // is not. Or maybe ":MyDir:MyText.txt" has to be used? RR.
329 if (filename
.Find(':') != wxNOT_FOUND
&& filename
[0] != ':')
332 // Unix like or Windows
333 if (filename
[0] == wxT('/'))
337 if ((filename
[0] == wxT('[') && filename
[1] != wxT('.')))
342 if (filename
[0] == wxT('\\') || (wxIsalpha (filename
[0]) && filename
[1] == wxT(':')))
350 * Strip off any extension (dot something) from end of file,
351 * IF one exists. Inserts zero into buffer.
355 void wxStripExtension(wxChar
*buffer
)
357 int len
= wxStrlen(buffer
);
361 if (buffer
[i
] == wxT('.'))
370 void wxStripExtension(wxString
& buffer
)
372 size_t len
= buffer
.Length();
376 if (buffer
.GetChar(i
) == wxT('.'))
378 buffer
= buffer
.Left(i
);
385 // Destructive removal of /./ and /../ stuff
386 wxChar
*wxRealPath (wxChar
*path
)
389 static const wxChar SEP
= wxT('\\');
390 Unix2DosFilename(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
--);
409 if (q
[0] == SEP
&& (q
[1] != wxT('.') || q
[2] != wxT('.') || q
[3] != SEP
)
410 && (q
- 1 <= path
|| q
[-1] != SEP
))
413 if (path
[0] == wxT('\0'))
419 /* Check that path[2] is NULL! */
420 else if (path
[1] == wxT(':') && !path
[2])
429 else if (p
[1] == wxT('.') && (p
[2] == SEP
|| p
[2] == wxT('\0')))
438 wxChar
*wxCopyAbsolutePath(const wxString
& filename
)
440 if (filename
== wxT(""))
441 return (wxChar
*) NULL
;
443 if (! IsAbsolutePath(wxExpandPath(wxFileFunctionsBuffer
, filename
))) {
444 wxChar buf
[_MAXPATHLEN
];
446 wxGetWorkingDirectory(buf
, WXSIZEOF(buf
));
447 wxChar ch
= buf
[wxStrlen(buf
) - 1];
449 if (ch
!= wxT('\\') && ch
!= wxT('/'))
450 wxStrcat(buf
, wxT("\\"));
453 wxStrcat(buf
, wxT("/"));
455 wxStrcat(buf
, wxFileFunctionsBuffer
);
456 return copystring( wxRealPath(buf
) );
458 return copystring( wxFileFunctionsBuffer
);
464 ~user/ => user's home dir
465 If the environment variable a = "foo" and b = "bar" then:
482 /* input name in name, pathname output to buf. */
484 wxChar
*wxExpandPath(wxChar
*buf
, const wxChar
*name
)
486 register wxChar
*d
, *s
, *nm
;
487 wxChar lnm
[_MAXPATHLEN
];
490 // Some compilers don't like this line.
491 // const wxChar trimchars[] = wxT("\n \t");
494 trimchars
[0] = wxT('\n');
495 trimchars
[1] = wxT(' ');
496 trimchars
[2] = wxT('\t');
500 const wxChar SEP
= wxT('\\');
502 const wxChar SEP
= wxT('/');
505 if (name
== NULL
|| *name
== wxT('\0'))
507 nm
= copystring(name
); // Make a scratch copy
510 /* Skip leading whitespace and cr */
511 while (wxStrchr((wxChar
*)trimchars
, *nm
) != NULL
)
513 /* And strip off trailing whitespace and cr */
514 s
= nm
+ (q
= wxStrlen(nm
)) - 1;
515 while (q
-- && wxStrchr((wxChar
*)trimchars
, *s
) != NULL
)
523 q
= nm
[0] == wxT('\\') && nm
[1] == wxT('~');
526 /* Expand inline environment variables */
544 while ((*d
++ = *s
) != 0) {
546 if (*s
== wxT('\\')) {
547 if ((*(d
- 1) = *++s
)) {
556 if (*s
++ == wxT('$') && (*s
== wxT('{') || *s
== wxT(')')))
558 if (*s
++ == wxT('$'))
561 register wxChar
*start
= d
;
562 register int braces
= (*s
== wxT('{') || *s
== wxT('('));
563 register wxChar
*value
;
564 while ((*d
++ = *s
) != 0)
565 if (braces
? (*s
== wxT('}') || *s
== wxT(')')) : !(wxIsalnum(*s
) || *s
== wxT('_')) )
570 value
= wxGetenv(braces
? start
+ 1 : start
);
572 for ((d
= start
- 1); (*d
++ = *value
++) != 0;);
580 /* Expand ~ and ~user */
582 if (nm
[0] == wxT('~') && !q
)
585 if (nm
[1] == SEP
|| nm
[1] == 0)
587 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
588 if ((s
= WXSTRINGCAST
wxGetUserHome(wxT(""))) != NULL
) {
593 { /* ~user/filename */
594 register wxChar
*nnm
;
595 register wxChar
*home
;
596 for (s
= nm
; *s
&& *s
!= SEP
; s
++);
597 int was_sep
; /* MATTHEW: Was there a separator, or NULL? */
598 was_sep
= (*s
== SEP
);
599 nnm
= *s
? s
+ 1 : s
;
601 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
602 if ((home
= WXSTRINGCAST
wxGetUserHome(wxString(nm
+ 1))) == NULL
) {
603 if (was_sep
) /* replace only if it was there: */
614 if (s
&& *s
) { /* MATTHEW: s could be NULL if user '~' didn't exist */
616 while (wxT('\0') != (*d
++ = *s
++))
619 if (d
- 1 > buf
&& *(d
- 2) != SEP
)
623 while ((*d
++ = *s
++) != 0);
624 delete[] nm_tmp
; // clean up alloc
625 /* Now clean up the buffer */
626 return wxRealPath(buf
);
629 /* Contract Paths to be build upon an environment variable
632 example: "/usr/openwin/lib", OPENWINHOME --> ${OPENWINHOME}/lib
634 The call wxExpandPath can convert these back!
637 wxContractPath (const wxString
& filename
, const wxString
& envname
, const wxString
& user
)
639 static wxChar dest
[_MAXPATHLEN
];
641 if (filename
== wxT(""))
642 return (wxChar
*) NULL
;
644 wxStrcpy (dest
, WXSTRINGCAST filename
);
646 Unix2DosFilename(dest
);
649 // Handle environment
650 const wxChar
*val
= (const wxChar
*) NULL
;
651 wxChar
*tcp
= (wxChar
*) NULL
;
652 if (envname
!= WXSTRINGCAST NULL
&& (val
= wxGetenv (WXSTRINGCAST envname
)) != NULL
&&
653 (tcp
= wxStrstr (dest
, val
)) != NULL
)
655 wxStrcpy (wxFileFunctionsBuffer
, tcp
+ wxStrlen (val
));
658 wxStrcpy (tcp
, WXSTRINGCAST envname
);
659 wxStrcat (tcp
, wxT("}"));
660 wxStrcat (tcp
, wxFileFunctionsBuffer
);
663 // Handle User's home (ignore root homes!)
665 if ((val
= wxGetUserHome (user
)) != NULL
&&
666 (len
= wxStrlen(val
)) > 2 &&
667 wxStrncmp(dest
, val
, len
) == 0)
669 wxStrcpy(wxFileFunctionsBuffer
, wxT("~"));
671 wxStrcat(wxFileFunctionsBuffer
, (const wxChar
*) user
);
673 // strcat(wxFileFunctionsBuffer, "\\");
675 // strcat(wxFileFunctionsBuffer, "/");
677 wxStrcat(wxFileFunctionsBuffer
, dest
+ len
);
678 wxStrcpy (dest
, wxFileFunctionsBuffer
);
684 // Return just the filename, not the path
686 wxChar
*wxFileNameFromPath (wxChar
*path
)
690 register wxChar
*tcp
;
692 tcp
= path
+ wxStrlen (path
);
693 while (--tcp
>= path
)
695 #if defined(__WXMAC__) && !defined(__DARWIN__)
696 // Classic or Carbon CodeWarrior like
697 // Carbon with Apple DevTools is Unix like
698 if (*tcp
== wxT(':'))
701 // Unix like or Windows
702 if (*tcp
== wxT('/') || *tcp
== wxT('\\'))
706 if (*tcp
== wxT(':') || *tcp
== wxT(']'))
710 #if defined(__WXMSW__) || defined(__WXPM__)
712 if (wxIsalpha (*path
) && *(path
+ 1) == wxT(':'))
719 wxString
wxFileNameFromPath (const wxString
& path1
)
721 if (path1
!= wxT(""))
723 wxChar
*path
= WXSTRINGCAST path1
;
724 register wxChar
*tcp
;
726 tcp
= path
+ wxStrlen (path
);
727 while (--tcp
>= path
)
729 #if defined(__WXMAC__) && !defined(__DARWIN__)
730 // Classic or Carbon CodeWarrior like
731 // Carbon with Apple DevTools is Unix like
732 if (*tcp
== wxT(':') )
733 return wxString(tcp
+ 1);
735 // Unix like or Windows
736 if (*tcp
== wxT('/') || *tcp
== wxT('\\'))
737 return wxString(tcp
+ 1);
740 if (*tcp
== wxT(':') || *tcp
== wxT(']'))
741 return wxString(tcp
+ 1);
744 #if defined(__WXMSW__) || defined(__WXPM__)
746 if (wxIsalpha (*path
) && *(path
+ 1) == wxT(':'))
747 return wxString(path
+ 2);
750 // Yes, this should return the path, not an empty string, otherwise
751 // we get "thing.txt" -> "".
755 // Return just the directory, or NULL if no directory
757 wxPathOnly (wxChar
*path
)
761 static wxChar buf
[_MAXPATHLEN
];
764 wxStrcpy (buf
, path
);
766 int l
= wxStrlen(path
);
769 // Search backward for a backward or forward slash
772 #if defined(__WXMAC__) && !defined(__DARWIN__)
773 // Classic or Carbon CodeWarrior like
774 // Carbon with Apple DevTools is Unix like
775 if (path
[i
] == wxT(':') )
781 // Unix like or Windows
782 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
789 if (path
[i
] == wxT(']'))
798 #if defined(__WXMSW__) || defined(__WXPM__)
799 // Try Drive specifier
800 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
802 // A:junk --> A:. (since A:.\junk Not A:\junk)
809 return (wxChar
*) NULL
;
812 // Return just the directory, or NULL if no directory
813 wxString
wxPathOnly (const wxString
& path
)
817 wxChar buf
[_MAXPATHLEN
];
820 wxStrcpy (buf
, WXSTRINGCAST path
);
822 int l
= path
.Length();
825 // Search backward for a backward or forward slash
828 #if defined(__WXMAC__) && !defined(__DARWIN__)
829 // Classic or Carbon CodeWarrior like
830 // Carbon with Apple DevTools is Unix like
831 if (path
[i
] == wxT(':') )
834 return wxString(buf
);
837 // Unix like or Windows
838 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
841 return wxString(buf
);
845 if (path
[i
] == wxT(']'))
848 return wxString(buf
);
854 #if defined(__WXMSW__) || defined(__WXPM__)
855 // Try Drive specifier
856 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
858 // A:junk --> A:. (since A:.\junk Not A:\junk)
861 return wxString(buf
);
865 return wxString(wxT(""));
868 // Utility for converting delimiters in DOS filenames to UNIX style
869 // and back again - or we get nasty problems with delimiters.
870 // Also, convert to lower case, since case is significant in UNIX.
872 #if defined(__WXMAC__)
873 wxString
wxMacFSSpec2MacFilename( const FSSpec
*spec
)
877 char thePath
[FILENAME_MAX
];
879 // convert the FSSpec to an FSRef
880 (void) FSpMakeFSRef( spec
, &theRef
);
881 // get the POSIX path associated with the FSRef
882 (void) FSRefMakePath( &theRef
, (UInt8
*)thePath
, sizeof(thePath
) );
884 // create path string for return value
885 wxString
result( thePath
) ;
890 // get length of path and allocate handle
891 FSpGetFullPath( spec
, &length
, &myPath
) ;
892 ::SetHandleSize( myPath
, length
+ 1 ) ;
894 (*myPath
)[length
] = 0 ;
895 if ((length
> 0) && ((*myPath
)[length
-1] == ':'))
896 (*myPath
)[length
-1] = 0 ;
898 // create path string for return value
899 wxString
result( (char*) *myPath
) ;
901 // free allocated handle
902 ::HUnlock( myPath
) ;
903 ::DisposeHandle( myPath
) ;
909 void wxMacFilename2FSSpec( const char *path
, FSSpec
*spec
)
914 // get the FSRef associated with the POSIX path
915 (void) FSPathMakeRef((const UInt8
*) path
, &theRef
, NULL
);
916 // convert the FSRef to an FSSpec
917 (void) FSGetCatalogInfo(&theRef
, kFSCatInfoNone
, NULL
, NULL
, spec
, NULL
);
919 FSpLocationFromFullPath( strlen(path
) , path
, spec
) ;
924 // Mac file names are POSIX (Unix style) under Darwin
925 // therefore the conversion functions below are not needed
927 static char sMacFileNameConversion
[ 1000 ] ;
929 wxString
wxMac2UnixFilename (const char *str
)
931 char *s
= sMacFileNameConversion
;
935 memmove( s
+1 , s
,strlen( s
) + 1) ;
946 *s
= wxTolower(*s
); // Case INDEPENDENT
950 return wxString(sMacFileNameConversion
) ;
953 wxString
wxUnix2MacFilename (const char *str
)
955 char *s
= sMacFileNameConversion
;
961 // relative path , since it goes on with slash which is translated to a :
962 memmove( s
, s
+1 ,strlen( s
) ) ;
964 else if ( *s
== '/' )
966 // absolute path -> on mac just start with the drive name
967 memmove( s
, s
+1 ,strlen( s
) ) ;
971 wxASSERT_MSG( 1 , "unkown path beginning" ) ;
975 if (*s
== '/' || *s
== '\\')
977 // convert any back-directory situations
978 if ( *(s
+1) == '.' && *(s
+2) == '.' && ( (*(s
+3) == '/' || *(s
+3) == '\\') ) )
981 memmove( s
+1 , s
+3 ,strlen( s
+3 ) + 1 ) ;
989 return wxString (sMacFileNameConversion
) ;
992 wxString
wxMacFSSpec2UnixFilename( const FSSpec
*spec
)
994 return wxMac2UnixFilename( wxMacFSSpec2MacFilename( spec
) ) ;
997 void wxUnixFilename2FSSpec( const char *path
, FSSpec
*spec
)
999 wxString var
= wxUnix2MacFilename( path
) ;
1000 wxMacFilename2FSSpec( var
, spec
) ;
1002 #endif // ! __DARWIN__
1007 wxDos2UnixFilename (char *s
)
1016 *s
= wxTolower (*s
); // Case INDEPENDENT
1023 #if defined(__WXMSW__) || defined(__WXPM__)
1024 wxUnix2DosFilename (wxChar
*s
)
1026 wxUnix2DosFilename (wxChar
*WXUNUSED(s
) )
1029 // Yes, I really mean this to happen under DOS only! JACS
1030 #if defined(__WXMSW__) || defined(__WXPM__)
1041 // Concatenate two files to form third
1043 wxConcatFiles (const wxString
& file1
, const wxString
& file2
, const wxString
& file3
)
1046 if ( !wxGetTempFileName("cat", outfile
) )
1049 FILE *fp1
= (FILE *) NULL
;
1050 FILE *fp2
= (FILE *) NULL
;
1051 FILE *fp3
= (FILE *) NULL
;
1052 // Open the inputs and outputs
1053 if ((fp1
= wxFopen (OS_FILENAME( file1
), wxT("rb"))) == NULL
||
1054 (fp2
= wxFopen (OS_FILENAME( file2
), wxT("rb"))) == NULL
||
1055 (fp3
= wxFopen (OS_FILENAME( outfile
), wxT("wb"))) == NULL
)
1067 while ((ch
= getc (fp1
)) != EOF
)
1068 (void) putc (ch
, fp3
);
1071 while ((ch
= getc (fp2
)) != EOF
)
1072 (void) putc (ch
, fp3
);
1076 bool result
= wxRenameFile(outfile
, file3
);
1082 wxCopyFile (const wxString
& file1
, const wxString
& file2
, bool overwrite
)
1084 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
1085 // CopyFile() copies file attributes and modification time too, so use it
1086 // instead of our code if available
1088 // NB: 3rd parameter is bFailIfExists i.e. the inverse of overwrite
1089 if ( !::CopyFile(file1
, file2
, !overwrite
) )
1091 wxLogSysError(_("Failed to copy the file '%s' to '%s'"),
1092 file1
.c_str(), file2
.c_str());
1096 #elif defined(__WXPM__)
1097 if ( ::DosCopy(file2
, file2
, overwrite
? DCPY_EXISTING
: 0) != 0 )
1102 // get permissions of file1
1103 if ( wxStat(OS_FILENAME(file1
), &fbuf
) != 0 )
1105 // the file probably doesn't exist or we haven't the rights to read
1107 wxLogSysError(_("Impossible to get permissions for file '%s'"),
1112 // open file1 for reading
1113 wxFile
fileIn(file1
, wxFile::read
);
1114 if ( !fileIn
.IsOpened() )
1117 // remove file2, if it exists. This is needed for creating
1118 // file2 with the correct permissions in the next step
1119 if ( wxFileExists(file2
) && (!overwrite
|| !wxRemoveFile(file2
)))
1121 wxLogSysError(_("Impossible to overwrite the file '%s'"),
1127 // reset the umask as we want to create the file with exactly the same
1128 // permissions as the original one
1129 mode_t oldUmask
= umask( 0 );
1132 // create file2 with the same permissions than file1 and open it for
1135 if ( !fileOut
.Create(file2
, overwrite
, fbuf
.st_mode
& 0777) )
1139 /// restore the old umask
1143 // copy contents of file1 to file2
1148 count
= fileIn
.Read(buf
, WXSIZEOF(buf
));
1149 if ( fileIn
.Error() )
1156 if ( fileOut
.Write(buf
, count
) < count
)
1160 // we can expect fileIn to be closed successfully, but we should ensure
1161 // that fileOut was closed as some write errors (disk full) might not be
1162 // detected before doing this
1163 if ( !fileIn
.Close() || !fileOut
.Close() )
1166 #if !defined(__VISAGECPP__) && !defined(__WXMAC__) || defined(__UNIX__)
1167 // no chmod in VA. Should be some permission API for HPFS386 partitions
1169 if ( chmod(OS_FILENAME(file2
), fbuf
.st_mode
) != 0 )
1171 wxLogSysError(_("Impossible to set permissions for the file '%s'"),
1175 #endif // OS/2 || Mac
1176 #endif // __WXMSW__ && __WIN32__
1182 wxRenameFile (const wxString
& file1
, const wxString
& file2
)
1184 // Normal system call
1185 if ( wxRename (file1
, file2
) == 0 )
1189 if (wxCopyFile(file1
, file2
)) {
1190 wxRemoveFile(file1
);
1197 bool wxRemoveFile(const wxString
& file
)
1199 #if defined(__VISUALC__) \
1200 || defined(__BORLANDC__) \
1201 || defined(__WATCOMC__) \
1202 || defined(__GNUWIN32__)
1203 int res
= wxRemove(file
);
1205 int res
= unlink(OS_FILENAME(file
));
1211 bool wxMkdir(const wxString
& dir
, int perm
)
1213 #if defined(__WXMAC__) && !defined(__UNIX__)
1214 return (mkdir( dir
, 0 ) == 0);
1216 const wxChar
*dirname
= dir
.c_str();
1218 // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
1219 // for the GNU compiler
1220 #if (!(defined(__WXMSW__) || defined(__WXPM__) || defined(__DOS__))) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WXWINE__) || defined(__WXMICROWIN__)
1221 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1222 #elif defined(__WXPM__)
1223 if (::DosCreateDir((PSZ
)dirname
, NULL
) != 0) // enhance for EAB's??
1224 #elif defined(__DOS__)
1225 #if defined(__WATCOMC__)
1227 if ( wxMkDir(wxFNSTRINGCAST
wxFNCONV(dirname
)) != 0 )
1228 #elif defined(__DJGPP__)
1229 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1231 #error "Unsupported DOS compiler!"
1233 #else // !MSW, !DOS and !OS/2 VAC++
1235 if ( wxMkDir(wxFNSTRINGCAST
wxFNCONV(dirname
)) != 0 )
1238 wxLogSysError(_("Directory '%s' couldn't be created"), dirname
);
1247 bool wxRmdir(const wxString
& dir
, int WXUNUSED(flags
))
1250 return FALSE
; //to be changed since rmdir exists in VMS7.x
1251 #elif defined(__WXPM__)
1252 return (::DosDeleteDir((PSZ
)dir
.c_str()) == 0);
1256 return FALSE
; // What to do?
1258 return (wxRmDir(OS_FILENAME(dir
)) == 0);
1264 // does the path exists? (may have or not '/' or '\\' at the end)
1265 bool wxPathExists(const wxChar
*pszPathName
)
1267 wxString
strPath(pszPathName
);
1270 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
1271 // so remove all trailing backslashes from the path - but don't do this for
1272 // the pathes "d:\" (which are different from "d:") nor for just "\"
1273 while ( wxEndsWithPathSeparator(strPath
) )
1275 size_t len
= strPath
.length();
1276 if ( len
== 1 || (len
== 3 && strPath
[len
- 2] == _T(':')) )
1279 strPath
.Truncate(len
- 1);
1281 #endif // __WINDOWS__
1283 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
1284 // stat() can't cope with network paths
1285 DWORD ret
= ::GetFileAttributes(strPath
);
1287 return (ret
!= (DWORD
)-1) && (ret
& FILE_ATTRIBUTE_DIRECTORY
);
1291 #ifndef __VISAGECPP__
1292 return wxStat(wxFNSTRINGCAST strPath
.fn_str(), &st
) == 0 &&
1293 ((st
.st_mode
& S_IFMT
) == S_IFDIR
);
1295 // S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
1296 return wxStat(wxFNSTRINGCAST strPath
.fn_str(), &st
) == 0 &&
1297 (st
.st_mode
== S_IFDIR
);
1300 #endif // __WIN32__/!__WIN32__
1303 // Get a temporary filename, opening and closing the file.
1304 wxChar
*wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
)
1306 wxString filename
= wxFileName::CreateTempFileName(prefix
);
1307 if ( filename
.empty() )
1311 wxStrcpy(buf
, filename
);
1313 buf
= copystring(filename
);
1318 bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
)
1320 buf
= wxFileName::CreateTempFileName(prefix
);
1322 return !buf
.empty();
1325 // Get first file name matching given wild card.
1327 static wxDir
*gs_dir
= NULL
;
1328 static wxString gs_dirPath
;
1330 wxString
wxFindFirstFile(const wxChar
*spec
, int flags
)
1332 gs_dirPath
= wxPathOnly(spec
);
1333 if ( gs_dirPath
.IsEmpty() )
1334 gs_dirPath
= wxT(".");
1335 if ( gs_dirPath
.Last() != wxFILE_SEP_PATH
)
1336 gs_dirPath
<< wxFILE_SEP_PATH
;
1340 gs_dir
= new wxDir(gs_dirPath
);
1342 if ( !gs_dir
->IsOpened() )
1344 wxLogSysError(_("Can not enumerate files '%s'"), spec
);
1345 return wxEmptyString
;
1351 case wxDIR
: dirFlags
= wxDIR_DIRS
; break;
1352 case wxFILE
: dirFlags
= wxDIR_FILES
; break;
1353 default: dirFlags
= wxDIR_DIRS
| wxDIR_FILES
; break;
1357 gs_dir
->GetFirst(&result
, wxFileNameFromPath(spec
), dirFlags
);
1358 if ( result
.IsEmpty() )
1364 return gs_dirPath
+ result
;
1367 wxString
wxFindNextFile()
1369 wxASSERT_MSG( gs_dir
, wxT("You must call wxFindFirstFile before!") );
1372 gs_dir
->GetNext(&result
);
1374 if ( result
.IsEmpty() )
1380 return gs_dirPath
+ result
;
1384 // Get current working directory.
1385 // If buf is NULL, allocates space using new, else
1387 wxChar
*wxGetWorkingDirectory(wxChar
*buf
, int sz
)
1391 buf
= new wxChar
[sz
+ 1];
1396 // for the compilers which have Unicode version of _getcwd(), call it
1397 // directly, for the others call the ANSI version and do the translation
1400 #else // wxUSE_UNICODE
1401 bool needsANSI
= TRUE
;
1403 #if !defined(HAVE_WGETCWD) || wxUSE_UNICODE_MSLU
1404 wxCharBuffer
c_buffer(sz
);
1405 char *cbuf
= (char*)(const char*)c_buffer
;
1409 #if wxUSE_UNICODE_MSLU
1410 if ( wxGetOsVersion() != wxWIN95
)
1413 ok
= _wgetcwd(buf
, sz
) != NULL
;
1419 #endif // wxUSE_UNICODE
1422 ok
= _getcwd(cbuf
, sz
) != NULL
;
1423 #elif defined(__WXMAC__) && !defined(__DARWIN__)
1428 pb
.ioNamePtr
= (StringPtr
) &fileName
;
1430 pb
.ioRefNum
= LMGetCurApRefNum();
1432 error
= PBGetFCBInfoSync(&pb
);
1433 if ( error
== noErr
)
1435 cwdSpec
.vRefNum
= pb
.ioFCBVRefNum
;
1436 cwdSpec
.parID
= pb
.ioFCBParID
;
1437 cwdSpec
.name
[0] = 0 ;
1438 wxString res
= wxMacFSSpec2MacFilename( &cwdSpec
) ;
1440 strcpy( cbuf
, res
) ;
1441 cbuf
[res
.length()]=0 ;
1449 #elif defined(__VISAGECPP__) || (defined (__OS2__) && defined (__WATCOMC__))
1451 rc
= ::DosQueryCurrentDir( 0 // current drive
1456 #else // !Win32/VC++ !Mac !OS2
1457 ok
= getcwd(cbuf
, sz
) != NULL
;
1463 wxLogSysError(_("Failed to get the working directory"));
1465 // VZ: the old code used to return "." on error which didn't make any
1466 // sense at all to me - empty string is a better error indicator
1467 // (NULL might be even better but I'm afraid this could lead to
1468 // problems with the old code assuming the return is never NULL)
1471 else // ok, but we might need to massage the path into the right format
1474 // VS: DJGPP is a strange mix of DOS and UNIX API and returns paths
1475 // with / deliminers. We don't like that.
1476 for (wxChar
*ch
= buf
; *ch
; ch
++)
1478 if (*ch
== wxT('/'))
1484 // another example of DOS/Unix mix (Cygwin)
1485 wxString pathUnix
= buf
;
1486 cygwin_conv_to_full_win32_path(pathUnix
, buf
);
1487 #endif // __CYGWIN__
1489 // finally convert the result to Unicode if needed
1491 wxConvFile
.MB2WC(buf
, cbuf
, sz
);
1492 #endif // wxUSE_UNICODE
1506 // we can't create wxStringBuffer object inline: Sun CC generates buggy
1507 // code in this case!
1509 wxStringBuffer
buf(str
, _MAXPATHLEN
);
1510 wxGetWorkingDirectory(buf
, _MAXPATHLEN
);
1516 bool wxSetWorkingDirectory(const wxString
& d
)
1518 #if defined(__UNIX__) || defined(__WXMAC__) || defined(__DOS__)
1519 return (chdir(wxFNSTRINGCAST d
.fn_str()) == 0);
1520 #elif defined(__WXPM__)
1521 return (::DosSetCurrentDir((PSZ
)d
.c_str()) == 0);
1522 #elif defined(__WINDOWS__)
1525 return (bool)(SetCurrentDirectory(d
) != 0);
1527 // Must change drive, too.
1528 bool isDriveSpec
= ((strlen(d
) > 1) && (d
[1] == ':'));
1531 wxChar firstChar
= d
[0];
1535 firstChar
= firstChar
- 32;
1537 // To a drive number
1538 unsigned int driveNo
= firstChar
- 64;
1541 unsigned int noDrives
;
1542 _dos_setdrive(driveNo
, &noDrives
);
1545 bool success
= (chdir(WXSTRINGCAST d
) == 0);
1553 // Get the OS directory if appropriate (such as the Windows directory).
1554 // On non-Windows platform, probably just return the empty string.
1555 wxString
wxGetOSDirectory()
1557 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1559 GetWindowsDirectory(buf
, 256);
1560 return wxString(buf
);
1562 return wxEmptyString
;
1566 bool wxEndsWithPathSeparator(const wxChar
*pszFileName
)
1568 size_t len
= wxStrlen(pszFileName
);
1570 return len
&& wxIsPathSeparator(pszFileName
[len
- 1]);
1573 // find a file in a list of directories, returns false if not found
1574 bool wxFindFileInPath(wxString
*pStr
, const wxChar
*pszPath
, const wxChar
*pszFile
)
1576 // we assume that it's not empty
1577 wxCHECK_MSG( !wxIsEmpty(pszFile
), FALSE
,
1578 _T("empty file name in wxFindFileInPath"));
1580 // skip path separator in the beginning of the file name if present
1581 if ( wxIsPathSeparator(*pszFile
) )
1584 // copy the path (strtok will modify it)
1585 wxChar
*szPath
= new wxChar
[wxStrlen(pszPath
) + 1];
1586 wxStrcpy(szPath
, pszPath
);
1589 wxChar
*pc
, *save_ptr
;
1590 for ( pc
= wxStrtok(szPath
, wxPATH_SEP
, &save_ptr
);
1592 pc
= wxStrtok((wxChar
*) NULL
, wxPATH_SEP
, &save_ptr
) )
1594 // search for the file in this directory
1596 if ( !wxEndsWithPathSeparator(pc
) )
1597 strFile
+= wxFILE_SEP_PATH
;
1600 if ( FileExists(strFile
) ) {
1606 // suppress warning about unused variable save_ptr when wxStrtok() is a
1607 // macro which throws away its third argument
1612 return pc
!= NULL
; // if true => we breaked from the loop
1615 void WXDLLEXPORT
wxSplitPath(const wxChar
*pszFileName
,
1620 // it can be empty, but it shouldn't be NULL
1621 wxCHECK_RET( pszFileName
, wxT("NULL file name in wxSplitPath") );
1623 wxFileName::SplitPath(pszFileName
, pstrPath
, pstrName
, pstrExt
);
1626 time_t WXDLLEXPORT
wxFileModificationTime(const wxString
& filename
)
1630 wxStat(filename
.fn_str(), &buf
);
1631 return buf
.st_mtime
;
1635 //------------------------------------------------------------------------
1636 // wild character routines
1637 //------------------------------------------------------------------------
1639 bool wxIsWild( const wxString
& pattern
)
1641 wxString tmp
= pattern
;
1642 wxChar
*pat
= WXSTRINGCAST(tmp
);
1645 case wxT('?'): case wxT('*'): case wxT('['): case wxT('{'):
1655 bool wxMatchWild( const wxString
& pat
, const wxString
& text
, bool dot_special
)
1657 #if defined(HAVE_FNMATCH_H)
1659 // this probably won't work well for multibyte chars in Unicode mode?
1661 return fnmatch(pat
.fn_str(), text
.fn_str(), FNM_PERIOD
) == 0;
1663 return fnmatch(pat
.fn_str(), text
.fn_str(), 0) == 0;
1667 // #pragma error Broken implementation of wxMatchWild() -- needs fixing!
1670 * WARNING: this code is broken!
1673 wxString tmp1
= pat
;
1674 wxChar
*pattern
= WXSTRINGCAST(tmp1
);
1675 wxString tmp2
= text
;
1676 wxChar
*str
= WXSTRINGCAST(tmp2
);
1679 bool done
= FALSE
, ret_code
, ok
;
1680 // Below is for vi fans
1681 const wxChar OB
= wxT('{'), CB
= wxT('}');
1683 // dot_special means '.' only matches '.'
1684 if (dot_special
&& *str
== wxT('.') && *pattern
!= *str
)
1687 while ((*pattern
!= wxT('\0')) && (!done
)
1688 && (((*str
==wxT('\0'))&&((*pattern
==OB
)||(*pattern
==wxT('*'))))||(*str
!=wxT('\0')))) {
1692 if (*pattern
!= wxT('\0'))
1698 while ((*str
!=wxT('\0'))
1699 && ((ret_code
=wxMatchWild(pattern
, str
++, FALSE
)) == 0))
1702 while (*str
!= wxT('\0'))
1704 while (*pattern
!= wxT('\0'))
1711 if ((*pattern
== wxT('\0')) || (*pattern
== wxT(']'))) {
1715 if (*pattern
== wxT('\\')) {
1717 if (*pattern
== wxT('\0')) {
1722 if (*(pattern
+ 1) == wxT('-')) {
1725 if (*pattern
== wxT(']')) {
1729 if (*pattern
== wxT('\\')) {
1731 if (*pattern
== wxT('\0')) {
1736 if ((*str
< c
) || (*str
> *pattern
)) {
1740 } else if (*pattern
!= *str
) {
1745 while ((*pattern
!= wxT(']')) && (*pattern
!= wxT('\0'))) {
1746 if ((*pattern
== wxT('\\')) && (*(pattern
+ 1) != wxT('\0')))
1750 if (*pattern
!= wxT('\0')) {
1760 while ((*pattern
!= CB
) && (*pattern
!= wxT('\0'))) {
1763 while (ok
&& (*cp
!= wxT('\0')) && (*pattern
!= wxT('\0'))
1764 && (*pattern
!= wxT(',')) && (*pattern
!= CB
)) {
1765 if (*pattern
== wxT('\\'))
1767 ok
= (*pattern
++ == *cp
++);
1769 if (*pattern
== wxT('\0')) {
1775 while ((*pattern
!= CB
) && (*pattern
!= wxT('\0'))) {
1776 if (*++pattern
== wxT('\\')) {
1777 if (*++pattern
== CB
)
1782 while (*pattern
!=CB
&& *pattern
!=wxT(',') && *pattern
!=wxT('\0')) {
1783 if (*++pattern
== wxT('\\')) {
1784 if (*++pattern
== CB
|| *pattern
== wxT(','))
1789 if (*pattern
!= wxT('\0'))
1794 if (*str
== *pattern
) {
1801 while (*pattern
== wxT('*'))
1803 return ((*str
== wxT('\0')) && (*pattern
== wxT('\0')));
1809 #pragma warning(default:4706) // assignment within conditional expression