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>
76 #include "wx/os2/private.h"
78 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__) && !defined(__WXWINE__)
79 #if !defined( __GNUWIN32__ ) && !defined( __MWERKS__ ) && !defined(__SALFORDC__)
84 #endif // native Win compiler
97 #ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
98 // this (3.1 I believe) and how to test for it.
99 // If this works for Borland 4.0 as well, then no worries.
108 #include "wx/setup.h"
111 // No, Cygwin doesn't appear to have fnmatch.h after all.
112 #if defined(HAVE_FNMATCH_H)
118 #include "wx/msw/mslu.h"
120 // sys/cygwin.h is needed for cygwin_conv_to_full_win32_path()
122 // note that it must be included after <windows.h>
125 #include <sys/cygwin.h>
129 #include <sys/unistd.h>
131 #endif // __GNUWIN32__
132 #endif // __WINDOWS__
134 // TODO: Borland probably has _wgetcwd as well?
139 // ----------------------------------------------------------------------------
141 // ----------------------------------------------------------------------------
144 #define _MAXPATHLEN 1024
148 # include "MoreFiles.h"
149 # include "MoreFilesExtras.h"
150 # include "FullPath.h"
151 # include "FSpCompat.h"
154 // ----------------------------------------------------------------------------
156 // ----------------------------------------------------------------------------
158 // MT-FIXME: get rid of this horror and all code using it
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 #ifdef wxNEED_WX_UNISTD_H
182 WXDLLEXPORT
int wxStat( const wxChar
*file_name
, wxStructStat
*buf
)
184 return stat( wxConvFile
.cWX2MB( file_name
), buf
);
187 WXDLLEXPORT
int wxAccess( const wxChar
*pathname
, int mode
)
189 return access( wxConvFile
.cWX2MB( pathname
), mode
);
192 WXDLLEXPORT
int wxOpen( const wxChar
*pathname
, int flags
, mode_t mode
)
194 return open( wxConvFile
.cWX2MB( pathname
), flags
, mode
);
198 // wxNEED_WX_UNISTD_H
200 // ----------------------------------------------------------------------------
202 // ----------------------------------------------------------------------------
204 IMPLEMENT_DYNAMIC_CLASS(wxPathList
, wxStringList
)
206 void wxPathList::Add (const wxString
& path
)
208 wxStringList::Add (WXSTRINGCAST path
);
211 // Add paths e.g. from the PATH environment variable
212 void wxPathList::AddEnvList (const wxString
& envVariable
)
214 static const wxChar PATH_TOKS
[] =
216 wxT(" ;"); // Don't seperate with colon in DOS (used for drive)
221 wxChar
*val
= wxGetenv (WXSTRINGCAST envVariable
);
224 wxChar
*s
= copystring (val
);
225 wxChar
*save_ptr
, *token
= wxStrtok (s
, PATH_TOKS
, &save_ptr
);
229 Add (copystring (token
));
232 if ((token
= wxStrtok ((wxChar
*) NULL
, PATH_TOKS
, &save_ptr
)) != NULL
)
233 Add (wxString(token
));
237 // suppress warning about unused variable save_ptr when wxStrtok() is a
238 // macro which throws away its third argument
245 // Given a full filename (with path), ensure that that file can
246 // be accessed again USING FILENAME ONLY by adding the path
247 // to the list if not already there.
248 void wxPathList::EnsureFileAccessible (const wxString
& path
)
250 wxString
path_only(wxPathOnly(path
));
251 if ( !path_only
.IsEmpty() )
253 if ( !Member(path_only
) )
258 bool wxPathList::Member (const wxString
& path
)
260 for (wxNode
* node
= First (); node
!= NULL
; node
= node
->Next ())
262 wxString
path2((wxChar
*) node
->Data ());
264 #if defined(__WINDOWS__) || defined(__VMS__) || defined (__WXMAC__)
266 path
.CompareTo (path2
, wxString::ignoreCase
) == 0
268 // Case sensitive File System
269 path
.CompareTo (path2
) == 0
277 wxString
wxPathList::FindValidPath (const wxString
& file
)
279 if (wxFileExists (wxExpandPath(wxFileFunctionsBuffer
, file
)))
280 return wxString(wxFileFunctionsBuffer
);
282 wxChar buf
[_MAXPATHLEN
];
283 wxStrcpy(buf
, wxFileFunctionsBuffer
);
285 wxChar
*filename
= (wxChar
*) NULL
; /* shut up buggy egcs warning */
286 filename
= IsAbsolutePath (buf
) ? wxFileNameFromPath (buf
) : (wxChar
*)buf
;
288 for (wxNode
* node
= First (); node
; node
= node
->Next ())
290 wxChar
*path
= (wxChar
*) node
->Data ();
291 wxStrcpy (wxFileFunctionsBuffer
, path
);
292 wxChar ch
= wxFileFunctionsBuffer
[wxStrlen(wxFileFunctionsBuffer
)-1];
293 if (ch
!= wxT('\\') && ch
!= wxT('/'))
294 wxStrcat (wxFileFunctionsBuffer
, wxT("/"));
295 wxStrcat (wxFileFunctionsBuffer
, filename
);
297 Unix2DosFilename (wxFileFunctionsBuffer
);
299 if (wxFileExists (wxFileFunctionsBuffer
))
301 return wxString(wxFileFunctionsBuffer
); // Found!
305 return wxString(wxT("")); // Not found
308 wxString
wxPathList::FindAbsoluteValidPath (const wxString
& file
)
310 wxString f
= FindValidPath(file
);
311 if ( wxIsAbsolutePath(f
) )
315 wxGetWorkingDirectory(wxStringBuffer(buf
, _MAXPATHLEN
), _MAXPATHLEN
);
317 if ( !wxEndsWithPathSeparator(buf
) )
319 buf
+= wxFILE_SEP_PATH
;
327 wxFileExists (const wxString
& filename
)
329 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
330 // GetFileAttributes can copy with network paths unlike stat()
331 DWORD ret
= ::GetFileAttributes(filename
);
333 return (ret
!= (DWORD
)-1) && !(ret
& FILE_ATTRIBUTE_DIRECTORY
);
336 if ( !filename
.empty() && wxStat( filename
, &stbuf
) == 0 )
344 wxIsAbsolutePath (const wxString
& filename
)
346 if (filename
!= wxT(""))
348 #if defined(__WXMAC__) && !defined(__DARWIN__)
349 // Classic or Carbon CodeWarrior like
350 // Carbon with Apple DevTools is Unix like
352 // This seems wrong to me, but there is no fix. since
353 // "MacOS:MyText.txt" is absolute whereas "MyDir:MyText.txt"
354 // is not. Or maybe ":MyDir:MyText.txt" has to be used? RR.
355 if (filename
.Find(':') != wxNOT_FOUND
&& filename
[0] != ':')
358 // Unix like or Windows
359 if (filename
[0] == wxT('/'))
363 if ((filename
[0] == wxT('[') && filename
[1] != wxT('.')))
368 if (filename
[0] == wxT('\\') || (wxIsalpha (filename
[0]) && filename
[1] == wxT(':')))
376 * Strip off any extension (dot something) from end of file,
377 * IF one exists. Inserts zero into buffer.
381 void wxStripExtension(wxChar
*buffer
)
383 int len
= wxStrlen(buffer
);
387 if (buffer
[i
] == wxT('.'))
396 void wxStripExtension(wxString
& buffer
)
398 size_t len
= buffer
.Length();
402 if (buffer
.GetChar(i
) == wxT('.'))
404 buffer
= buffer
.Left(i
);
411 // Destructive removal of /./ and /../ stuff
412 wxChar
*wxRealPath (wxChar
*path
)
415 static const wxChar SEP
= wxT('\\');
416 Unix2DosFilename(path
);
418 static const wxChar SEP
= wxT('/');
420 if (path
[0] && path
[1]) {
421 /* MATTHEW: special case "/./x" */
423 if (path
[2] == SEP
&& path
[1] == wxT('.'))
431 if (p
[1] == wxT('.') && p
[2] == wxT('.') && (p
[3] == SEP
|| p
[3] == wxT('\0')))
434 for (q
= p
- 1; q
>= path
&& *q
!= SEP
; q
--);
435 if (q
[0] == SEP
&& (q
[1] != wxT('.') || q
[2] != wxT('.') || q
[3] != SEP
)
436 && (q
- 1 <= path
|| q
[-1] != SEP
))
439 if (path
[0] == wxT('\0'))
445 /* Check that path[2] is NULL! */
446 else if (path
[1] == wxT(':') && !path
[2])
455 else if (p
[1] == wxT('.') && (p
[2] == SEP
|| p
[2] == wxT('\0')))
464 wxChar
*wxCopyAbsolutePath(const wxString
& filename
)
466 if (filename
== wxT(""))
467 return (wxChar
*) NULL
;
469 if (! IsAbsolutePath(wxExpandPath(wxFileFunctionsBuffer
, filename
))) {
470 wxChar buf
[_MAXPATHLEN
];
472 wxGetWorkingDirectory(buf
, WXSIZEOF(buf
));
473 wxChar ch
= buf
[wxStrlen(buf
) - 1];
475 if (ch
!= wxT('\\') && ch
!= wxT('/'))
476 wxStrcat(buf
, wxT("\\"));
479 wxStrcat(buf
, wxT("/"));
481 wxStrcat(buf
, wxFileFunctionsBuffer
);
482 return copystring( wxRealPath(buf
) );
484 return copystring( wxFileFunctionsBuffer
);
490 ~user/ => user's home dir
491 If the environment variable a = "foo" and b = "bar" then:
508 /* input name in name, pathname output to buf. */
510 wxChar
*wxExpandPath(wxChar
*buf
, const wxChar
*name
)
512 register wxChar
*d
, *s
, *nm
;
513 wxChar lnm
[_MAXPATHLEN
];
516 // Some compilers don't like this line.
517 // const wxChar trimchars[] = wxT("\n \t");
520 trimchars
[0] = wxT('\n');
521 trimchars
[1] = wxT(' ');
522 trimchars
[2] = wxT('\t');
526 const wxChar SEP
= wxT('\\');
528 const wxChar SEP
= wxT('/');
531 if (name
== NULL
|| *name
== wxT('\0'))
533 nm
= copystring(name
); // Make a scratch copy
536 /* Skip leading whitespace and cr */
537 while (wxStrchr((wxChar
*)trimchars
, *nm
) != NULL
)
539 /* And strip off trailing whitespace and cr */
540 s
= nm
+ (q
= wxStrlen(nm
)) - 1;
541 while (q
-- && wxStrchr((wxChar
*)trimchars
, *s
) != NULL
)
549 q
= nm
[0] == wxT('\\') && nm
[1] == wxT('~');
552 /* Expand inline environment variables */
570 while ((*d
++ = *s
) != 0) {
572 if (*s
== wxT('\\')) {
573 if ((*(d
- 1) = *++s
)) {
582 if (*s
++ == wxT('$') && (*s
== wxT('{') || *s
== wxT(')')))
584 if (*s
++ == wxT('$'))
587 register wxChar
*start
= d
;
588 register int braces
= (*s
== wxT('{') || *s
== wxT('('));
589 register wxChar
*value
;
590 while ((*d
++ = *s
) != 0)
591 if (braces
? (*s
== wxT('}') || *s
== wxT(')')) : !(wxIsalnum(*s
) || *s
== wxT('_')) )
596 value
= wxGetenv(braces
? start
+ 1 : start
);
598 for ((d
= start
- 1); (*d
++ = *value
++) != 0;);
606 /* Expand ~ and ~user */
608 if (nm
[0] == wxT('~') && !q
)
611 if (nm
[1] == SEP
|| nm
[1] == 0)
613 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
614 if ((s
= WXSTRINGCAST
wxGetUserHome(wxT(""))) != NULL
) {
619 { /* ~user/filename */
620 register wxChar
*nnm
;
621 register wxChar
*home
;
622 for (s
= nm
; *s
&& *s
!= SEP
; s
++);
623 int was_sep
; /* MATTHEW: Was there a separator, or NULL? */
624 was_sep
= (*s
== SEP
);
625 nnm
= *s
? s
+ 1 : s
;
627 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
628 if ((home
= WXSTRINGCAST
wxGetUserHome(wxString(nm
+ 1))) == NULL
) {
629 if (was_sep
) /* replace only if it was there: */
640 if (s
&& *s
) { /* MATTHEW: s could be NULL if user '~' didn't exist */
642 while (wxT('\0') != (*d
++ = *s
++))
645 if (d
- 1 > buf
&& *(d
- 2) != SEP
)
649 while ((*d
++ = *s
++) != 0);
650 delete[] nm_tmp
; // clean up alloc
651 /* Now clean up the buffer */
652 return wxRealPath(buf
);
655 /* Contract Paths to be build upon an environment variable
658 example: "/usr/openwin/lib", OPENWINHOME --> ${OPENWINHOME}/lib
660 The call wxExpandPath can convert these back!
663 wxContractPath (const wxString
& filename
, const wxString
& envname
, const wxString
& user
)
665 static wxChar dest
[_MAXPATHLEN
];
667 if (filename
== wxT(""))
668 return (wxChar
*) NULL
;
670 wxStrcpy (dest
, WXSTRINGCAST filename
);
672 Unix2DosFilename(dest
);
675 // Handle environment
676 const wxChar
*val
= (const wxChar
*) NULL
;
677 wxChar
*tcp
= (wxChar
*) NULL
;
678 if (envname
!= WXSTRINGCAST NULL
&& (val
= wxGetenv (WXSTRINGCAST envname
)) != NULL
&&
679 (tcp
= wxStrstr (dest
, val
)) != NULL
)
681 wxStrcpy (wxFileFunctionsBuffer
, tcp
+ wxStrlen (val
));
684 wxStrcpy (tcp
, WXSTRINGCAST envname
);
685 wxStrcat (tcp
, wxT("}"));
686 wxStrcat (tcp
, wxFileFunctionsBuffer
);
689 // Handle User's home (ignore root homes!)
691 if ((val
= wxGetUserHome (user
)) != NULL
&&
692 (len
= wxStrlen(val
)) > 2 &&
693 wxStrncmp(dest
, val
, len
) == 0)
695 wxStrcpy(wxFileFunctionsBuffer
, wxT("~"));
697 wxStrcat(wxFileFunctionsBuffer
, (const wxChar
*) user
);
698 wxStrcat(wxFileFunctionsBuffer
, dest
+ len
);
699 wxStrcpy (dest
, wxFileFunctionsBuffer
);
705 // Return just the filename, not the path (basename)
706 wxChar
*wxFileNameFromPath (wxChar
*path
)
709 wxString n
= wxFileNameFromPath(p
);
711 return path
+ p
.length() - n
.length();
714 wxString
wxFileNameFromPath (const wxString
& path
)
717 wxFileName::SplitPath(path
, NULL
, &name
, &ext
);
719 wxString fullname
= name
;
722 fullname
<< wxFILE_SEP_EXT
<< ext
;
728 // Return just the directory, or NULL if no directory
730 wxPathOnly (wxChar
*path
)
734 static wxChar buf
[_MAXPATHLEN
];
737 wxStrcpy (buf
, path
);
739 int l
= wxStrlen(path
);
742 // Search backward for a backward or forward slash
745 #if defined(__WXMAC__) && !defined(__DARWIN__)
746 // Classic or Carbon CodeWarrior like
747 // Carbon with Apple DevTools is Unix like
748 if (path
[i
] == wxT(':') )
754 // Unix like or Windows
755 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
762 if (path
[i
] == wxT(']'))
771 #if defined(__WXMSW__) || defined(__WXPM__)
772 // Try Drive specifier
773 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
775 // A:junk --> A:. (since A:.\junk Not A:\junk)
782 return (wxChar
*) NULL
;
785 // Return just the directory, or NULL if no directory
786 wxString
wxPathOnly (const wxString
& path
)
790 wxChar buf
[_MAXPATHLEN
];
793 wxStrcpy (buf
, WXSTRINGCAST path
);
795 int l
= path
.Length();
798 // Search backward for a backward or forward slash
801 #if defined(__WXMAC__) && !defined(__DARWIN__)
802 // Classic or Carbon CodeWarrior like
803 // Carbon with Apple DevTools is Unix like
804 if (path
[i
] == wxT(':') )
807 return wxString(buf
);
810 // Unix like or Windows
811 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
814 return wxString(buf
);
818 if (path
[i
] == wxT(']'))
821 return wxString(buf
);
827 #if defined(__WXMSW__) || defined(__WXPM__)
828 // Try Drive specifier
829 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
831 // A:junk --> A:. (since A:.\junk Not A:\junk)
834 return wxString(buf
);
838 return wxString(wxT(""));
841 // Utility for converting delimiters in DOS filenames to UNIX style
842 // and back again - or we get nasty problems with delimiters.
843 // Also, convert to lower case, since case is significant in UNIX.
845 #if defined(__WXMAC__)
846 wxString
wxMacFSSpec2MacFilename( const FSSpec
*spec
)
853 Boolean isDirectory
= false;
854 Str255 theParentPath
= "\p";
855 FSSpec theParentSpec
;
857 char theFileName
[FILENAME_MAX
];
858 char thePath
[FILENAME_MAX
];
862 // GD: Separate file name from path and make a FSRef to the parent
863 // directory. This is necessary since FSRefs cannot reference files
864 // that have not yet been created.
865 // Based on example code from Apple Technical Note TN2022
866 // http://developer.apple.com/technotes/tn/tn2022.html
868 // check whether we are converting a directory
869 isDirectory
= ((spec
->name
)[spec
->name
[0]] == ':');
870 // count length of file name
871 for (i
= spec
->name
[0] - (isDirectory
? 1 : 0); ((spec
->name
[i
] != ':') && (i
> 0)); i
--);
873 // prepend path separator since it will later be appended to the path
874 theFileName
[0] = wxFILE_SEP_PATH
;
875 for (j
= i
+ 1; j
<= spec
->name
[0] - (isDirectory
? 1 : 0); j
++) {
876 theFileName
[j
- i
] = spec
->name
[j
];
878 theFileName
[j
- i
] = '\0';
880 for (j
= 1; j
<= i
; j
++) {
881 theParentPath
[++theParentPath
[0]] = spec
->name
[j
];
883 theErr
= FSMakeFSSpec(spec
->vRefNum
, spec
->parID
, theParentPath
, &theParentSpec
);
884 if (theErr
== noErr
) {
885 // convert the FSSpec to an FSRef
886 theErr
= FSpMakeFSRef(&theParentSpec
, &theParentRef
);
888 if (theErr
== noErr
) {
889 // get the POSIX path associated with the FSRef
890 theStatus
= FSRefMakePath(&theParentRef
,
891 (UInt8
*)thePath
, sizeof(thePath
));
893 if (theStatus
== noErr
) {
894 // append file name to path
895 // includes previously prepended path separator
896 strcat(thePath
, theFileName
);
899 // create path string for return value
900 wxString
result( thePath
) ;
905 // get length of path and allocate handle
906 FSpGetFullPath( spec
, &length
, &myPath
) ;
907 ::SetHandleSize( myPath
, length
+ 1 ) ;
909 (*myPath
)[length
] = 0 ;
910 if ((length
> 0) && ((*myPath
)[length
-1] == ':'))
911 (*myPath
)[length
-1] = 0 ;
913 // create path string for return value
914 wxString
result( (char*) *myPath
) ;
916 // free allocated handle
917 ::HUnlock( myPath
) ;
918 ::DisposeHandle( myPath
) ;
924 // Mac file names are POSIX (Unix style) under Darwin
925 // therefore the conversion functions below are not needed
927 static char sMacFileNameConversion
[ 1000 ] ;
930 void wxMacFilename2FSSpec( const char *path
, FSSpec
*spec
)
932 OSStatus err
= noErr
;
936 // get the FSRef associated with the POSIX path
937 err
= FSPathMakeRef((const UInt8
*) path
, &theRef
, NULL
);
938 // convert the FSRef to an FSSpec
939 err
= FSGetCatalogInfo(&theRef
, kFSCatInfoNone
, NULL
, NULL
, spec
, NULL
);
941 if ( strchr( path
, ':' ) == NULL
)
943 // try whether it is a volume / or a mounted volume
944 strncpy( sMacFileNameConversion
, path
, 1000 ) ;
945 sMacFileNameConversion
[998] = 0 ;
946 strcat( sMacFileNameConversion
, ":" ) ;
947 err
= FSpLocationFromFullPath( strlen(sMacFileNameConversion
) , sMacFileNameConversion
, spec
) ;
951 err
= FSpLocationFromFullPath( strlen(path
) , path
, spec
) ;
958 wxString
wxMac2UnixFilename (const char *str
)
960 char *s
= sMacFileNameConversion
;
964 memmove( s
+1 , s
,strlen( s
) + 1) ;
975 *s
= wxTolower(*s
); // Case INDEPENDENT
979 return wxString(sMacFileNameConversion
) ;
982 wxString
wxUnix2MacFilename (const char *str
)
984 char *s
= sMacFileNameConversion
;
990 // relative path , since it goes on with slash which is translated to a :
991 memmove( s
, s
+1 ,strlen( s
) ) ;
993 else if ( *s
== '/' )
995 // absolute path -> on mac just start with the drive name
996 memmove( s
, s
+1 ,strlen( s
) ) ;
1000 wxASSERT_MSG( 1 , "unkown path beginning" ) ;
1004 if (*s
== '/' || *s
== '\\')
1006 // convert any back-directory situations
1007 if ( *(s
+1) == '.' && *(s
+2) == '.' && ( (*(s
+3) == '/' || *(s
+3) == '\\') ) )
1010 memmove( s
+1 , s
+3 ,strlen( s
+3 ) + 1 ) ;
1018 return wxString (sMacFileNameConversion
) ;
1021 wxString
wxMacFSSpec2UnixFilename( const FSSpec
*spec
)
1023 return wxMac2UnixFilename( wxMacFSSpec2MacFilename( spec
) ) ;
1026 void wxUnixFilename2FSSpec( const char *path
, FSSpec
*spec
)
1028 wxString var
= wxUnix2MacFilename( path
) ;
1029 wxMacFilename2FSSpec( var
, spec
) ;
1031 #endif // ! __DARWIN__
1036 wxDos2UnixFilename (char *s
)
1045 *s
= wxTolower (*s
); // Case INDEPENDENT
1052 #if defined(__WXMSW__) || defined(__WXPM__)
1053 wxUnix2DosFilename (wxChar
*s
)
1055 wxUnix2DosFilename (wxChar
*WXUNUSED(s
) )
1058 // Yes, I really mean this to happen under DOS only! JACS
1059 #if defined(__WXMSW__) || defined(__WXPM__)
1070 // Concatenate two files to form third
1072 wxConcatFiles (const wxString
& file1
, const wxString
& file2
, const wxString
& file3
)
1075 if ( !wxGetTempFileName("cat", outfile
) )
1078 FILE *fp1
= (FILE *) NULL
;
1079 FILE *fp2
= (FILE *) NULL
;
1080 FILE *fp3
= (FILE *) NULL
;
1081 // Open the inputs and outputs
1082 if ((fp1
= wxFopen ( file1
, wxT("rb"))) == NULL
||
1083 (fp2
= wxFopen ( file2
, wxT("rb"))) == NULL
||
1084 (fp3
= wxFopen ( outfile
, wxT("wb"))) == NULL
)
1096 while ((ch
= getc (fp1
)) != EOF
)
1097 (void) putc (ch
, fp3
);
1100 while ((ch
= getc (fp2
)) != EOF
)
1101 (void) putc (ch
, fp3
);
1105 bool result
= wxRenameFile(outfile
, file3
);
1111 wxCopyFile (const wxString
& file1
, const wxString
& file2
, bool overwrite
)
1113 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
1114 // CopyFile() copies file attributes and modification time too, so use it
1115 // instead of our code if available
1117 // NB: 3rd parameter is bFailIfExists i.e. the inverse of overwrite
1118 if ( !::CopyFile(file1
, file2
, !overwrite
) )
1120 wxLogSysError(_("Failed to copy the file '%s' to '%s'"),
1121 file1
.c_str(), file2
.c_str());
1125 #elif defined(__WXPM__)
1126 if ( ::DosCopy(file2
, file2
, overwrite
? DCPY_EXISTING
: 0) != 0 )
1131 // get permissions of file1
1132 if ( wxStat( file1
.c_str(), &fbuf
) != 0 )
1134 // the file probably doesn't exist or we haven't the rights to read
1136 wxLogSysError(_("Impossible to get permissions for file '%s'"),
1141 // open file1 for reading
1142 wxFile
fileIn(file1
, wxFile::read
);
1143 if ( !fileIn
.IsOpened() )
1146 // remove file2, if it exists. This is needed for creating
1147 // file2 with the correct permissions in the next step
1148 if ( wxFileExists(file2
) && (!overwrite
|| !wxRemoveFile(file2
)))
1150 wxLogSysError(_("Impossible to overwrite the file '%s'"),
1156 // reset the umask as we want to create the file with exactly the same
1157 // permissions as the original one
1158 mode_t oldUmask
= umask( 0 );
1161 // create file2 with the same permissions than file1 and open it for
1165 if ( !fileOut
.Create(file2
, overwrite
, fbuf
.st_mode
& 0777) )
1169 /// restore the old umask
1173 // copy contents of file1 to file2
1178 count
= fileIn
.Read(buf
, WXSIZEOF(buf
));
1179 if ( fileIn
.Error() )
1186 if ( fileOut
.Write(buf
, count
) < count
)
1190 // we can expect fileIn to be closed successfully, but we should ensure
1191 // that fileOut was closed as some write errors (disk full) might not be
1192 // detected before doing this
1193 if ( !fileIn
.Close() || !fileOut
.Close() )
1196 #if !defined(__VISAGECPP__) && !defined(__WXMAC__) || defined(__UNIX__)
1197 // no chmod in VA. Should be some permission API for HPFS386 partitions
1199 if ( chmod(OS_FILENAME(file2
), fbuf
.st_mode
) != 0 )
1201 wxLogSysError(_("Impossible to set permissions for the file '%s'"),
1205 #endif // OS/2 || Mac
1206 #endif // __WXMSW__ && __WIN32__
1212 wxRenameFile (const wxString
& file1
, const wxString
& file2
)
1214 // Normal system call
1215 if ( wxRename (file1
, file2
) == 0 )
1219 if (wxCopyFile(file1
, file2
)) {
1220 wxRemoveFile(file1
);
1227 bool wxRemoveFile(const wxString
& file
)
1229 #if defined(__VISUALC__) \
1230 || defined(__BORLANDC__) \
1231 || defined(__WATCOMC__) \
1232 || defined(__GNUWIN32__)
1233 int res
= wxRemove(file
);
1235 int res
= unlink(OS_FILENAME(file
));
1241 bool wxMkdir(const wxString
& dir
, int perm
)
1243 #if defined(__WXMAC__) && !defined(__UNIX__)
1244 return (mkdir( dir
, 0 ) == 0);
1246 const wxChar
*dirname
= dir
.c_str();
1248 // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
1249 // for the GNU compiler
1250 #if (!(defined(__WXMSW__) || defined(__WXPM__) || defined(__DOS__))) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WXWINE__) || defined(__WXMICROWIN__)
1251 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1252 #elif defined(__WXPM__)
1253 if (::DosCreateDir((PSZ
)dirname
, NULL
) != 0) // enhance for EAB's??
1254 #elif defined(__DOS__)
1255 #if defined(__WATCOMC__)
1257 if ( wxMkDir(wxFNSTRINGCAST
wxFNCONV(dirname
)) != 0 )
1258 #elif defined(__DJGPP__)
1259 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1261 #error "Unsupported DOS compiler!"
1263 #else // !MSW, !DOS and !OS/2 VAC++
1265 if ( wxMkDir(wxFNSTRINGCAST
wxFNCONV(dirname
)) != 0 )
1268 wxLogSysError(_("Directory '%s' couldn't be created"), dirname
);
1277 bool wxRmdir(const wxString
& dir
, int WXUNUSED(flags
))
1280 return FALSE
; //to be changed since rmdir exists in VMS7.x
1281 #elif defined(__WXPM__)
1282 return (::DosDeleteDir((PSZ
)dir
.c_str()) == 0);
1286 return FALSE
; // What to do?
1288 return (wxRmDir(OS_FILENAME(dir
)) == 0);
1294 // does the path exists? (may have or not '/' or '\\' at the end)
1295 bool wxPathExists(const wxChar
*pszPathName
)
1297 wxString
strPath(pszPathName
);
1300 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
1301 // so remove all trailing backslashes from the path - but don't do this for
1302 // the pathes "d:\" (which are different from "d:") nor for just "\"
1303 while ( wxEndsWithPathSeparator(strPath
) )
1305 size_t len
= strPath
.length();
1306 if ( len
== 1 || (len
== 3 && strPath
[len
- 2] == _T(':')) )
1309 strPath
.Truncate(len
- 1);
1311 #endif // __WINDOWS__
1313 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
1314 // stat() can't cope with network paths
1315 DWORD ret
= ::GetFileAttributes(strPath
);
1317 return (ret
!= (DWORD
)-1) && (ret
& FILE_ATTRIBUTE_DIRECTORY
);
1321 #ifndef __VISAGECPP__
1322 return wxStat(pszPathName
, &st
) == 0 && ((st
.st_mode
& S_IFMT
) == S_IFDIR
);
1324 // S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
1325 return wxStat(pszPathName
, &st
) == 0 && (st
.st_mode
== S_IFDIR
);
1328 #endif // __WIN32__/!__WIN32__
1331 // Get a temporary filename, opening and closing the file.
1332 wxChar
*wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
)
1334 wxString filename
= wxFileName::CreateTempFileName(prefix
);
1335 if ( filename
.empty() )
1339 wxStrcpy(buf
, filename
);
1341 buf
= copystring(filename
);
1346 bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
)
1348 buf
= wxFileName::CreateTempFileName(prefix
);
1350 return !buf
.empty();
1353 // Get first file name matching given wild card.
1355 static wxDir
*gs_dir
= NULL
;
1356 static wxString gs_dirPath
;
1358 wxString
wxFindFirstFile(const wxChar
*spec
, int flags
)
1360 wxSplitPath(spec
, &gs_dirPath
, NULL
, NULL
);
1361 if ( gs_dirPath
.IsEmpty() )
1362 gs_dirPath
= wxT(".");
1363 if ( gs_dirPath
.Last() != wxFILE_SEP_PATH
)
1364 gs_dirPath
<< wxFILE_SEP_PATH
;
1368 gs_dir
= new wxDir(gs_dirPath
);
1370 if ( !gs_dir
->IsOpened() )
1372 wxLogSysError(_("Can not enumerate files '%s'"), spec
);
1373 return wxEmptyString
;
1379 case wxDIR
: dirFlags
= wxDIR_DIRS
; break;
1380 case wxFILE
: dirFlags
= wxDIR_FILES
; break;
1381 default: dirFlags
= wxDIR_DIRS
| wxDIR_FILES
; break;
1385 gs_dir
->GetFirst(&result
, wxFileNameFromPath(wxString(spec
)), dirFlags
);
1386 if ( result
.IsEmpty() )
1392 return gs_dirPath
+ result
;
1395 wxString
wxFindNextFile()
1397 wxASSERT_MSG( gs_dir
, wxT("You must call wxFindFirstFile before!") );
1400 gs_dir
->GetNext(&result
);
1402 if ( result
.IsEmpty() )
1408 return gs_dirPath
+ result
;
1412 // Get current working directory.
1413 // If buf is NULL, allocates space using new, else
1415 wxChar
*wxGetWorkingDirectory(wxChar
*buf
, int sz
)
1419 buf
= new wxChar
[sz
+ 1];
1424 // for the compilers which have Unicode version of _getcwd(), call it
1425 // directly, for the others call the ANSI version and do the translation
1428 #else // wxUSE_UNICODE
1429 bool needsANSI
= TRUE
;
1431 #if !defined(HAVE_WGETCWD) || wxUSE_UNICODE_MSLU
1432 // This is not legal code as the compiler
1433 // is allowed destroy the wxCharBuffer.
1434 // wxCharBuffer c_buffer(sz);
1435 // char *cbuf = (char*)(const char*)c_buffer;
1436 char cbuf
[_MAXPATHLEN
];
1440 #if wxUSE_UNICODE_MSLU
1441 if ( wxGetOsVersion() != wxWIN95
)
1443 char *cbuf
= NULL
; // never really used because needsANSI will always be FALSE
1446 ok
= _wgetcwd(buf
, sz
) != NULL
;
1452 #endif // wxUSE_UNICODE
1455 ok
= _getcwd(cbuf
, sz
) != NULL
;
1456 #elif defined(__WXMAC__) && !defined(__DARWIN__)
1461 pb
.ioNamePtr
= (StringPtr
) &fileName
;
1463 pb
.ioRefNum
= LMGetCurApRefNum();
1465 error
= PBGetFCBInfoSync(&pb
);
1466 if ( error
== noErr
)
1468 cwdSpec
.vRefNum
= pb
.ioFCBVRefNum
;
1469 cwdSpec
.parID
= pb
.ioFCBParID
;
1470 cwdSpec
.name
[0] = 0 ;
1471 wxString res
= wxMacFSSpec2MacFilename( &cwdSpec
) ;
1473 strcpy( cbuf
, res
) ;
1474 cbuf
[res
.length()]=0 ;
1482 #elif defined(__VISAGECPP__) || (defined (__OS2__) && defined (__WATCOMC__))
1484 rc
= ::DosQueryCurrentDir( 0 // current drive
1489 #else // !Win32/VC++ !Mac !OS2
1490 ok
= getcwd(cbuf
, sz
) != NULL
;
1494 // finally convert the result to Unicode if needed
1495 wxConvFile
.MB2WC(buf
, cbuf
, sz
);
1496 #endif // wxUSE_UNICODE
1501 wxLogSysError(_("Failed to get the working directory"));
1503 // VZ: the old code used to return "." on error which didn't make any
1504 // sense at all to me - empty string is a better error indicator
1505 // (NULL might be even better but I'm afraid this could lead to
1506 // problems with the old code assuming the return is never NULL)
1509 else // ok, but we might need to massage the path into the right format
1512 // VS: DJGPP is a strange mix of DOS and UNIX API and returns paths
1513 // with / deliminers. We don't like that.
1514 for (wxChar
*ch
= buf
; *ch
; ch
++)
1516 if (*ch
== wxT('/'))
1521 // MBN: we hope that in the case the user is compiling a GTK+/Motif app,
1522 // he needs Unix as opposed to Win32 pathnames
1523 #if defined( __CYGWIN__ ) && defined( __WINDOWS__ )
1524 // another example of DOS/Unix mix (Cygwin)
1525 wxString pathUnix
= buf
;
1526 cygwin_conv_to_full_win32_path(pathUnix
, buf
);
1527 #endif // __CYGWIN__
1539 wxChar
*buffer
= new wxChar
[_MAXPATHLEN
];
1540 wxGetWorkingDirectory(buffer
, _MAXPATHLEN
);
1541 wxString
str( buffer
);
1547 bool wxSetWorkingDirectory(const wxString
& d
)
1549 #if defined(__UNIX__) || defined(__WXMAC__) || defined(__DOS__)
1550 return (chdir(wxFNSTRINGCAST d
.fn_str()) == 0);
1551 #elif defined(__WXPM__)
1552 return (::DosSetCurrentDir((PSZ
)d
.c_str()) == 0);
1553 #elif defined(__WINDOWS__)
1556 return (bool)(SetCurrentDirectory(d
) != 0);
1558 // Must change drive, too.
1559 bool isDriveSpec
= ((strlen(d
) > 1) && (d
[1] == ':'));
1562 wxChar firstChar
= d
[0];
1566 firstChar
= firstChar
- 32;
1568 // To a drive number
1569 unsigned int driveNo
= firstChar
- 64;
1572 unsigned int noDrives
;
1573 _dos_setdrive(driveNo
, &noDrives
);
1576 bool success
= (chdir(WXSTRINGCAST d
) == 0);
1584 // Get the OS directory if appropriate (such as the Windows directory).
1585 // On non-Windows platform, probably just return the empty string.
1586 wxString
wxGetOSDirectory()
1588 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1590 GetWindowsDirectory(buf
, 256);
1591 return wxString(buf
);
1593 return wxEmptyString
;
1597 bool wxEndsWithPathSeparator(const wxChar
*pszFileName
)
1599 size_t len
= wxStrlen(pszFileName
);
1601 return len
&& wxIsPathSeparator(pszFileName
[len
- 1]);
1604 // find a file in a list of directories, returns false if not found
1605 bool wxFindFileInPath(wxString
*pStr
, const wxChar
*pszPath
, const wxChar
*pszFile
)
1607 // we assume that it's not empty
1608 wxCHECK_MSG( !wxIsEmpty(pszFile
), FALSE
,
1609 _T("empty file name in wxFindFileInPath"));
1611 // skip path separator in the beginning of the file name if present
1612 if ( wxIsPathSeparator(*pszFile
) )
1615 // copy the path (strtok will modify it)
1616 wxChar
*szPath
= new wxChar
[wxStrlen(pszPath
) + 1];
1617 wxStrcpy(szPath
, pszPath
);
1620 wxChar
*pc
, *save_ptr
;
1621 for ( pc
= wxStrtok(szPath
, wxPATH_SEP
, &save_ptr
);
1623 pc
= wxStrtok((wxChar
*) NULL
, wxPATH_SEP
, &save_ptr
) )
1625 // search for the file in this directory
1627 if ( !wxEndsWithPathSeparator(pc
) )
1628 strFile
+= wxFILE_SEP_PATH
;
1631 if ( FileExists(strFile
) ) {
1637 // suppress warning about unused variable save_ptr when wxStrtok() is a
1638 // macro which throws away its third argument
1643 return pc
!= NULL
; // if true => we breaked from the loop
1646 void WXDLLEXPORT
wxSplitPath(const wxChar
*pszFileName
,
1651 // it can be empty, but it shouldn't be NULL
1652 wxCHECK_RET( pszFileName
, wxT("NULL file name in wxSplitPath") );
1654 wxFileName::SplitPath(pszFileName
, pstrPath
, pstrName
, pstrExt
);
1657 time_t WXDLLEXPORT
wxFileModificationTime(const wxString
& filename
)
1660 wxStat( filename
, &buf
);
1662 return buf
.st_mtime
;
1666 //------------------------------------------------------------------------
1667 // wild character routines
1668 //------------------------------------------------------------------------
1670 bool wxIsWild( const wxString
& pattern
)
1672 wxString tmp
= pattern
;
1673 wxChar
*pat
= WXSTRINGCAST(tmp
);
1676 case wxT('?'): case wxT('*'): case wxT('['): case wxT('{'):
1686 bool wxMatchWild( const wxString
& pat
, const wxString
& text
, bool dot_special
)
1690 // this probably won't work well for multibyte chars in Unicode mode?
1692 return fnmatch(pat
.fn_str(), text
.fn_str(), FNM_PERIOD
) == 0;
1694 return fnmatch(pat
.fn_str(), text
.fn_str(), 0) == 0;
1696 #else // !HAVE_FNMATCH
1698 // #pragma error Broken implementation of wxMatchWild() -- needs fixing!
1701 * WARNING: this code is broken!
1704 wxString tmp1
= pat
;
1705 wxChar
*pattern
= WXSTRINGCAST(tmp1
);
1706 wxString tmp2
= text
;
1707 wxChar
*str
= WXSTRINGCAST(tmp2
);
1710 bool done
= FALSE
, ret_code
, ok
;
1711 // Below is for vi fans
1712 const wxChar OB
= wxT('{'), CB
= wxT('}');
1714 // dot_special means '.' only matches '.'
1715 if (dot_special
&& *str
== wxT('.') && *pattern
!= *str
)
1718 while ((*pattern
!= wxT('\0')) && (!done
)
1719 && (((*str
==wxT('\0'))&&((*pattern
==OB
)||(*pattern
==wxT('*'))))||(*str
!=wxT('\0')))) {
1723 if (*pattern
!= wxT('\0'))
1729 while ((*str
!=wxT('\0'))
1730 && ((ret_code
=wxMatchWild(pattern
, str
++, FALSE
)) == 0))
1733 while (*str
!= wxT('\0'))
1735 while (*pattern
!= wxT('\0'))
1742 if ((*pattern
== wxT('\0')) || (*pattern
== wxT(']'))) {
1746 if (*pattern
== wxT('\\')) {
1748 if (*pattern
== wxT('\0')) {
1753 if (*(pattern
+ 1) == wxT('-')) {
1756 if (*pattern
== wxT(']')) {
1760 if (*pattern
== wxT('\\')) {
1762 if (*pattern
== wxT('\0')) {
1767 if ((*str
< c
) || (*str
> *pattern
)) {
1771 } else if (*pattern
!= *str
) {
1776 while ((*pattern
!= wxT(']')) && (*pattern
!= wxT('\0'))) {
1777 if ((*pattern
== wxT('\\')) && (*(pattern
+ 1) != wxT('\0')))
1781 if (*pattern
!= wxT('\0')) {
1791 while ((*pattern
!= CB
) && (*pattern
!= wxT('\0'))) {
1794 while (ok
&& (*cp
!= wxT('\0')) && (*pattern
!= wxT('\0'))
1795 && (*pattern
!= wxT(',')) && (*pattern
!= CB
)) {
1796 if (*pattern
== wxT('\\'))
1798 ok
= (*pattern
++ == *cp
++);
1800 if (*pattern
== wxT('\0')) {
1806 while ((*pattern
!= CB
) && (*pattern
!= wxT('\0'))) {
1807 if (*++pattern
== wxT('\\')) {
1808 if (*++pattern
== CB
)
1813 while (*pattern
!=CB
&& *pattern
!=wxT(',') && *pattern
!=wxT('\0')) {
1814 if (*++pattern
== wxT('\\')) {
1815 if (*++pattern
== CB
|| *pattern
== wxT(','))
1820 if (*pattern
!= wxT('\0'))
1825 if (*str
== *pattern
) {
1832 while (*pattern
== wxT('*'))
1834 return ((*str
== wxT('\0')) && (*pattern
== wxT('\0')));
1837 #endif // HAVE_FNMATCH/!HAVE_FNMATCH
1840 #pragma warning(default:4706) // assignment within conditional expression