1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/filefn.cpp
3 // Purpose: File- and directory-related functions
4 // Author: Julian Smart
8 // Copyright: (c) 1998 Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #include "wx/filefn.h"
36 #include "wx/dynarray.h"
38 #include "wx/filename.h"
41 #include "wx/tokenzr.h"
43 // there are just too many of those...
45 #pragma warning(disable:4706) // assignment within conditional expression
52 #if !wxONLY_WATCOM_EARLIER_THAN(1,4)
53 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
58 #if defined(__WXMAC__)
59 #include "wx/osx/private.h" // includes mac headers
63 #include "wx/msw/private.h"
64 #include "wx/msw/missing.h"
65 #include "wx/msw/mslu.h"
67 // sys/cygwin.h is needed for cygwin_conv_to_full_win32_path()
68 // and for cygwin_conv_path()
70 // note that it must be included after <windows.h>
73 #include <sys/cygwin.h>
74 #include <cygwin/version.h>
76 #endif // __GNUWIN32__
78 // io.h is needed for _get_osfhandle()
79 // Already included by filefn.h for many Windows compilers
80 #if defined __CYGWIN__
89 // TODO: Borland probably has _wgetcwd as well?
94 // ----------------------------------------------------------------------------
96 // ----------------------------------------------------------------------------
99 #define _MAXPATHLEN 1024
102 // ----------------------------------------------------------------------------
104 // ----------------------------------------------------------------------------
106 #if WXWIN_COMPATIBILITY_2_8
107 static wxChar wxFileFunctionsBuffer
[4*_MAXPATHLEN
];
110 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
112 // VisualAge C++ V4.0 cannot have any external linkage const decs
113 // in headers included by more than one primary source
115 const int wxInvalidOffset
= -1;
118 // ============================================================================
120 // ============================================================================
122 // ----------------------------------------------------------------------------
123 // wrappers around standard POSIX functions
124 // ----------------------------------------------------------------------------
126 #if wxUSE_UNICODE && defined __BORLANDC__ \
127 && __BORLANDC__ >= 0x550 && __BORLANDC__ <= 0x551
129 // BCC 5.5 and 5.5.1 have a bug in _wopen where files are created read only
130 // regardless of the mode parameter. This hack works around the problem by
131 // setting the mode with _wchmod.
133 int wxCRT_OpenW(const wchar_t *pathname
, int flags
, mode_t mode
)
137 // we only want to fix the mode when the file is actually created, so
138 // when creating first try doing it O_EXCL so we can tell if the file
139 // was already there.
140 if ((flags
& O_CREAT
) && !(flags
& O_EXCL
) && (mode
& wxS_IWUSR
) != 0)
143 int fd
= _wopen(pathname
, flags
| moreflags
, mode
);
145 // the file was actually created and needs fixing
146 if (fd
!= -1 && (flags
& O_CREAT
) != 0 && (mode
& wxS_IWUSR
) != 0)
149 _wchmod(pathname
, mode
);
150 fd
= _wopen(pathname
, flags
& ~(O_EXCL
| O_CREAT
));
152 // the open failed, but it may have been because the added O_EXCL stopped
153 // the opening of an existing file, so try again without.
154 else if (fd
== -1 && moreflags
!= 0)
156 fd
= _wopen(pathname
, flags
& ~O_CREAT
);
164 // ----------------------------------------------------------------------------
166 // ----------------------------------------------------------------------------
168 bool wxPathList::Add(const wxString
& path
)
170 // add a path separator to force wxFileName to interpret it always as a directory
171 // (i.e. if we are called with '/home/user' we want to consider it a folder and
172 // not, as wxFileName would consider, a filename).
173 wxFileName
fn(path
+ wxFileName::GetPathSeparator());
175 // add only normalized relative/absolute paths
176 // NB: we won't do wxPATH_NORM_DOTS in order to avoid problems when trying to
177 // normalize paths which starts with ".." (which can be normalized only if
178 // we use also wxPATH_NORM_ABSOLUTE - which we don't want to use).
179 if (!fn
.Normalize(wxPATH_NORM_TILDE
|wxPATH_NORM_LONG
|wxPATH_NORM_ENV_VARS
))
182 wxString toadd
= fn
.GetPath();
183 if (Index(toadd
) == wxNOT_FOUND
)
184 wxArrayString::Add(toadd
); // do not add duplicates
189 void wxPathList::Add(const wxArrayString
&arr
)
191 for (size_t j
=0; j
< arr
.GetCount(); j
++)
195 // Add paths e.g. from the PATH environment variable
196 void wxPathList::AddEnvList (const wxString
& WXUNUSED_IN_WINCE(envVariable
))
198 // No environment variables on WinCE
201 // The space has been removed from the tokenizers, otherwise a
202 // path such as "C:\Program Files" would be split into 2 paths:
203 // "C:\Program" and "Files"; this is true for both Windows and Unix.
205 static const wxChar PATH_TOKS
[] =
206 #if defined(__WINDOWS__) || defined(__OS2__)
207 wxT(";"); // Don't separate with colon in DOS (used for drive)
213 if ( wxGetEnv(envVariable
, &val
) )
215 // split into an array of string the value of the env var
216 wxArrayString arr
= wxStringTokenize(val
, PATH_TOKS
);
217 WX_APPEND_ARRAY(*this, arr
);
219 #endif // !__WXWINCE__
222 // Given a full filename (with path), ensure that that file can
223 // be accessed again USING FILENAME ONLY by adding the path
224 // to the list if not already there.
225 bool wxPathList::EnsureFileAccessible (const wxString
& path
)
227 return Add(wxPathOnly(path
));
230 #if WXWIN_COMPATIBILITY_2_6
231 bool wxPathList::Member (const wxString
& path
) const
233 return Index(path
) != wxNOT_FOUND
;
237 wxString
wxPathList::FindValidPath (const wxString
& file
) const
239 // normalize the given string as it could be a path + a filename
240 // and not only a filename
244 // NB: normalize without making absolute otherwise calling this function with
245 // e.g. "b/c.txt" would result in removing the directory 'b' and the for loop
246 // below would only add to the paths of this list the 'c.txt' part when doing
247 // the existence checks...
248 // NB: we don't use wxPATH_NORM_DOTS here, too (see wxPathList::Add for more info)
249 if (!fn
.Normalize(wxPATH_NORM_TILDE
|wxPATH_NORM_LONG
|wxPATH_NORM_ENV_VARS
))
250 return wxEmptyString
;
252 wxASSERT_MSG(!fn
.IsDir(), wxT("Cannot search for directories; only for files"));
254 strend
= fn
.GetFullName(); // search for the file name and ignore the path part
256 strend
= fn
.GetFullPath();
258 for (size_t i
=0; i
<GetCount(); i
++)
260 wxString strstart
= Item(i
);
261 if (!strstart
.IsEmpty() && strstart
.Last() != wxFileName::GetPathSeparator())
262 strstart
+= wxFileName::GetPathSeparator();
264 if (wxFileExists(strstart
+ strend
))
265 return strstart
+ strend
; // Found!
268 return wxEmptyString
; // Not found
271 wxString
wxPathList::FindAbsoluteValidPath (const wxString
& file
) const
273 wxString f
= FindValidPath(file
);
274 if ( f
.empty() || wxIsAbsolutePath(f
) )
277 wxString buf
= ::wxGetCwd();
279 if ( !wxEndsWithPathSeparator(buf
) )
281 buf
+= wxFILE_SEP_PATH
;
288 // ----------------------------------------------------------------------------
289 // miscellaneous global functions
290 // ----------------------------------------------------------------------------
292 #if WXWIN_COMPATIBILITY_2_8
293 static inline wxChar
* MYcopystring(const wxString
& s
)
295 wxChar
* copy
= new wxChar
[s
.length() + 1];
296 return wxStrcpy(copy
, s
.c_str());
299 template<typename CharType
>
300 static inline CharType
* MYcopystring(const CharType
* s
)
302 CharType
* copy
= new CharType
[wxStrlen(s
) + 1];
303 return wxStrcpy(copy
, s
);
309 wxFileExists (const wxString
& filename
)
311 return wxFileName::FileExists(filename
);
315 wxIsAbsolutePath (const wxString
& filename
)
317 if (!filename
.empty())
319 // Unix like or Windows
320 if (filename
[0] == wxT('/'))
323 if ((filename
[0] == wxT('[') && filename
[1] != wxT('.')))
326 #if defined(__WINDOWS__) || defined(__OS2__)
328 if (filename
[0] == wxT('\\') || (wxIsalpha (filename
[0]) && filename
[1] == wxT(':')))
335 #if WXWIN_COMPATIBILITY_2_8
337 * Strip off any extension (dot something) from end of file,
338 * IF one exists. Inserts zero into buffer.
343 static void wxDoStripExtension(T
*buffer
)
345 int len
= wxStrlen(buffer
);
349 if (buffer
[i
] == wxT('.'))
358 void wxStripExtension(char *buffer
) { wxDoStripExtension(buffer
); }
359 void wxStripExtension(wchar_t *buffer
) { wxDoStripExtension(buffer
); }
361 void wxStripExtension(wxString
& buffer
)
363 buffer
= wxFileName::StripExtension(buffer
);
366 // Destructive removal of /./ and /../ stuff
367 template<typename CharType
>
368 static CharType
*wxDoRealPath (CharType
*path
)
370 static const CharType SEP
= wxFILE_SEP_PATH
;
372 wxUnix2DosFilename(path
);
374 if (path
[0] && path
[1]) {
375 /* MATTHEW: special case "/./x" */
377 if (path
[2] == SEP
&& path
[1] == wxT('.'))
385 if (p
[1] == wxT('.') && p
[2] == wxT('.') && (p
[3] == SEP
|| p
[3] == wxT('\0')))
388 for (q
= p
- 1; q
>= path
&& *q
!= SEP
; q
--)
393 if (q
[0] == SEP
&& (q
[1] != wxT('.') || q
[2] != wxT('.') || q
[3] != SEP
)
394 && (q
- 1 <= path
|| q
[-1] != SEP
))
397 if (path
[0] == wxT('\0'))
402 #if defined(__WINDOWS__) || defined(__OS2__)
403 /* Check that path[2] is NULL! */
404 else if (path
[1] == wxT(':') && !path
[2])
413 else if (p
[1] == wxT('.') && (p
[2] == SEP
|| p
[2] == wxT('\0')))
421 char *wxRealPath(char *path
)
423 return wxDoRealPath(path
);
426 wchar_t *wxRealPath(wchar_t *path
)
428 return wxDoRealPath(path
);
431 wxString
wxRealPath(const wxString
& path
)
433 wxChar
*buf1
=MYcopystring(path
);
434 wxChar
*buf2
=wxRealPath(buf1
);
442 wxChar
*wxCopyAbsolutePath(const wxString
& filename
)
444 if (filename
.empty())
447 if (! wxIsAbsolutePath(wxExpandPath(wxFileFunctionsBuffer
, filename
)))
449 wxString buf
= ::wxGetCwd();
450 wxChar ch
= buf
.Last();
452 if (ch
!= wxT('\\') && ch
!= wxT('/'))
458 buf
<< wxFileFunctionsBuffer
;
459 buf
= wxRealPath( buf
);
460 return MYcopystring( buf
);
462 return MYcopystring( wxFileFunctionsBuffer
);
468 ~user/ => user's home dir
469 If the environment variable a = "foo" and b = "bar" then:
486 /* input name in name, pathname output to buf. */
488 template<typename CharType
>
489 static CharType
*wxDoExpandPath(CharType
*buf
, const wxString
& name
)
491 register CharType
*d
, *s
, *nm
;
492 CharType lnm
[_MAXPATHLEN
];
495 // Some compilers don't like this line.
496 // const CharType trimchars[] = wxT("\n \t");
498 CharType trimchars
[4];
499 trimchars
[0] = wxT('\n');
500 trimchars
[1] = wxT(' ');
501 trimchars
[2] = wxT('\t');
504 static const CharType SEP
= wxFILE_SEP_PATH
;
506 //wxUnix2DosFilename(path);
512 nm
= ::MYcopystring(static_cast<const CharType
*>(name
.c_str())); // Make a scratch copy
513 CharType
*nm_tmp
= nm
;
515 /* Skip leading whitespace and cr */
516 while (wxStrchr(trimchars
, *nm
) != NULL
)
518 /* And strip off trailing whitespace and cr */
519 s
= nm
+ (q
= wxStrlen(nm
)) - 1;
520 while (q
-- && wxStrchr(trimchars
, *s
) != NULL
)
528 q
= nm
[0] == wxT('\\') && nm
[1] == wxT('~');
531 /* Expand inline environment variables */
549 while ((*d
++ = *s
) != 0) {
551 if (*s
== wxT('\\')) {
552 if ((*(d
- 1) = *++s
)!=0) {
560 // No env variables on WinCE
563 if (*s
++ == wxT('$') && (*s
== wxT('{') || *s
== wxT(')')))
565 if (*s
++ == wxT('$'))
568 register CharType
*start
= d
;
569 register int braces
= (*s
== wxT('{') || *s
== wxT('('));
570 register CharType
*value
;
571 while ((*d
++ = *s
) != 0)
572 if (braces
? (*s
== wxT('}') || *s
== wxT(')')) : !(wxIsalnum(*s
) || *s
== wxT('_')) )
577 value
= wxGetenv(braces
? start
+ 1 : start
);
579 for ((d
= start
- 1); (*d
++ = *value
++) != 0;)
593 /* Expand ~ and ~user */
596 if (nm
[0] == wxT('~') && !q
)
599 if (nm
[1] == SEP
|| nm
[1] == 0)
601 homepath
= wxGetUserHome(wxEmptyString
);
602 if (!homepath
.empty()) {
603 s
= (CharType
*)(const CharType
*)homepath
.c_str();
608 { /* ~user/filename */
609 register CharType
*nnm
;
610 for (s
= nm
; *s
&& *s
!= SEP
; s
++)
614 int was_sep
; /* MATTHEW: Was there a separator, or NULL? */
615 was_sep
= (*s
== SEP
);
616 nnm
= *s
? s
+ 1 : s
;
618 homepath
= wxGetUserHome(wxString(nm
+ 1));
619 if (homepath
.empty())
621 if (was_sep
) /* replace only if it was there: */
628 s
= (CharType
*)(const CharType
*)homepath
.c_str();
634 if (s
&& *s
) { /* MATTHEW: s could be NULL if user '~' didn't exist */
636 while (wxT('\0') != (*d
++ = *s
++))
639 if (d
- 1 > buf
&& *(d
- 2) != SEP
)
643 while ((*d
++ = *s
++) != 0)
647 delete[] nm_tmp
; // clean up alloc
648 /* Now clean up the buffer */
649 return wxRealPath(buf
);
652 char *wxExpandPath(char *buf
, const wxString
& name
)
654 return wxDoExpandPath(buf
, name
);
657 wchar_t *wxExpandPath(wchar_t *buf
, const wxString
& name
)
659 return wxDoExpandPath(buf
, name
);
663 /* Contract Paths to be build upon an environment variable
666 example: "/usr/openwin/lib", OPENWINHOME --> ${OPENWINHOME}/lib
668 The call wxExpandPath can convert these back!
671 wxContractPath (const wxString
& filename
,
672 const wxString
& WXUNUSED_IN_WINCE(envname
),
673 const wxString
& user
)
675 static wxChar dest
[_MAXPATHLEN
];
677 if (filename
.empty())
680 wxStrcpy (dest
, filename
);
682 wxUnix2DosFilename(dest
);
685 // Handle environment
689 if (!envname
.empty() && !(val
= wxGetenv (envname
)).empty() &&
690 (tcp
= wxStrstr (dest
, val
)) != NULL
)
692 wxStrcpy (wxFileFunctionsBuffer
, tcp
+ val
.length());
695 wxStrcpy (tcp
, envname
);
696 wxStrcat (tcp
, wxT("}"));
697 wxStrcat (tcp
, wxFileFunctionsBuffer
);
701 // Handle User's home (ignore root homes!)
702 val
= wxGetUserHome (user
);
706 const size_t len
= val
.length();
710 if (wxStrncmp(dest
, val
, len
) == 0)
712 wxStrcpy(wxFileFunctionsBuffer
, wxT("~"));
714 wxStrcat(wxFileFunctionsBuffer
, user
);
715 wxStrcat(wxFileFunctionsBuffer
, dest
+ len
);
716 wxStrcpy (dest
, wxFileFunctionsBuffer
);
722 #endif // #if WXWIN_COMPATIBILITY_2_8
724 // Return just the filename, not the path (basename)
725 wxChar
*wxFileNameFromPath (wxChar
*path
)
728 wxString n
= wxFileNameFromPath(p
);
730 return path
+ p
.length() - n
.length();
733 wxString
wxFileNameFromPath (const wxString
& path
)
735 return wxFileName(path
).GetFullName();
738 // Return just the directory, or NULL if no directory
740 wxPathOnly (wxChar
*path
)
744 static wxChar buf
[_MAXPATHLEN
];
747 wxStrcpy (buf
, path
);
749 int l
= wxStrlen(path
);
752 // Search backward for a backward or forward slash
755 // Unix like or Windows
756 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
762 if (path
[i
] == wxT(']'))
771 #if defined(__WINDOWS__) || defined(__OS2__)
772 // Try Drive specifier
773 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
775 // A:junk --> A:. (since A:.\junk Not A:\junk)
785 // Return just the directory, or NULL if no directory
786 wxString
wxPathOnly (const wxString
& path
)
790 wxChar buf
[_MAXPATHLEN
];
795 int l
= path
.length();
798 // Search backward for a backward or forward slash
801 // Unix like or Windows
802 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
804 // Don't return an empty string
808 return wxString(buf
);
811 if (path
[i
] == wxT(']'))
814 return wxString(buf
);
820 #if defined(__WINDOWS__) || defined(__OS2__)
821 // Try Drive specifier
822 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
824 // A:junk --> A:. (since A:.\junk Not A:\junk)
827 return wxString(buf
);
831 return wxEmptyString
;
834 // Utility for converting delimiters in DOS filenames to UNIX style
835 // and back again - or we get nasty problems with delimiters.
836 // Also, convert to lower case, since case is significant in UNIX.
838 #if defined(__WXMAC__) && !defined(__WXOSX_IPHONE__)
840 #define kDefaultPathStyle kCFURLPOSIXPathStyle
842 wxString
wxMacFSRefToPath( const FSRef
*fsRef
, CFStringRef additionalPathComponent
)
845 fullURLRef
= CFURLCreateFromFSRef(NULL
, fsRef
);
846 if ( fullURLRef
== NULL
)
847 return wxEmptyString
;
849 if ( additionalPathComponent
)
851 CFURLRef parentURLRef
= fullURLRef
;
852 fullURLRef
= CFURLCreateCopyAppendingPathComponent(NULL
, parentURLRef
,
853 additionalPathComponent
,false);
854 CFRelease( parentURLRef
) ;
856 wxCFStringRef
cfString( CFURLCopyFileSystemPath(fullURLRef
, kDefaultPathStyle
));
857 CFRelease( fullURLRef
) ;
859 return wxCFStringRef::AsStringWithNormalizationFormC(cfString
);
862 OSStatus
wxMacPathToFSRef( const wxString
&path
, FSRef
*fsRef
)
864 OSStatus err
= noErr
;
865 CFMutableStringRef cfMutableString
= CFStringCreateMutableCopy(NULL
, 0, wxCFStringRef(path
));
866 CFStringNormalize(cfMutableString
,kCFStringNormalizationFormD
);
867 CFURLRef url
= CFURLCreateWithFileSystemPath(kCFAllocatorDefault
, cfMutableString
, kDefaultPathStyle
, false);
868 CFRelease( cfMutableString
);
871 if ( CFURLGetFSRef(url
, fsRef
) == false )
882 wxString
wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname
)
884 wxCFStringRef
cfname( CFStringCreateWithCharacters( kCFAllocatorDefault
,
887 return wxCFStringRef::AsStringWithNormalizationFormC(cfname
);
892 wxString
wxMacFSSpec2MacFilename( const FSSpec
*spec
)
895 if ( FSpMakeFSRef( spec
, &fsRef
) == noErr
)
897 return wxMacFSRefToPath( &fsRef
) ;
899 return wxEmptyString
;
902 void wxMacFilename2FSSpec( const wxString
& path
, FSSpec
*spec
)
904 OSStatus err
= noErr
;
906 wxMacPathToFSRef( path
, &fsRef
);
907 err
= FSGetCatalogInfo(&fsRef
, kFSCatInfoNone
, NULL
, NULL
, spec
, NULL
);
915 #if WXWIN_COMPATIBILITY_2_8
918 static void wxDoDos2UnixFilename(T
*s
)
927 *s
= wxTolower(*s
); // Case INDEPENDENT
933 void wxDos2UnixFilename(char *s
) { wxDoDos2UnixFilename(s
); }
934 void wxDos2UnixFilename(wchar_t *s
) { wxDoDos2UnixFilename(s
); }
938 #if defined(__WINDOWS__) || defined(__OS2__)
939 wxDoUnix2DosFilename(T
*s
)
941 wxDoUnix2DosFilename(T
*WXUNUSED(s
) )
944 // Yes, I really mean this to happen under DOS only! JACS
945 #if defined(__WINDOWS__) || defined(__OS2__)
956 void wxUnix2DosFilename(char *s
) { wxDoUnix2DosFilename(s
); }
957 void wxUnix2DosFilename(wchar_t *s
) { wxDoUnix2DosFilename(s
); }
959 #endif // #if WXWIN_COMPATIBILITY_2_8
961 // Concatenate two files to form third
963 wxConcatFiles (const wxString
& file1
, const wxString
& file2
, const wxString
& file3
)
967 wxFile
in1(file1
), in2(file2
);
968 wxTempFile
out(file3
);
970 if ( !in1
.IsOpened() || !in2
.IsOpened() || !out
.IsOpened() )
974 unsigned char buf
[1024];
976 for( int i
=0; i
<2; i
++)
978 wxFile
*in
= i
==0 ? &in1
: &in2
;
980 if ( (ofs
= in
->Read(buf
,WXSIZEOF(buf
))) == wxInvalidOffset
) return false;
982 if ( !out
.Write(buf
,ofs
) )
984 } while ( ofs
== (ssize_t
)WXSIZEOF(buf
) );
999 // helper of generic implementation of wxCopyFile()
1000 #if !(defined(__WIN32__) || defined(__OS2__)) && wxUSE_FILE
1003 wxDoCopyFile(wxFile
& fileIn
,
1004 const wxStructStat
& fbuf
,
1005 const wxString
& filenameDst
,
1008 // reset the umask as we want to create the file with exactly the same
1009 // permissions as the original one
1012 // create file2 with the same permissions than file1 and open it for
1016 if ( !fileOut
.Create(filenameDst
, overwrite
, fbuf
.st_mode
& 0777) )
1019 // copy contents of file1 to file2
1023 ssize_t count
= fileIn
.Read(buf
, WXSIZEOF(buf
));
1024 if ( count
== wxInvalidOffset
)
1031 if ( fileOut
.Write(buf
, count
) < (size_t)count
)
1035 // we can expect fileIn to be closed successfully, but we should ensure
1036 // that fileOut was closed as some write errors (disk full) might not be
1037 // detected before doing this
1038 return fileIn
.Close() && fileOut
.Close();
1041 #endif // generic implementation of wxCopyFile
1045 wxCopyFile (const wxString
& file1
, const wxString
& file2
, bool overwrite
)
1047 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
1048 // CopyFile() copies file attributes and modification time too, so use it
1049 // instead of our code if available
1051 // NB: 3rd parameter is bFailIfExists i.e. the inverse of overwrite
1052 if ( !::CopyFile(file1
.t_str(), file2
.t_str(), !overwrite
) )
1054 wxLogSysError(_("Failed to copy the file '%s' to '%s'"),
1055 file1
.c_str(), file2
.c_str());
1059 #elif defined(__OS2__)
1060 if ( ::DosCopy(file1
.c_str(), file2
.c_str(), overwrite
? DCPY_EXISTING
: 0) != 0 )
1062 #elif wxUSE_FILE // !Win32
1065 // get permissions of file1
1066 if ( wxStat( file1
, &fbuf
) != 0 )
1068 // the file probably doesn't exist or we haven't the rights to read
1070 wxLogSysError(_("Impossible to get permissions for file '%s'"),
1075 // open file1 for reading
1076 wxFile
fileIn(file1
, wxFile::read
);
1077 if ( !fileIn
.IsOpened() )
1080 // remove file2, if it exists. This is needed for creating
1081 // file2 with the correct permissions in the next step
1082 if ( wxFileExists(file2
) && (!overwrite
|| !wxRemoveFile(file2
)))
1084 wxLogSysError(_("Impossible to overwrite the file '%s'"),
1089 wxDoCopyFile(fileIn
, fbuf
, file2
, overwrite
);
1091 #if defined(__WXMAC__) || defined(__WXCOCOA__)
1092 // copy the resource fork of the file too if it's present
1093 wxString pathRsrcOut
;
1097 // suppress error messages from this block as resource forks don't have
1101 // it's not enough to check for file existence: it always does on HFS
1102 // but is empty for files without resources
1103 if ( fileRsrcIn
.Open(file1
+ wxT("/..namedfork/rsrc")) &&
1104 fileRsrcIn
.Length() > 0 )
1106 // we must be using HFS or another filesystem with resource fork
1107 // support, suppose that destination file system also is HFS[-like]
1108 pathRsrcOut
= file2
+ wxT("/..namedfork/rsrc");
1110 else // check if we have resource fork in separate file (non-HFS case)
1112 wxFileName
fnRsrc(file1
);
1113 fnRsrc
.SetName(wxT("._") + fnRsrc
.GetName());
1116 if ( fileRsrcIn
.Open( fnRsrc
.GetFullPath() ) )
1119 fnRsrc
.SetName(wxT("._") + fnRsrc
.GetName());
1121 pathRsrcOut
= fnRsrc
.GetFullPath();
1126 if ( !pathRsrcOut
.empty() )
1128 if ( !wxDoCopyFile(fileRsrcIn
, fbuf
, pathRsrcOut
, overwrite
) )
1131 #endif // wxMac || wxCocoa
1133 #if !defined(__VISAGECPP__) && !defined(__WXMAC__) || defined(__UNIX__)
1134 // no chmod in VA. Should be some permission API for HPFS386 partitions
1136 if ( chmod(file2
.fn_str(), fbuf
.st_mode
) != 0 )
1138 wxLogSysError(_("Impossible to set permissions for the file '%s'"),
1142 #endif // OS/2 || Mac
1144 #else // !Win32 && ! wxUSE_FILE
1146 // impossible to simulate with wxWidgets API
1149 wxUnusedVar(overwrite
);
1152 #endif // __WINDOWS__ && __WIN32__
1158 wxRenameFile(const wxString
& file1
, const wxString
& file2
, bool overwrite
)
1160 if ( !overwrite
&& wxFileExists(file2
) )
1164 _("Failed to rename the file '%s' to '%s' because the destination file already exists."),
1165 file1
.c_str(), file2
.c_str()
1171 #if !defined(__WXWINCE__)
1172 // Normal system call
1173 if ( wxRename (file1
, file2
) == 0 )
1178 if (wxCopyFile(file1
, file2
, overwrite
)) {
1179 wxRemoveFile(file1
);
1183 wxLogSysError(_("File '%s' couldn't be renamed '%s'"), file1
, file2
);
1187 bool wxRemoveFile(const wxString
& file
)
1189 #if defined(__VISUALC__) \
1190 || defined(__BORLANDC__) \
1191 || defined(__WATCOMC__) \
1192 || defined(__DMC__) \
1193 || defined(__GNUWIN32__)
1194 int res
= wxRemove(file
);
1195 #elif defined(__WXMAC__)
1196 int res
= unlink(file
.fn_str());
1198 int res
= unlink(file
.fn_str());
1202 wxLogSysError(_("File '%s' couldn't be removed"), file
);
1207 bool wxMkdir(const wxString
& dir
, int perm
)
1209 #if defined(__WXMAC__) && !defined(__UNIX__)
1210 if ( mkdir(dir
.fn_str(), 0) != 0 )
1212 // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
1213 // for the GNU compiler
1214 #elif (!(defined(__WINDOWS__) || defined(__OS2__) || defined(__DOS__))) || \
1215 (defined(__GNUWIN32__) && !defined(__MINGW32__)) || \
1216 defined(__WINE__) || defined(__WXMICROWIN__)
1217 const wxChar
*dirname
= dir
.c_str();
1220 if ( mkdir(wxFNCONV(dirname
)) != 0 )
1222 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1224 #elif defined(__OS2__)
1226 if (::DosCreateDir(dir
.c_str(), NULL
) != 0) // enhance for EAB's??
1227 #elif defined(__DOS__)
1228 const wxChar
*dirname
= dir
.c_str();
1229 #if defined(__WATCOMC__)
1231 if ( wxMkDir(wxFNSTRINGCAST
wxFNCONV(dirname
)) != 0 )
1232 #elif defined(__DJGPP__)
1233 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1235 #error "Unsupported DOS compiler!"
1237 #else // !MSW, !DOS and !OS/2 VAC++
1240 if ( CreateDirectory(dir
.fn_str(), NULL
) == 0 )
1242 if ( wxMkDir(dir
.fn_str()) != 0 )
1246 wxLogSysError(_("Directory '%s' couldn't be created"), dir
);
1253 bool wxRmdir(const wxString
& dir
, int WXUNUSED(flags
))
1255 #if defined(__VMS__)
1256 return false; //to be changed since rmdir exists in VMS7.x
1258 #if defined(__OS2__)
1259 if ( ::DosDeleteDir(dir
.c_str()) != 0 )
1260 #elif defined(__WXWINCE__)
1261 if ( RemoveDirectory(dir
.fn_str()) == 0 )
1263 if ( wxRmDir(dir
.fn_str()) != 0 )
1266 wxLogSysError(_("Directory '%s' couldn't be deleted"), dir
);
1274 // does the path exists? (may have or not '/' or '\\' at the end)
1275 bool wxDirExists(const wxString
& pathName
)
1277 return wxFileName::DirExists(pathName
);
1280 #if WXWIN_COMPATIBILITY_2_8
1282 // Get a temporary filename, opening and closing the file.
1283 wxChar
*wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
)
1286 if ( !wxGetTempFileName(prefix
, filename
) )
1290 wxStrcpy(buf
, filename
);
1292 buf
= MYcopystring(filename
);
1297 bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
)
1300 buf
= wxFileName::CreateTempFileName(prefix
);
1302 return !buf
.empty();
1303 #else // !wxUSE_FILE
1304 wxUnusedVar(prefix
);
1308 #endif // wxUSE_FILE/!wxUSE_FILE
1311 #endif // #if WXWIN_COMPATIBILITY_2_8
1313 // Get first file name matching given wild card.
1315 static wxDir
*gs_dir
= NULL
;
1316 static wxString gs_dirPath
;
1318 wxString
wxFindFirstFile(const wxString
& spec
, int flags
)
1320 wxFileName::SplitPath(spec
, &gs_dirPath
, NULL
, NULL
);
1321 if ( gs_dirPath
.empty() )
1322 gs_dirPath
= wxT(".");
1323 if ( !wxEndsWithPathSeparator(gs_dirPath
) )
1324 gs_dirPath
<< wxFILE_SEP_PATH
;
1326 delete gs_dir
; // can be NULL, this is ok
1327 gs_dir
= new wxDir(gs_dirPath
);
1329 if ( !gs_dir
->IsOpened() )
1331 wxLogSysError(_("Cannot enumerate files '%s'"), spec
);
1332 return wxEmptyString
;
1338 case wxDIR
: dirFlags
= wxDIR_DIRS
; break;
1339 case wxFILE
: dirFlags
= wxDIR_FILES
; break;
1340 default: dirFlags
= wxDIR_DIRS
| wxDIR_FILES
; break;
1344 gs_dir
->GetFirst(&result
, wxFileNameFromPath(spec
), dirFlags
);
1345 if ( result
.empty() )
1351 return gs_dirPath
+ result
;
1354 wxString
wxFindNextFile()
1356 wxCHECK_MSG( gs_dir
, "", "You must call wxFindFirstFile before!" );
1359 if ( !gs_dir
->GetNext(&result
) || result
.empty() )
1365 return gs_dirPath
+ result
;
1369 // Get current working directory.
1370 // If buf is NULL, allocates space using new, else copies into buf.
1371 // wxGetWorkingDirectory() is obsolete, use wxGetCwd()
1372 // wxDoGetCwd() is their common core to be moved
1373 // to wxGetCwd() once wxGetWorkingDirectory() will be removed.
1374 // Do not expose wxDoGetCwd in headers!
1376 wxChar
*wxDoGetCwd(wxChar
*buf
, int sz
)
1378 #if defined(__WXWINCE__)
1380 if(buf
&& sz
>0) buf
[0] = wxT('\0');
1385 buf
= new wxChar
[sz
+ 1];
1388 bool ok
wxDUMMY_INITIALIZE(false);
1390 // for the compilers which have Unicode version of _getcwd(), call it
1391 // directly, for the others call the ANSI version and do the translation
1394 #else // wxUSE_UNICODE
1395 bool needsANSI
= true;
1397 #if !defined(HAVE_WGETCWD) || wxUSE_UNICODE_MSLU
1398 char cbuf
[_MAXPATHLEN
];
1402 #if wxUSE_UNICODE_MSLU
1403 if ( wxGetOsVersion() != wxOS_WINDOWS_9X
)
1405 char *cbuf
= NULL
; // never really used because needsANSI will always be false
1408 ok
= _wgetcwd(buf
, sz
) != NULL
;
1414 #endif // wxUSE_UNICODE
1416 #if defined(_MSC_VER) || defined(__MINGW32__)
1417 ok
= _getcwd(cbuf
, sz
) != NULL
;
1418 #elif defined(__OS2__)
1420 ULONG ulDriveNum
= 0;
1421 ULONG ulDriveMap
= 0;
1422 rc
= ::DosQueryCurrentDisk(&ulDriveNum
, &ulDriveMap
);
1427 rc
= ::DosQueryCurrentDir( 0 // current drive
1431 cbuf
[0] = char('A' + (ulDriveNum
- 1));
1436 #else // !Win32/VC++ !Mac !OS2
1437 ok
= getcwd(cbuf
, sz
) != NULL
;
1441 // finally convert the result to Unicode if needed
1442 wxConvFile
.MB2WC(buf
, cbuf
, sz
);
1443 #endif // wxUSE_UNICODE
1448 wxLogSysError(_("Failed to get the working directory"));
1450 // VZ: the old code used to return "." on error which didn't make any
1451 // sense at all to me - empty string is a better error indicator
1452 // (NULL might be even better but I'm afraid this could lead to
1453 // problems with the old code assuming the return is never NULL)
1456 else // ok, but we might need to massage the path into the right format
1459 // VS: DJGPP is a strange mix of DOS and UNIX API and returns paths
1460 // with / deliminers. We don't like that.
1461 for (wxChar
*ch
= buf
; *ch
; ch
++)
1463 if (*ch
== wxT('/'))
1468 // MBN: we hope that in the case the user is compiling a GTK+/Motif app,
1469 // he needs Unix as opposed to Win32 pathnames
1470 #if defined( __CYGWIN__ ) && defined( __WINDOWS__ )
1471 // another example of DOS/Unix mix (Cygwin)
1472 wxString pathUnix
= buf
;
1474 #if CYGWIN_VERSION_DLL_MAJOR >= 1007
1475 cygwin_conv_path(CCP_POSIX_TO_WIN_W
, pathUnix
.mb_str(wxConvFile
), buf
, sz
);
1477 char bufA
[_MAXPATHLEN
];
1478 cygwin_conv_to_full_win32_path(pathUnix
.mb_str(wxConvFile
), bufA
);
1479 wxConvFile
.MB2WC(buf
, bufA
, sz
);
1482 #if CYGWIN_VERSION_DLL_MAJOR >= 1007
1483 cygwin_conv_path(CCP_POSIX_TO_WIN_A
, pathUnix
, buf
, sz
);
1485 cygwin_conv_to_full_win32_path(pathUnix
, buf
);
1487 #endif // wxUSE_UNICODE
1488 #endif // __CYGWIN__
1501 #if WXWIN_COMPATIBILITY_2_6
1502 wxChar
*wxGetWorkingDirectory(wxChar
*buf
, int sz
)
1504 return wxDoGetCwd(buf
,sz
);
1506 #endif // WXWIN_COMPATIBILITY_2_6
1511 wxDoGetCwd(wxStringBuffer(str
, _MAXPATHLEN
), _MAXPATHLEN
);
1515 bool wxSetWorkingDirectory(const wxString
& d
)
1517 bool success
= false;
1518 #if defined(__OS2__)
1521 ::DosSetDefaultDisk(wxToupper(d
[0]) - wxT('A') + 1);
1522 // do not call DosSetCurrentDir when just changing drive,
1523 // since it requires e.g. "d:." instead of "d:"!
1524 if (d
.length() == 2)
1527 success
= (::DosSetCurrentDir(d
.c_str()) == 0);
1528 #elif defined(__UNIX__) || defined(__WXMAC__) || defined(__DOS__)
1529 success
= (chdir(wxFNSTRINGCAST d
.fn_str()) == 0);
1530 #elif defined(__WINDOWS__)
1534 // No equivalent in WinCE
1537 success
= (SetCurrentDirectory(d
.t_str()) != 0);
1540 // Must change drive, too.
1541 bool isDriveSpec
= ((strlen(d
) > 1) && (d
[1] == ':'));
1544 wxChar firstChar
= d
[0];
1548 firstChar
= firstChar
- 32;
1550 // To a drive number
1551 unsigned int driveNo
= firstChar
- 64;
1554 unsigned int noDrives
;
1555 _dos_setdrive(driveNo
, &noDrives
);
1558 success
= (chdir(WXSTRINGCAST d
) == 0);
1564 wxLogSysError(_("Could not set current working directory"));
1569 // Get the OS directory if appropriate (such as the Windows directory).
1570 // On non-Windows platform, probably just return the empty string.
1571 wxString
wxGetOSDirectory()
1574 return wxString(wxT("\\Windows"));
1575 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1576 wxChar buf
[MAX_PATH
];
1577 if ( !GetWindowsDirectory(buf
, MAX_PATH
) )
1579 wxLogLastError(wxS("GetWindowsDirectory"));
1582 return wxString(buf
);
1583 #elif defined(__WXMAC__) && wxOSX_USE_CARBON
1584 return wxMacFindFolderNoSeparator(kOnSystemDisk
, 'macs', false);
1586 return wxEmptyString
;
1590 bool wxEndsWithPathSeparator(const wxString
& filename
)
1592 return !filename
.empty() && wxIsPathSeparator(filename
.Last());
1595 // find a file in a list of directories, returns false if not found
1596 bool wxFindFileInPath(wxString
*pStr
, const wxString
& szPath
, const wxString
& szFile
)
1598 // we assume that it's not empty
1599 wxCHECK_MSG( !szFile
.empty(), false,
1600 wxT("empty file name in wxFindFileInPath"));
1602 // skip path separator in the beginning of the file name if present
1604 if ( wxIsPathSeparator(szFile
[0u]) )
1605 szFile2
= szFile
.Mid(1);
1609 wxStringTokenizer
tkn(szPath
, wxPATH_SEP
);
1611 while ( tkn
.HasMoreTokens() )
1613 wxString strFile
= tkn
.GetNextToken();
1614 if ( !wxEndsWithPathSeparator(strFile
) )
1615 strFile
+= wxFILE_SEP_PATH
;
1618 if ( wxFileExists(strFile
) )
1628 #if WXWIN_COMPATIBILITY_2_8
1629 void WXDLLIMPEXP_BASE
wxSplitPath(const wxString
& fileName
,
1634 wxFileName::SplitPath(fileName
, pstrPath
, pstrName
, pstrExt
);
1636 #endif // #if WXWIN_COMPATIBILITY_2_8
1640 time_t WXDLLIMPEXP_BASE
wxFileModificationTime(const wxString
& filename
)
1643 if ( !wxFileName(filename
).GetTimes(NULL
, &mtime
, NULL
) )
1646 return mtime
.GetTicks();
1649 #endif // wxUSE_DATETIME
1652 // Parses the filterStr, returning the number of filters.
1653 // Returns 0 if none or if there's a problem.
1654 // filterStr is in the form: "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpeg"
1656 int WXDLLIMPEXP_BASE
wxParseCommonDialogsFilter(const wxString
& filterStr
,
1657 wxArrayString
& descriptions
,
1658 wxArrayString
& filters
)
1660 descriptions
.Clear();
1663 wxString
str(filterStr
);
1665 wxString description
, filter
;
1667 while( pos
!= wxNOT_FOUND
)
1669 pos
= str
.Find(wxT('|'));
1670 if ( pos
== wxNOT_FOUND
)
1672 // if there are no '|'s at all in the string just take the entire
1673 // string as filter and make description empty for later autocompletion
1674 if ( filters
.IsEmpty() )
1676 descriptions
.Add(wxEmptyString
);
1677 filters
.Add(filterStr
);
1681 wxFAIL_MSG( wxT("missing '|' in the wildcard string!") );
1687 description
= str
.Left(pos
);
1688 str
= str
.Mid(pos
+ 1);
1689 pos
= str
.Find(wxT('|'));
1690 if ( pos
== wxNOT_FOUND
)
1696 filter
= str
.Left(pos
);
1697 str
= str
.Mid(pos
+ 1);
1700 descriptions
.Add(description
);
1701 filters
.Add(filter
);
1704 #if defined(__WXMOTIF__)
1705 // split it so there is one wildcard per entry
1706 for( size_t i
= 0 ; i
< descriptions
.GetCount() ; i
++ )
1708 pos
= filters
[i
].Find(wxT(';'));
1709 if (pos
!= wxNOT_FOUND
)
1711 // first split only filters
1712 descriptions
.Insert(descriptions
[i
],i
+1);
1713 filters
.Insert(filters
[i
].Mid(pos
+1),i
+1);
1714 filters
[i
]=filters
[i
].Left(pos
);
1716 // autoreplace new filter in description with pattern:
1717 // C/C++ Files(*.cpp;*.c;*.h)|*.cpp;*.c;*.h
1718 // cause split into:
1719 // C/C++ Files(*.cpp)|*.cpp
1720 // C/C++ Files(*.c;*.h)|*.c;*.h
1721 // and next iteration cause another split into:
1722 // C/C++ Files(*.cpp)|*.cpp
1723 // C/C++ Files(*.c)|*.c
1724 // C/C++ Files(*.h)|*.h
1725 for ( size_t k
=i
;k
<i
+2;k
++ )
1727 pos
= descriptions
[k
].Find(filters
[k
]);
1728 if (pos
!= wxNOT_FOUND
)
1730 wxString before
= descriptions
[k
].Left(pos
);
1731 wxString after
= descriptions
[k
].Mid(pos
+filters
[k
].Len());
1732 pos
= before
.Find(wxT('('),true);
1733 if (pos
>before
.Find(wxT(')'),true))
1735 before
= before
.Left(pos
+1);
1736 before
<< filters
[k
];
1737 pos
= after
.Find(wxT(')'));
1738 int pos1
= after
.Find(wxT('('));
1739 if (pos
!= wxNOT_FOUND
&& (pos
<pos1
|| pos1
==wxNOT_FOUND
))
1741 before
<< after
.Mid(pos
);
1742 descriptions
[k
] = before
;
1752 for( size_t j
= 0 ; j
< descriptions
.GetCount() ; j
++ )
1754 if ( descriptions
[j
].empty() && !filters
[j
].empty() )
1756 descriptions
[j
].Printf(_("Files (%s)"), filters
[j
].c_str());
1760 return filters
.GetCount();
1763 #if defined(__WINDOWS__) && !(defined(__UNIX__) || defined(__OS2__))
1764 static bool wxCheckWin32Permission(const wxString
& path
, DWORD access
)
1766 // quoting the MSDN: "To obtain a handle to a directory, call the
1767 // CreateFile function with the FILE_FLAG_BACKUP_SEMANTICS flag", but this
1768 // doesn't work under Win9x/ME but then it's not needed there anyhow
1769 const DWORD dwAttr
= ::GetFileAttributes(path
.t_str());
1770 if ( dwAttr
== INVALID_FILE_ATTRIBUTES
)
1772 // file probably doesn't exist at all
1776 if ( wxGetOsVersion() == wxOS_WINDOWS_9X
)
1778 // FAT directories always allow all access, even if they have the
1779 // readonly flag set, and FAT files can only be read-only
1780 return (dwAttr
& FILE_ATTRIBUTE_DIRECTORY
) ||
1781 (access
!= GENERIC_WRITE
||
1782 !(dwAttr
& FILE_ATTRIBUTE_READONLY
));
1785 HANDLE h
= ::CreateFile
1789 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
,
1792 dwAttr
& FILE_ATTRIBUTE_DIRECTORY
1793 ? FILE_FLAG_BACKUP_SEMANTICS
1797 if ( h
!= INVALID_HANDLE_VALUE
)
1800 return h
!= INVALID_HANDLE_VALUE
;
1802 #endif // __WINDOWS__
1804 bool wxIsWritable(const wxString
&path
)
1806 #if defined( __UNIX__ ) || defined(__OS2__)
1807 // access() will take in count also symbolic links
1808 return wxAccess(path
.c_str(), W_OK
) == 0;
1809 #elif defined( __WINDOWS__ )
1810 return wxCheckWin32Permission(path
, GENERIC_WRITE
);
1818 bool wxIsReadable(const wxString
&path
)
1820 #if defined( __UNIX__ ) || defined(__OS2__)
1821 // access() will take in count also symbolic links
1822 return wxAccess(path
.c_str(), R_OK
) == 0;
1823 #elif defined( __WINDOWS__ )
1824 return wxCheckWin32Permission(path
, GENERIC_READ
);
1832 bool wxIsExecutable(const wxString
&path
)
1834 #if defined( __UNIX__ ) || defined(__OS2__)
1835 // access() will take in count also symbolic links
1836 return wxAccess(path
.c_str(), X_OK
) == 0;
1837 #elif defined( __WINDOWS__ )
1838 return wxCheckWin32Permission(path
, GENERIC_EXECUTE
);
1846 // Return the type of an open file
1848 // Some file types on some platforms seem seekable but in fact are not.
1849 // The main use of this function is to allow such cases to be detected
1850 // (IsSeekable() is implemented as wxGetFileKind() == wxFILE_KIND_DISK).
1852 // This is important for the archive streams, which benefit greatly from
1853 // being able to seek on a stream, but which will produce corrupt archives
1854 // if they unknowingly seek on a non-seekable stream.
1856 // wxFILE_KIND_DISK is a good catch all return value, since other values
1857 // disable features of the archive streams. Some other value must be returned
1858 // for a file type that appears seekable but isn't.
1861 // * Pipes on Windows
1862 // * Files on VMS with a record format other than StreamLF
1864 wxFileKind
wxGetFileKind(int fd
)
1866 #if defined __WINDOWS__ && !defined __WXWINCE__ && defined wxGetOSFHandle
1867 switch (::GetFileType(wxGetOSFHandle(fd
)) & ~FILE_TYPE_REMOTE
)
1869 case FILE_TYPE_CHAR
:
1870 return wxFILE_KIND_TERMINAL
;
1871 case FILE_TYPE_DISK
:
1872 return wxFILE_KIND_DISK
;
1873 case FILE_TYPE_PIPE
:
1874 return wxFILE_KIND_PIPE
;
1877 return wxFILE_KIND_UNKNOWN
;
1879 #elif defined(__UNIX__)
1881 return wxFILE_KIND_TERMINAL
;
1886 if (S_ISFIFO(st
.st_mode
))
1887 return wxFILE_KIND_PIPE
;
1888 if (!S_ISREG(st
.st_mode
))
1889 return wxFILE_KIND_UNKNOWN
;
1891 #if defined(__VMS__)
1892 if (st
.st_fab_rfm
!= FAB$C_STMLF
)
1893 return wxFILE_KIND_UNKNOWN
;
1896 return wxFILE_KIND_DISK
;
1899 #define wxFILEKIND_STUB
1901 return wxFILE_KIND_DISK
;
1905 wxFileKind
wxGetFileKind(FILE *fp
)
1907 // Note: The watcom rtl dll doesn't have fileno (the static lib does).
1908 // Should be fixed in version 1.4.
1909 #if defined(wxFILEKIND_STUB) || wxONLY_WATCOM_EARLIER_THAN(1,4)
1911 return wxFILE_KIND_DISK
;
1912 #elif defined(__WINDOWS__) && !defined(__CYGWIN__) && !defined(__WATCOMC__) && !defined(__WINE__)
1913 return fp
? wxGetFileKind(_fileno(fp
)) : wxFILE_KIND_UNKNOWN
;
1915 return fp
? wxGetFileKind(fileno(fp
)) : wxFILE_KIND_UNKNOWN
;
1920 //------------------------------------------------------------------------
1921 // wild character routines
1922 //------------------------------------------------------------------------
1924 bool wxIsWild( const wxString
& pattern
)
1926 for ( wxString::const_iterator p
= pattern
.begin(); p
!= pattern
.end(); ++p
)
1928 switch ( (*p
).GetValue() )
1937 if ( ++p
== pattern
.end() )
1945 * Written By Douglas A. Lewis <dalewis@cs.Buffalo.EDU>
1947 * The match procedure is public domain code (from ircII's reg.c)
1948 * but modified to suit our tastes (RN: No "%" syntax I guess)
1951 bool wxMatchWild( const wxString
& pat
, const wxString
& text
, bool dot_special
)
1955 /* Match if both are empty. */
1959 const wxChar
*m
= pat
.c_str(),
1967 if (dot_special
&& (*n
== wxT('.')))
1969 /* Never match so that hidden Unix files
1970 * are never found. */
1983 else if (*m
== wxT('?'))
1991 if (*m
== wxT('\\'))
1994 /* Quoting "nothing" is a bad thing */
2001 * If we are out of both strings or we just
2002 * saw a wildcard, then we can say we have a
2013 * We could check for *n == NULL at this point, but
2014 * since it's more common to have a character there,
2015 * check to see if they match first (m and n) and
2016 * then if they don't match, THEN we can check for
2032 * If there are no more characters in the
2033 * string, but we still need to find another
2034 * character (*m != NULL), then it will be
2035 * impossible to match it
2054 #pragma warning(default:4706) // assignment within conditional expression