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"
37 // there are just too many of those...
39 #pragma warning(disable:4706) // assignment within conditional expression
46 #if !defined(__WATCOMC__)
47 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
55 #include <sys/types.h>
70 #include "wx/os2/private.h"
73 #if !defined( __GNUWIN32__ ) && !defined( __MWERKS__ ) && !defined(__SALFORDC__)
78 #endif // native Win compiler
83 #include <sys/unistd.h>
87 #ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
88 // this (3.1 I believe) and how to test for it.
89 // If this works for Borland 4.0 as well, then no worries.
101 // No, Cygwin doesn't appear to have fnmatch.h after all.
102 #if defined(HAVE_FNMATCH_H)
110 // ----------------------------------------------------------------------------
112 // ----------------------------------------------------------------------------
114 #define _MAXPATHLEN 500
116 extern wxChar
*wxBuffer
;
118 #if defined(__WXMAC__) && !defined(__UNIX__)
119 #include "morefile.h"
120 #include "moreextr.h"
121 #include "fullpath.h"
122 #include "fspcompa.h"
125 IMPLEMENT_DYNAMIC_CLASS(wxPathList
, wxStringList
)
127 // ----------------------------------------------------------------------------
129 // ----------------------------------------------------------------------------
131 static wxChar wxFileFunctionsBuffer
[4*_MAXPATHLEN
];
133 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
135 // VisualAge C++ V4.0 cannot have any external linkage const decs
136 // in headers included by more than one primary source
138 const off_t wxInvalidOffset
= (off_t
)-1;
141 // ----------------------------------------------------------------------------
143 // ----------------------------------------------------------------------------
145 // we need to translate Mac filenames before passing them to OS functions
146 #define OS_FILENAME(s) (s.fn_str())
148 // ============================================================================
150 // ============================================================================
152 void wxPathList::Add (const wxString
& path
)
154 wxStringList::Add (WXSTRINGCAST path
);
157 // Add paths e.g. from the PATH environment variable
158 void wxPathList::AddEnvList (const wxString
& envVariable
)
160 static const wxChar PATH_TOKS
[] =
162 wxT(" ;"); // Don't seperate with colon in DOS (used for drive)
167 wxChar
*val
= wxGetenv (WXSTRINGCAST envVariable
);
170 wxChar
*s
= copystring (val
);
171 wxChar
*save_ptr
, *token
= wxStrtok (s
, PATH_TOKS
, &save_ptr
);
175 Add (copystring (token
));
178 if ((token
= wxStrtok ((wxChar
*) NULL
, PATH_TOKS
, &save_ptr
)) != NULL
)
179 Add (wxString(token
));
183 // suppress warning about unused variable save_ptr when wxStrtok() is a
184 // macro which throws away its third argument
191 // Given a full filename (with path), ensure that that file can
192 // be accessed again USING FILENAME ONLY by adding the path
193 // to the list if not already there.
194 void wxPathList::EnsureFileAccessible (const wxString
& path
)
196 wxString
path_only(wxPathOnly(path
));
197 if ( !path_only
.IsEmpty() )
199 if ( !Member(path_only
) )
204 bool wxPathList::Member (const wxString
& path
)
206 for (wxNode
* node
= First (); node
!= NULL
; node
= node
->Next ())
208 wxString
path2((wxChar
*) node
->Data ());
210 #if defined(__WINDOWS__) || defined(__VMS__) || defined (__WXMAC__)
212 path
.CompareTo (path2
, wxString::ignoreCase
) == 0
214 // Case sensitive File System
215 path
.CompareTo (path2
) == 0
223 wxString
wxPathList::FindValidPath (const wxString
& file
)
225 if (wxFileExists (wxExpandPath(wxFileFunctionsBuffer
, file
)))
226 return wxString(wxFileFunctionsBuffer
);
228 wxChar buf
[_MAXPATHLEN
];
229 wxStrcpy(buf
, wxFileFunctionsBuffer
);
231 wxChar
*filename
= (wxChar
*) NULL
; /* shut up buggy egcs warning */
232 filename
= IsAbsolutePath (buf
) ? wxFileNameFromPath (buf
) : (wxChar
*)buf
;
234 for (wxNode
* node
= First (); node
; node
= node
->Next ())
236 wxChar
*path
= (wxChar
*) node
->Data ();
237 wxStrcpy (wxFileFunctionsBuffer
, path
);
238 wxChar ch
= wxFileFunctionsBuffer
[wxStrlen(wxFileFunctionsBuffer
)-1];
239 if (ch
!= wxT('\\') && ch
!= wxT('/'))
240 wxStrcat (wxFileFunctionsBuffer
, wxT("/"));
241 wxStrcat (wxFileFunctionsBuffer
, filename
);
243 Unix2DosFilename (wxFileFunctionsBuffer
);
245 if (wxFileExists (wxFileFunctionsBuffer
))
247 return wxString(wxFileFunctionsBuffer
); // Found!
251 return wxString(wxT("")); // Not found
254 wxString
wxPathList::FindAbsoluteValidPath (const wxString
& file
)
256 wxString f
= FindValidPath(file
);
257 if ( wxIsAbsolutePath(f
) )
261 wxGetWorkingDirectory(buf
.GetWriteBuf(_MAXPATHLEN
), _MAXPATHLEN
- 1);
263 if ( !wxEndsWithPathSeparator(buf
) )
265 buf
+= wxFILE_SEP_PATH
;
273 wxFileExists (const wxString
& filename
)
276 // GetFileAttributes can copy with network paths
277 DWORD ret
= GetFileAttributes(filename
);
278 DWORD isDir
= (ret
& FILE_ATTRIBUTE_DIRECTORY
);
279 return ((ret
!= 0xffffffff) && (isDir
== 0));
282 if ( !filename
.empty() && wxStat (OS_FILENAME(filename
), &stbuf
) == 0 )
290 wxIsAbsolutePath (const wxString
& filename
)
293 if (filename
!= wxT(""))
295 // This seems wrong to me, but there is no fix. since
296 // "MacOS:MyText.txt" is absolute whereas "MyDir:MyText.txt"
297 // is not. Or maybe ":MyDir:MyText.txt" has to be used? RR.
299 if (filename
.Find(':') != wxNOT_FOUND
&& filename
[0] != ':')
304 if (filename
!= wxT(""))
306 if (filename
[0] == wxT('/')
308 || (filename
[0] == wxT('[') && filename
[1] != wxT('.'))
312 || filename
[0] == wxT('\\') || (wxIsalpha (filename
[0]) && filename
[1] == wxT(':'))
322 * Strip off any extension (dot something) from end of file,
323 * IF one exists. Inserts zero into buffer.
327 void wxStripExtension(wxChar
*buffer
)
329 int len
= wxStrlen(buffer
);
333 if (buffer
[i
] == wxT('.'))
342 void wxStripExtension(wxString
& buffer
)
344 size_t len
= buffer
.Length();
348 if (buffer
.GetChar(i
) == wxT('.'))
350 buffer
= buffer
.Left(i
);
357 // Destructive removal of /./ and /../ stuff
358 wxChar
*wxRealPath (wxChar
*path
)
361 static const wxChar SEP
= wxT('\\');
362 Unix2DosFilename(path
);
364 static const wxChar SEP
= wxT('/');
366 if (path
[0] && path
[1]) {
367 /* MATTHEW: special case "/./x" */
369 if (path
[2] == SEP
&& path
[1] == wxT('.'))
377 if (p
[1] == wxT('.') && p
[2] == wxT('.') && (p
[3] == SEP
|| p
[3] == wxT('\0')))
380 for (q
= p
- 1; q
>= path
&& *q
!= SEP
; q
--);
381 if (q
[0] == SEP
&& (q
[1] != wxT('.') || q
[2] != wxT('.') || q
[3] != SEP
)
382 && (q
- 1 <= path
|| q
[-1] != SEP
))
385 if (path
[0] == wxT('\0'))
391 /* Check that path[2] is NULL! */
392 else if (path
[1] == wxT(':') && !path
[2])
401 else if (p
[1] == wxT('.') && (p
[2] == SEP
|| p
[2] == wxT('\0')))
410 wxChar
*wxCopyAbsolutePath(const wxString
& filename
)
412 if (filename
== wxT(""))
413 return (wxChar
*) NULL
;
415 if (! IsAbsolutePath(wxExpandPath(wxFileFunctionsBuffer
, filename
))) {
416 wxChar buf
[_MAXPATHLEN
];
418 wxGetWorkingDirectory(buf
, WXSIZEOF(buf
));
419 wxChar ch
= buf
[wxStrlen(buf
) - 1];
421 if (ch
!= wxT('\\') && ch
!= wxT('/'))
422 wxStrcat(buf
, wxT("\\"));
425 wxStrcat(buf
, wxT("/"));
427 wxStrcat(buf
, wxFileFunctionsBuffer
);
428 return copystring( wxRealPath(buf
) );
430 return copystring( wxFileFunctionsBuffer
);
436 ~user/ => user's home dir
437 If the environment variable a = "foo" and b = "bar" then:
454 /* input name in name, pathname output to buf. */
456 wxChar
*wxExpandPath(wxChar
*buf
, const wxChar
*name
)
458 register wxChar
*d
, *s
, *nm
;
459 wxChar lnm
[_MAXPATHLEN
];
462 // Some compilers don't like this line.
463 // const wxChar trimchars[] = wxT("\n \t");
466 trimchars
[0] = wxT('\n');
467 trimchars
[1] = wxT(' ');
468 trimchars
[2] = wxT('\t');
472 const wxChar SEP
= wxT('\\');
474 const wxChar SEP
= wxT('/');
477 if (name
== NULL
|| *name
== wxT('\0'))
479 nm
= copystring(name
); // Make a scratch copy
482 /* Skip leading whitespace and cr */
483 while (wxStrchr((wxChar
*)trimchars
, *nm
) != NULL
)
485 /* And strip off trailing whitespace and cr */
486 s
= nm
+ (q
= wxStrlen(nm
)) - 1;
487 while (q
-- && wxStrchr((wxChar
*)trimchars
, *s
) != NULL
)
495 q
= nm
[0] == wxT('\\') && nm
[1] == wxT('~');
498 /* Expand inline environment variables */
516 while ((*d
++ = *s
) != 0) {
518 if (*s
== wxT('\\')) {
519 if ((*(d
- 1) = *++s
)) {
528 if (*s
++ == wxT('$') && (*s
== wxT('{') || *s
== wxT(')')))
530 if (*s
++ == wxT('$'))
533 register wxChar
*start
= d
;
534 register int braces
= (*s
== wxT('{') || *s
== wxT('('));
535 register wxChar
*value
;
536 while ((*d
++ = *s
) != 0)
537 if (braces
? (*s
== wxT('}') || *s
== wxT(')')) : !(wxIsalnum(*s
) || *s
== wxT('_')) )
542 value
= wxGetenv(braces
? start
+ 1 : start
);
544 for ((d
= start
- 1); (*d
++ = *value
++) != 0;);
552 /* Expand ~ and ~user */
555 if (nm
[0] == wxT('~') && !q
)
558 if (nm
[1] == SEP
|| nm
[1] == 0)
560 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
561 if ((s
= WXSTRINGCAST
wxGetUserHome(wxT(""))) != NULL
) {
566 { /* ~user/filename */
567 register wxChar
*nnm
;
568 register wxChar
*home
;
569 for (s
= nm
; *s
&& *s
!= SEP
; s
++);
570 int was_sep
; /* MATTHEW: Was there a separator, or NULL? */
571 was_sep
= (*s
== SEP
);
572 nnm
= *s
? s
+ 1 : s
;
574 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
575 if ((home
= WXSTRINGCAST
wxGetUserHome(wxString(nm
+ 1))) == NULL
) {
576 if (was_sep
) /* replace only if it was there: */
587 if (s
&& *s
) { /* MATTHEW: s could be NULL if user '~' didn't exist */
589 while (wxT('\0') != (*d
++ = *s
++))
592 if (d
- 1 > buf
&& *(d
- 2) != SEP
)
596 while ((*d
++ = *s
++) != 0);
597 delete[] nm_tmp
; // clean up alloc
598 /* Now clean up the buffer */
599 return wxRealPath(buf
);
602 /* Contract Paths to be build upon an environment variable
605 example: "/usr/openwin/lib", OPENWINHOME --> ${OPENWINHOME}/lib
607 The call wxExpandPath can convert these back!
610 wxContractPath (const wxString
& filename
, const wxString
& envname
, const wxString
& user
)
612 static wxChar dest
[_MAXPATHLEN
];
614 if (filename
== wxT(""))
615 return (wxChar
*) NULL
;
617 wxStrcpy (dest
, WXSTRINGCAST filename
);
619 Unix2DosFilename(dest
);
622 // Handle environment
623 const wxChar
*val
= (const wxChar
*) NULL
;
624 wxChar
*tcp
= (wxChar
*) NULL
;
625 if (envname
!= WXSTRINGCAST NULL
&& (val
= wxGetenv (WXSTRINGCAST envname
)) != NULL
&&
626 (tcp
= wxStrstr (dest
, val
)) != NULL
)
628 wxStrcpy (wxFileFunctionsBuffer
, tcp
+ wxStrlen (val
));
631 wxStrcpy (tcp
, WXSTRINGCAST envname
);
632 wxStrcat (tcp
, wxT("}"));
633 wxStrcat (tcp
, wxFileFunctionsBuffer
);
636 // Handle User's home (ignore root homes!)
638 if ((val
= wxGetUserHome (user
)) != NULL
&&
639 (len
= wxStrlen(val
)) > 2 &&
640 wxStrncmp(dest
, val
, len
) == 0)
642 wxStrcpy(wxFileFunctionsBuffer
, wxT("~"));
644 wxStrcat(wxFileFunctionsBuffer
, (const wxChar
*) user
);
646 // strcat(wxFileFunctionsBuffer, "\\");
648 // strcat(wxFileFunctionsBuffer, "/");
650 wxStrcat(wxFileFunctionsBuffer
, dest
+ len
);
651 wxStrcpy (dest
, wxFileFunctionsBuffer
);
657 // Return just the filename, not the path
659 wxChar
*wxFileNameFromPath (wxChar
*path
)
663 register wxChar
*tcp
;
665 tcp
= path
+ wxStrlen (path
);
666 while (--tcp
>= path
)
669 if (*tcp
== wxT(':') )
671 if (*tcp
== wxT('/') || *tcp
== wxT('\\')
673 || *tcp
== wxT(':') || *tcp
== wxT(']'))
680 #if defined(__WXMSW__) || defined(__WXPM__)
681 if (wxIsalpha (*path
) && *(path
+ 1) == wxT(':'))
688 wxString
wxFileNameFromPath (const wxString
& path1
)
690 if (path1
!= wxT(""))
693 wxChar
*path
= WXSTRINGCAST path1
;
694 register wxChar
*tcp
;
696 tcp
= path
+ wxStrlen (path
);
697 while (--tcp
>= path
)
700 if (*tcp
== wxT(':') )
702 if (*tcp
== wxT('/') || *tcp
== wxT('\\')
704 || *tcp
== wxT(':') || *tcp
== wxT(']'))
709 return wxString(tcp
+ 1);
711 #if defined(__WXMSW__) || defined(__WXPM__)
712 if (wxIsalpha (*path
) && *(path
+ 1) == wxT(':'))
713 return wxString(path
+ 2);
716 // Yes, this should return the path, not an empty string, otherwise
717 // we get "thing.txt" -> "".
721 // Return just the directory, or NULL if no directory
723 wxPathOnly (wxChar
*path
)
727 static wxChar buf
[_MAXPATHLEN
];
730 wxStrcpy (buf
, path
);
732 int l
= wxStrlen(path
);
737 // Search backward for a backward or forward slash
738 while (!done
&& i
> -1)
742 if (path
[i
] == wxT(':') )
744 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\') || path
[i
] == wxT(']'))
749 if ( path
[i
] == wxT(']') )
760 #if defined(__WXMSW__) || defined(__WXPM__)
761 // Try Drive specifier
762 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
764 // A:junk --> A:. (since A:.\junk Not A:\junk)
772 return (wxChar
*) NULL
;
775 // Return just the directory, or NULL if no directory
776 wxString
wxPathOnly (const wxString
& path
)
780 wxChar buf
[_MAXPATHLEN
];
783 wxStrcpy (buf
, WXSTRINGCAST path
);
785 int l
= path
.Length();
790 // Search backward for a backward or forward slash
791 while (!done
&& i
> -1)
795 if (path
[i
] == wxT(':') )
797 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\') || path
[i
] == wxT(']'))
802 if ( path
[i
] == wxT(']') )
808 return wxString(buf
);
813 #if defined(__WXMSW__) || defined(__WXPM__)
814 // Try Drive specifier
815 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
817 // A:junk --> A:. (since A:.\junk Not A:\junk)
820 return wxString(buf
);
825 return wxString(wxT(""));
828 // Utility for converting delimiters in DOS filenames to UNIX style
829 // and back again - or we get nasty problems with delimiters.
830 // Also, convert to lower case, since case is significant in UNIX.
832 #if defined(__WXMAC__) && !defined(__UNIX__)
833 wxString
wxMacFSSpec2MacFilename( const FSSpec
*spec
)
838 FSpGetFullPath( spec
, &length
, &myPath
) ;
839 ::SetHandleSize( myPath
, length
+ 1 ) ;
841 (*myPath
)[length
] = 0 ;
842 if ( length
> 0 && (*myPath
)[length
-1] ==':' )
843 (*myPath
)[length
-1] = 0 ;
845 wxString
result( (char*) *myPath
) ;
846 ::HUnlock( myPath
) ;
847 ::DisposeHandle( myPath
) ;
851 void wxMacFilename2FSSpec( const char *path
, FSSpec
*spec
)
853 FSpLocationFromFullPath( strlen(path
) , path
, spec
) ;
856 static char sMacFileNameConversion
[ 1000 ] ;
858 wxString
wxMac2UnixFilename (const char *str
)
860 char *s
= sMacFileNameConversion
;
864 memmove( s
+1 , s
,strlen( s
) + 1) ;
875 *s
= wxTolower (*s
); // Case INDEPENDENT
879 return wxString (sMacFileNameConversion
) ;
882 wxString
wxUnix2MacFilename (const char *str
)
884 char *s
= sMacFileNameConversion
;
890 // relative path , since it goes on with slash which is translated to a :
891 memmove( s
, s
+1 ,strlen( s
) ) ;
893 else if ( *s
== '/' )
895 // absolute path -> on mac just start with the drive name
896 memmove( s
, s
+1 ,strlen( s
) ) ;
900 wxASSERT_MSG( 1 , "unkown path beginning" ) ;
904 if (*s
== '/' || *s
== '\\')
906 // convert any back-directory situations
907 if ( *(s
+1) == '.' && *(s
+2) == '.' && ( (*(s
+3) == '/' || *(s
+3) == '\\') ) )
910 memmove( s
+1 , s
+3 ,strlen( s
+3 ) + 1 ) ;
919 return wxString (sMacFileNameConversion
) ;
922 wxString
wxMacFSSpec2UnixFilename( const FSSpec
*spec
)
924 return wxMac2UnixFilename( wxMacFSSpec2MacFilename( spec
) ) ;
927 void wxUnixFilename2FSSpec( const char *path
, FSSpec
*spec
)
929 wxString var
= wxUnix2MacFilename( path
) ;
930 wxMacFilename2FSSpec( var
, spec
) ;
935 wxDos2UnixFilename (char *s
)
944 *s
= wxTolower (*s
); // Case INDEPENDENT
951 #if defined(__WXMSW__) || defined(__WXPM__)
952 wxUnix2DosFilename (wxChar
*s
)
954 wxUnix2DosFilename (wxChar
*WXUNUSED(s
) )
957 // Yes, I really mean this to happen under DOS only! JACS
958 #if defined(__WXMSW__) || defined(__WXPM__)
969 // Concatenate two files to form third
971 wxConcatFiles (const wxString
& file1
, const wxString
& file2
, const wxString
& file3
)
974 if ( !wxGetTempFileName("cat", outfile
) )
977 FILE *fp1
= (FILE *) NULL
;
978 FILE *fp2
= (FILE *) NULL
;
979 FILE *fp3
= (FILE *) NULL
;
980 // Open the inputs and outputs
981 if ((fp1
= wxFopen (OS_FILENAME( file1
), wxT("rb"))) == NULL
||
982 (fp2
= wxFopen (OS_FILENAME( file2
), wxT("rb"))) == NULL
||
983 (fp3
= wxFopen (OS_FILENAME( outfile
), wxT("wb"))) == NULL
)
995 while ((ch
= getc (fp1
)) != EOF
)
996 (void) putc (ch
, fp3
);
999 while ((ch
= getc (fp2
)) != EOF
)
1000 (void) putc (ch
, fp3
);
1004 bool result
= wxRenameFile(outfile
, file3
);
1010 wxCopyFile (const wxString
& file1
, const wxString
& file2
, bool overwrite
)
1012 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
1013 // CopyFile() copies file attributes and modification time too, so use it
1014 // instead of our code if available
1016 // NB: 3rd parameter is bFailIfExists i.e. the inverse of overwrite
1017 return ::CopyFile(file1
, file2
, !overwrite
) != 0;
1021 // get permissions of file1
1022 if ( wxStat(OS_FILENAME(file1
), &fbuf
) != 0 )
1024 // the file probably doesn't exist or we haven't the rights to read
1026 wxLogSysError(_("Impossible to get permissions for file '%s'"),
1031 // open file1 for reading
1032 wxFile
fileIn(file1
, wxFile::read
);
1033 if ( !fileIn
.IsOpened() )
1036 // remove file2, if it exists. This is needed for creating
1037 // file2 with the correct permissions in the next step
1038 if ( wxFileExists(file2
) && (!overwrite
|| !wxRemoveFile(file2
)))
1040 wxLogSysError(_("Impossible to overwrite the file '%s'"),
1046 // reset the umask as we want to create the file with exactly the same
1047 // permissions as the original one
1048 mode_t oldUmask
= umask( 0 );
1051 // create file2 with the same permissions than file1 and open it for
1054 if ( !fileOut
.Create(file2
, overwrite
, fbuf
.st_mode
& 0777) )
1058 /// restore the old umask
1062 // copy contents of file1 to file2
1067 count
= fileIn
.Read(buf
, WXSIZEOF(buf
));
1068 if ( fileIn
.Error() )
1075 if ( fileOut
.Write(buf
, count
) < count
)
1079 // we can expect fileIn to be closed successfully, but we should ensure
1080 // that fileOut was closed as some write errors (disk full) might not be
1081 // detected before doing this
1082 if ( !fileIn
.Close() || !fileOut
.Close() )
1085 #if !defined(__VISAGECPP__) && !defined(__WXMAC__) || defined(__UNIX__)
1086 // no chmod in VA. Should be some permission API for HPFS386 partitions
1088 if ( chmod(OS_FILENAME(file2
), fbuf
.st_mode
) != 0 )
1090 wxLogSysError(_("Impossible to set permissions for the file '%s'"),
1094 #endif // OS/2 || Mac
1097 #endif // __WXMSW__ && __WIN32__
1101 wxRenameFile (const wxString
& file1
, const wxString
& file2
)
1103 // Normal system call
1104 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(__GNUWIN32__)
1122 int res
= wxRemove(file
);
1124 int res
= unlink(OS_FILENAME(file
));
1130 bool wxMkdir(const wxString
& dir
, int perm
)
1132 #if defined(__WXMAC__) && !defined(__UNIX__)
1133 return (mkdir( dir
, 0 ) == 0);
1135 const wxChar
*dirname
= dir
.c_str();
1137 // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
1138 // for the GNU compiler
1139 #if (!(defined(__WXMSW__) || defined(__WXPM__))) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WXWINE__) || defined(__WXMICROWIN__)
1140 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1141 #elif defined(__WXPM__)
1142 if (::DosCreateDir((PSZ
)dirname
, NULL
) != 0) // enhance for EAB's??
1143 #else // !MSW and !OS/2 VAC++
1145 if ( wxMkDir(wxFNSTRINGCAST
wxFNCONV(dirname
)) != 0 )
1148 wxLogSysError(_("Directory '%s' couldn't be created"), dirname
);
1157 bool wxRmdir(const wxString
& dir
, int WXUNUSED(flags
))
1160 return FALSE
; //to be changed since rmdir exists in VMS7.x
1161 #elif defined(__WXPM__)
1162 return (::DosDeleteDir((PSZ
)dir
.c_str()) == 0);
1166 return FALSE
; // What to do?
1168 return (wxRmDir(OS_FILENAME(dir
)) == 0);
1174 // does the path exists? (may have or not '/' or '\\' at the end)
1175 bool wxPathExists(const wxChar
*pszPathName
)
1177 wxString
strPath(pszPathName
);
1179 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
1180 // so remove all trailing backslashes from the path - but don't do this for
1181 // the pathes "d:\" (which are different from "d:") nor for just "\"
1182 while ( wxEndsWithPathSeparator(strPath
) )
1184 size_t len
= strPath
.length();
1185 if ( len
== 1 || (len
== 3 && strPath
[len
- 2] == _T(':')) )
1188 strPath
.Truncate(len
- 1);
1190 #endif // __WINDOWS__
1193 // Stat can't cope with network paths
1194 DWORD ret
= GetFileAttributes(strPath
.c_str());
1195 DWORD isDir
= (ret
& FILE_ATTRIBUTE_DIRECTORY
);
1196 return ((ret
!= 0xffffffff) && (isDir
!= 0));
1200 #ifndef __VISAGECPP__
1201 return wxStat(wxFNSTRINGCAST strPath
.fn_str(), &st
) == 0 &&
1202 ((st
.st_mode
& S_IFMT
) == S_IFDIR
);
1204 // S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
1205 return wxStat(wxFNSTRINGCAST strPath
.fn_str(), &st
) == 0 &&
1206 (st
.st_mode
== S_IFDIR
);
1212 // Get a temporary filename, opening and closing the file.
1213 wxChar
*wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
)
1215 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1219 ::GetTempFileName(0, WXSTRINGCAST prefix
, 0, tmp
);
1221 wxChar tmp
[MAX_PATH
];
1222 wxChar tmpPath
[MAX_PATH
];
1223 ::GetTempPath(MAX_PATH
, tmpPath
);
1224 ::GetTempFileName(tmpPath
, WXSTRINGCAST prefix
, 0, tmp
);
1226 if (buf
) wxStrcpy(buf
, tmp
);
1227 else buf
= copystring(tmp
);
1231 static short last_temp
= 0; // cache last to speed things a bit
1232 // At most 1000 temp files to a process! We use a ring count.
1233 wxChar tmp
[100]; // FIXME static buffer
1235 for (short suffix
= last_temp
+ 1; suffix
!= last_temp
; ++suffix
%= 1000)
1237 wxSprintf (tmp
, wxT("/tmp/%s%d.%03x"), WXSTRINGCAST prefix
, (int) getpid (), (int) suffix
);
1238 if (!wxFileExists( tmp
))
1240 // Touch the file to create it (reserve name)
1241 FILE *fd
= fopen (wxFNCONV(tmp
), "w");
1246 wxStrcpy( buf
, tmp
);
1248 buf
= copystring( tmp
);
1252 wxLogError( _("wxWindows: error finding temporary file name.\n") );
1253 if (buf
) buf
[0] = 0;
1254 return (wxChar
*) NULL
;
1258 bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
)
1261 if (wxGetTempFileName(prefix
, buf2
) != (wxChar
*) NULL
)
1270 // Get first file name matching given wild card.
1274 // Get first file name matching given wild card.
1275 // Flags are reserved for future use.
1277 #if !defined( __VMS__ ) || ( __VMS_VER >= 70000000 )
1278 static DIR *gs_dirStream
= (DIR *) NULL
;
1279 static wxString gs_strFileSpec
;
1280 static int gs_findFlags
= 0;
1283 wxString
wxFindFirstFile(const wxChar
*spec
, int flags
)
1287 wxChar
*specvms
= NULL
;
1290 #if !defined( __VMS__ ) || ( __VMS_VER >= 70000000 )
1292 closedir(gs_dirStream
); // edz 941103: better housekeping
1294 gs_findFlags
= flags
;
1296 gs_strFileSpec
= spec
;
1298 // Find path only so we can concatenate
1299 // found file onto path
1300 wxString
path(wxPathOnly(gs_strFileSpec
));
1302 // special case: path is really "/"
1303 if ( !path
&& gs_strFileSpec
[0u] == wxT('/') )
1306 wxStrcpy( specvms
, wxT( "[000000]" ) );
1307 gs_strFileSpec
= specvms
;
1308 wxString
path_vms(wxPathOnly(gs_strFileSpec
));
1314 // path is empty => Local directory
1318 wxStrcpy( specvms
, wxT( "[]" ) );
1319 gs_strFileSpec
= specvms
;
1320 wxString
path_vms1(wxPathOnly(gs_strFileSpec
));
1327 gs_dirStream
= opendir(path
.fn_str());
1328 if ( !gs_dirStream
)
1330 wxLogSysError(_("Can not enumerate files in directory '%s'"),
1335 result
= wxFindNextFile();
1337 #endif // !VMS6.x or earlier
1342 wxString
wxFindNextFile()
1346 #if !defined( __VMS__ ) || ( __VMS_VER >= 70000000 )
1347 wxCHECK_MSG( gs_dirStream
, result
, wxT("must call wxFindFirstFile first") );
1349 // Find path only so we can concatenate
1350 // found file onto path
1351 wxString
path(wxPathOnly(gs_strFileSpec
));
1352 wxString
name(wxFileNameFromPath(gs_strFileSpec
));
1354 /* MATTHEW: special case: path is really "/" */
1355 if ( !path
&& gs_strFileSpec
[0u] == wxT('/'))
1359 struct dirent
*nextDir
;
1360 for ( nextDir
= readdir(gs_dirStream
);
1362 nextDir
= readdir(gs_dirStream
) )
1364 if (wxMatchWild(name
, nextDir
->d_name
, FALSE
) && // RR: added FALSE to find hidden files
1365 strcmp(nextDir
->d_name
, ".") &&
1366 strcmp(nextDir
->d_name
, "..") )
1369 if ( !path
.IsEmpty() )
1372 if ( path
!= wxT('/') )
1376 result
+= nextDir
->d_name
;
1378 // Only return "." and ".." when they match
1380 if ( (strcmp(nextDir
->d_name
, ".") == 0) ||
1381 (strcmp(nextDir
->d_name
, "..") == 0))
1383 if ( (gs_findFlags
& wxDIR
) != 0 )
1389 isdir
= wxDirExists(result
);
1391 // and only return directories when flags & wxDIR
1392 if ( !gs_findFlags
||
1393 ((gs_findFlags
& wxDIR
) && isdir
) ||
1394 ((gs_findFlags
& wxFILE
) && !isdir
) )
1401 result
.Empty(); // not found
1403 closedir(gs_dirStream
);
1404 gs_dirStream
= (DIR *) NULL
;
1405 #endif // !VMS6.2 or earlier
1410 #elif defined(__WXMAC__)
1412 struct MacDirectoryIterator
1420 static int g_iter_flags
;
1422 static MacDirectoryIterator g_iter
;
1424 wxString
wxFindFirstFile(const wxChar
*spec
, int flags
)
1428 g_iter_flags
= flags
; /* MATTHEW: [5] Remember flags */
1430 // Find path only so we can concatenate found file onto path
1431 wxString
path(wxPathOnly(spec
));
1432 if ( !path
.IsEmpty() )
1433 result
<< path
<< wxT('\\');
1437 wxMacFilename2FSSpec( result
, &fsspec
) ;
1438 g_iter
.m_CPB
.hFileInfo
.ioVRefNum
= fsspec
.vRefNum
;
1439 g_iter
.m_CPB
.hFileInfo
.ioNamePtr
= g_iter
.m_name
;
1440 g_iter
.m_index
= 0 ;
1443 FSpGetDirectoryID( &fsspec
, &g_iter
.m_dirId
, &isDir
) ;
1445 return wxEmptyString
;
1447 return wxFindNextFile( ) ;
1450 wxString
wxFindNextFile()
1456 while ( err
== noErr
)
1459 g_iter
.m_CPB
.dirInfo
.ioFDirIndex
= g_iter
.m_index
;
1460 g_iter
.m_CPB
.dirInfo
.ioDrDirID
= g_iter
.m_dirId
; /* we need to do this every time */
1461 err
= PBGetCatInfoSync((CInfoPBPtr
)&g_iter
.m_CPB
);
1465 if ( ( g_iter
.m_CPB
.dirInfo
.ioFlAttrib
& ioDirMask
) != 0 && (g_iter_flags
& wxDIR
) ) // we have a directory
1468 if ( ( g_iter
.m_CPB
.dirInfo
.ioFlAttrib
& ioDirMask
) == 0 && !(g_iter_flags
& wxFILE
) )
1476 return wxEmptyString
;
1480 FSMakeFSSpecCompat(g_iter
.m_CPB
.hFileInfo
.ioVRefNum
,
1485 return wxMacFSSpec2MacFilename( &spec
) ;
1488 #elif defined(__WXMSW__)
1491 static HANDLE gs_hFileStruct
= INVALID_HANDLE_VALUE
;
1492 static WIN32_FIND_DATA gs_findDataStruct
;
1495 static struct ffblk gs_findDataStruct
;
1497 static struct _find_t gs_findDataStruct
;
1501 static wxString gs_strFileSpec
;
1502 static int gs_findFlags
= 0;
1504 wxString
wxFindFirstFile(const wxChar
*spec
, int flags
)
1508 gs_strFileSpec
= spec
;
1509 gs_findFlags
= flags
; /* MATTHEW: [5] Remember flags */
1511 // Find path only so we can concatenate found file onto path
1512 wxString
path(wxPathOnly(gs_strFileSpec
));
1513 if ( !path
.IsEmpty() )
1514 result
<< path
<< wxT('\\');
1517 if ( gs_hFileStruct
!= INVALID_HANDLE_VALUE
)
1518 FindClose(gs_hFileStruct
);
1520 gs_hFileStruct
= ::FindFirstFile(WXSTRINGCAST spec
, &gs_findDataStruct
);
1522 if ( gs_hFileStruct
== INVALID_HANDLE_VALUE
)
1529 bool isdir
= !!(gs_findDataStruct
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
);
1531 if (isdir
&& !(flags
& wxDIR
))
1532 return wxFindNextFile();
1533 else if (!isdir
&& flags
&& !(flags
& wxFILE
))
1534 return wxFindNextFile();
1536 result
+= gs_findDataStruct
.cFileName
;
1540 int flag
= _A_NORMAL
;
1545 if (findfirst(WXSTRINGCAST spec
, &gs_findDataStruct
, flag
) == 0)
1547 if (_dos_findfirst(WXSTRINGCAST spec
, flag
, &gs_findDataStruct
) == 0)
1553 attrib
= gs_findDataStruct
.ff_attrib
;
1555 attrib
= gs_findDataStruct
.attrib
;
1558 if (attrib
& _A_SUBDIR
) {
1559 if (!(gs_findFlags
& wxDIR
))
1560 return wxFindNextFile();
1561 } else if (gs_findFlags
&& !(gs_findFlags
& wxFILE
))
1562 return wxFindNextFile();
1566 gs_findDataStruct
.ff_name
1568 gs_findDataStruct
.name
1578 wxString
wxFindNextFile()
1582 // Find path only so we can concatenate found file onto path
1583 wxString
path(wxPathOnly(gs_strFileSpec
));
1588 if (gs_hFileStruct
== INVALID_HANDLE_VALUE
)
1591 bool success
= (FindNextFile(gs_hFileStruct
, &gs_findDataStruct
) != 0);
1594 FindClose(gs_hFileStruct
);
1595 gs_hFileStruct
= INVALID_HANDLE_VALUE
;
1599 bool isdir
= !!(gs_findDataStruct
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
);
1601 if (isdir
&& !(gs_findFlags
& wxDIR
))
1603 else if (!isdir
&& gs_findFlags
&& !(gs_findFlags
& wxFILE
))
1606 if ( !path
.IsEmpty() )
1607 result
<< path
<< wxT('\\');
1608 result
<< gs_findDataStruct
.cFileName
;
1615 if (findnext(&gs_findDataStruct
) == 0)
1617 if (_dos_findnext(&gs_findDataStruct
) == 0)
1620 /* MATTHEW: [5] Check directory flag */
1624 attrib
= gs_findDataStruct
.ff_attrib
;
1626 attrib
= gs_findDataStruct
.attrib
;
1629 if (attrib
& _A_SUBDIR
) {
1630 if (!(gs_findFlags
& wxDIR
))
1632 } else if (gs_findFlags
&& !(gs_findFlags
& wxFILE
))
1638 gs_findDataStruct
.ff_name
1640 gs_findDataStruct
.name
1649 #elif defined(__WXPM__)
1651 wxString
wxFindFirstFile(const wxChar
*spec
, int flags
)
1656 // TODO: figure something out here for OS/2
1657 gs_strFileSpec = spec;
1658 gs_findFlags = flags;
1660 // Find path only so we can concatenate found file onto path
1661 wxString path(wxPathOnly(gs_strFileSpec));
1662 if ( !path.IsEmpty() )
1663 result << path << wxT('\\');
1665 int flag = _A_NORMAL;
1669 if (_dos_findfirst(WXSTRINGCAST spec, flag, &gs_findDataStruct) == 0)
1672 attrib = gs_findDataStruct.attrib;
1674 if (attrib & _A_SUBDIR) {
1675 if (!(gs_findFlags & wxDIR))
1676 return wxFindNextFile();
1677 } else if (gs_findFlags && !(gs_findFlags & wxFILE))
1678 return wxFindNextFile();
1680 result += gs_findDataStruct.name;
1686 wxString
wxFindNextFile()
1693 #endif // Unix/Windows/OS/2
1695 // Get current working directory.
1696 // If buf is NULL, allocates space using new, else
1698 wxChar
*wxGetWorkingDirectory(wxChar
*buf
, int sz
)
1701 buf
= new wxChar
[sz
+1];
1703 char *cbuf
= new char[sz
+1];
1705 if (_getcwd(cbuf
, sz
) == NULL
) {
1706 #elif defined(__WXMAC__) && !defined(__UNIX__)
1709 SFSaveDisk
= 0x214, CurDirStore
= 0x398
1713 FSMakeFSSpec( - *(short *) SFSaveDisk
, *(long *) CurDirStore
, NULL
, &cwdSpec
) ;
1714 wxString res
= wxMacFSSpec2UnixFilename( &cwdSpec
) ;
1715 strcpy( buf
, res
) ;
1718 if (getcwd(cbuf
, sz
) == NULL
) {
1723 if (_getcwd(buf
, sz
) == NULL
) {
1724 #elif defined(__WXMAC__) && !defined(__UNIX__)
1729 pb
.ioNamePtr
= (StringPtr
) &fileName
;
1731 pb
.ioRefNum
= LMGetCurApRefNum();
1733 error
= PBGetFCBInfoSync(&pb
);
1734 if ( error
== noErr
)
1736 cwdSpec
.vRefNum
= pb
.ioFCBVRefNum
;
1737 cwdSpec
.parID
= pb
.ioFCBParID
;
1738 cwdSpec
.name
[0] = 0 ;
1739 wxString res
= wxMacFSSpec2MacFilename( &cwdSpec
) ;
1741 strcpy( buf
, res
) ;
1742 buf
[res
.length()-1]=0 ;
1747 this version will not always give back the application directory on mac
1750 SFSaveDisk = 0x214, CurDirStore = 0x398
1754 FSMakeFSSpec( - *(short *) SFSaveDisk , *(long *) CurDirStore , NULL , &cwdSpec ) ;
1755 wxString res = wxMacFSSpec2UnixFilename( &cwdSpec ) ;
1756 strcpy( buf , res ) ;
1759 #elif(__VISAGECPP__)
1761 rc
= ::DosQueryCurrentDir( 0 // current drive
1767 if (getcwd(buf
, sz
) == NULL
) {
1775 wxConvFile
.MB2WC(buf
, cbuf
, sz
);
1784 static const size_t maxPathLen
= 1024;
1787 wxGetWorkingDirectory(str
.GetWriteBuf(maxPathLen
), maxPathLen
);
1788 str
.UngetWriteBuf();
1793 bool wxSetWorkingDirectory(const wxString
& d
)
1795 #if defined( __UNIX__ ) || defined( __WXMAC__ )
1796 return (chdir(wxFNSTRINGCAST d
.fn_str()) == 0);
1797 #elif defined(__WXPM__)
1798 return (::DosSetCurrentDir((PSZ
)d
.c_str()) == 0);
1799 #elif defined(__WINDOWS__)
1802 return (bool)(SetCurrentDirectory(d
) != 0);
1804 // Must change drive, too.
1805 bool isDriveSpec
= ((strlen(d
) > 1) && (d
[1] == ':'));
1808 wxChar firstChar
= d
[0];
1812 firstChar
= firstChar
- 32;
1814 // To a drive number
1815 unsigned int driveNo
= firstChar
- 64;
1818 unsigned int noDrives
;
1819 _dos_setdrive(driveNo
, &noDrives
);
1822 bool success
= (chdir(WXSTRINGCAST d
) == 0);
1830 // Get the OS directory if appropriate (such as the Windows directory).
1831 // On non-Windows platform, probably just return the empty string.
1832 wxString
wxGetOSDirectory()
1834 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1836 GetWindowsDirectory(buf
, 256);
1837 return wxString(buf
);
1839 return wxEmptyString
;
1843 bool wxEndsWithPathSeparator(const wxChar
*pszFileName
)
1845 size_t len
= wxStrlen(pszFileName
);
1849 return wxIsPathSeparator(pszFileName
[len
- 1]);
1852 // find a file in a list of directories, returns false if not found
1853 bool wxFindFileInPath(wxString
*pStr
, const wxChar
*pszPath
, const wxChar
*pszFile
)
1855 // we assume that it's not empty
1856 wxCHECK_MSG( !wxIsEmpty(pszFile
), FALSE
,
1857 _T("empty file name in wxFindFileInPath"));
1859 // skip path separator in the beginning of the file name if present
1860 if ( wxIsPathSeparator(*pszFile
) )
1863 // copy the path (strtok will modify it)
1864 wxChar
*szPath
= new wxChar
[wxStrlen(pszPath
) + 1];
1865 wxStrcpy(szPath
, pszPath
);
1868 wxChar
*pc
, *save_ptr
;
1869 for ( pc
= wxStrtok(szPath
, wxPATH_SEP
, &save_ptr
);
1871 pc
= wxStrtok((wxChar
*) NULL
, wxPATH_SEP
, &save_ptr
) )
1873 // search for the file in this directory
1875 if ( !wxEndsWithPathSeparator(pc
) )
1876 strFile
+= wxFILE_SEP_PATH
;
1879 if ( FileExists(strFile
) ) {
1885 // suppress warning about unused variable save_ptr when wxStrtok() is a
1886 // macro which throws away its third argument
1891 return pc
!= NULL
; // if true => we breaked from the loop
1894 void WXDLLEXPORT
wxSplitPath(const wxChar
*pszFileName
,
1899 // it can be empty, but it shouldn't be NULL
1900 wxCHECK_RET( pszFileName
, wxT("NULL file name in wxSplitPath") );
1902 wxFileName::SplitPath(pszFileName
, pstrPath
, pstrName
, pstrExt
);
1905 time_t WXDLLEXPORT
wxFileModificationTime(const wxString
& filename
)
1909 wxStat(filename
.fn_str(), &buf
);
1910 return buf
.st_mtime
;
1914 //------------------------------------------------------------------------
1915 // wild character routines
1916 //------------------------------------------------------------------------
1918 bool wxIsWild( const wxString
& pattern
)
1920 wxString tmp
= pattern
;
1921 wxChar
*pat
= WXSTRINGCAST(tmp
);
1924 case wxT('?'): case wxT('*'): case wxT('['): case wxT('{'):
1934 bool wxMatchWild( const wxString
& pat
, const wxString
& text
, bool dot_special
)
1936 #if defined(HAVE_FNMATCH_H)
1938 // this probably won't work well for multibyte chars in Unicode mode?
1940 return fnmatch(pat
.fn_str(), text
.fn_str(), FNM_PERIOD
) == 0;
1942 return fnmatch(pat
.fn_str(), text
.fn_str(), 0) == 0;
1946 // #pragma error Broken implementation of wxMatchWild() -- needs fixing!
1949 * WARNING: this code is broken!
1952 wxString tmp1
= pat
;
1953 wxChar
*pattern
= WXSTRINGCAST(tmp1
);
1954 wxString tmp2
= text
;
1955 wxChar
*str
= WXSTRINGCAST(tmp2
);
1958 bool done
= FALSE
, ret_code
, ok
;
1959 // Below is for vi fans
1960 const wxChar OB
= wxT('{'), CB
= wxT('}');
1962 // dot_special means '.' only matches '.'
1963 if (dot_special
&& *str
== wxT('.') && *pattern
!= *str
)
1966 while ((*pattern
!= wxT('\0')) && (!done
)
1967 && (((*str
==wxT('\0'))&&((*pattern
==OB
)||(*pattern
==wxT('*'))))||(*str
!=wxT('\0')))) {
1971 if (*pattern
!= wxT('\0'))
1977 while ((*str
!=wxT('\0'))
1978 && ((ret_code
=wxMatchWild(pattern
, str
++, FALSE
)) == 0))
1981 while (*str
!= wxT('\0'))
1983 while (*pattern
!= wxT('\0'))
1990 if ((*pattern
== wxT('\0')) || (*pattern
== wxT(']'))) {
1994 if (*pattern
== wxT('\\')) {
1996 if (*pattern
== wxT('\0')) {
2001 if (*(pattern
+ 1) == wxT('-')) {
2004 if (*pattern
== wxT(']')) {
2008 if (*pattern
== wxT('\\')) {
2010 if (*pattern
== wxT('\0')) {
2015 if ((*str
< c
) || (*str
> *pattern
)) {
2019 } else if (*pattern
!= *str
) {
2024 while ((*pattern
!= wxT(']')) && (*pattern
!= wxT('\0'))) {
2025 if ((*pattern
== wxT('\\')) && (*(pattern
+ 1) != wxT('\0')))
2029 if (*pattern
!= wxT('\0')) {
2039 while ((*pattern
!= CB
) && (*pattern
!= wxT('\0'))) {
2042 while (ok
&& (*cp
!= wxT('\0')) && (*pattern
!= wxT('\0'))
2043 && (*pattern
!= wxT(',')) && (*pattern
!= CB
)) {
2044 if (*pattern
== wxT('\\'))
2046 ok
= (*pattern
++ == *cp
++);
2048 if (*pattern
== wxT('\0')) {
2054 while ((*pattern
!= CB
) && (*pattern
!= wxT('\0'))) {
2055 if (*++pattern
== wxT('\\')) {
2056 if (*++pattern
== CB
)
2061 while (*pattern
!=CB
&& *pattern
!=wxT(',') && *pattern
!=wxT('\0')) {
2062 if (*++pattern
== wxT('\\')) {
2063 if (*++pattern
== CB
|| *pattern
== wxT(','))
2068 if (*pattern
!= wxT('\0'))
2073 if (*str
== *pattern
) {
2080 while (*pattern
== wxT('*'))
2082 return ((*str
== wxT('\0')) && (*pattern
== wxT('\0')));
2088 #pragma warning(default:4706) // assignment within conditional expression