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/mslu.h"
66 // sys/cygwin.h is needed for cygwin_conv_to_full_win32_path()
68 // note that it must be included after <windows.h>
71 #include <sys/cygwin.h>
73 #endif // __GNUWIN32__
75 // io.h is needed for _get_osfhandle()
76 // Already included by filefn.h for many Windows compilers
77 #if defined __MWERKS__ || defined __CYGWIN__
86 // TODO: Borland probably has _wgetcwd as well?
91 // ----------------------------------------------------------------------------
93 // ----------------------------------------------------------------------------
96 #define _MAXPATHLEN 1024
99 // ----------------------------------------------------------------------------
101 // ----------------------------------------------------------------------------
103 // MT-FIXME: get rid of this horror and all code using it
104 static wxChar wxFileFunctionsBuffer
[4*_MAXPATHLEN
];
106 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
108 // VisualAge C++ V4.0 cannot have any external linkage const decs
109 // in headers included by more than one primary source
111 const int wxInvalidOffset
= -1;
114 // ----------------------------------------------------------------------------
116 // ----------------------------------------------------------------------------
118 // translate the filenames before passing them to OS functions
119 #define OS_FILENAME(s) (s.fn_str())
121 // ============================================================================
123 // ============================================================================
125 // ----------------------------------------------------------------------------
126 // wrappers around standard POSIX functions
127 // ----------------------------------------------------------------------------
129 #if wxUSE_UNICODE && defined __BORLANDC__ \
130 && __BORLANDC__ >= 0x550 && __BORLANDC__ <= 0x551
132 // BCC 5.5 and 5.5.1 have a bug in _wopen where files are created read only
133 // regardless of the mode parameter. This hack works around the problem by
134 // setting the mode with _wchmod.
136 int wxCRT_Open(const wchar_t *pathname
, int flags
, mode_t mode
)
140 // we only want to fix the mode when the file is actually created, so
141 // when creating first try doing it O_EXCL so we can tell if the file
142 // was already there.
143 if ((flags
& O_CREAT
) && !(flags
& O_EXCL
) && (mode
& wxS_IWUSR
) != 0)
146 int fd
= _wopen(pathname
, flags
| moreflags
, mode
);
148 // the file was actually created and needs fixing
149 if (fd
!= -1 && (flags
& O_CREAT
) != 0 && (mode
& wxS_IWUSR
) != 0)
152 _wchmod(pathname
, mode
);
153 fd
= _wopen(pathname
, flags
& ~(O_EXCL
| O_CREAT
));
155 // the open failed, but it may have been because the added O_EXCL stopped
156 // the opening of an existing file, so try again without.
157 else if (fd
== -1 && moreflags
!= 0)
159 fd
= _wopen(pathname
, flags
& ~O_CREAT
);
167 // ----------------------------------------------------------------------------
169 // ----------------------------------------------------------------------------
171 bool wxPathList::Add(const wxString
& path
)
173 // add a path separator to force wxFileName to interpret it always as a directory
174 // (i.e. if we are called with '/home/user' we want to consider it a folder and
175 // not, as wxFileName would consider, a filename).
176 wxFileName
fn(path
+ wxFileName::GetPathSeparator());
178 // add only normalized relative/absolute paths
179 // NB: we won't do wxPATH_NORM_DOTS in order to avoid problems when trying to
180 // normalize paths which starts with ".." (which can be normalized only if
181 // we use also wxPATH_NORM_ABSOLUTE - which we don't want to use).
182 if (!fn
.Normalize(wxPATH_NORM_TILDE
|wxPATH_NORM_LONG
|wxPATH_NORM_ENV_VARS
))
185 wxString toadd
= fn
.GetPath();
186 if (Index(toadd
) == wxNOT_FOUND
)
187 wxArrayString::Add(toadd
); // do not add duplicates
192 void wxPathList::Add(const wxArrayString
&arr
)
194 for (size_t j
=0; j
< arr
.GetCount(); j
++)
198 // Add paths e.g. from the PATH environment variable
199 void wxPathList::AddEnvList (const wxString
& WXUNUSED_IN_WINCE(envVariable
))
201 // No environment variables on WinCE
204 // The space has been removed from the tokenizers, otherwise a
205 // path such as "C:\Program Files" would be split into 2 paths:
206 // "C:\Program" and "Files"; this is true for both Windows and Unix.
208 static const wxChar PATH_TOKS
[] =
209 #if defined(__WINDOWS__) || defined(__OS2__)
210 wxT(";"); // Don't separate with colon in DOS (used for drive)
216 if ( wxGetEnv(envVariable
, &val
) )
218 // split into an array of string the value of the env var
219 wxArrayString arr
= wxStringTokenize(val
, PATH_TOKS
);
220 WX_APPEND_ARRAY(*this, arr
);
222 #endif // !__WXWINCE__
225 // Given a full filename (with path), ensure that that file can
226 // be accessed again USING FILENAME ONLY by adding the path
227 // to the list if not already there.
228 bool wxPathList::EnsureFileAccessible (const wxString
& path
)
230 return Add(wxPathOnly(path
));
233 wxString
wxPathList::FindValidPath (const wxString
& file
) const
235 // normalize the given string as it could be a path + a filename
236 // and not only a filename
240 // NB: normalize without making absolute otherwise calling this function with
241 // e.g. "b/c.txt" would result in removing the directory 'b' and the for loop
242 // below would only add to the paths of this list the 'c.txt' part when doing
243 // the existence checks...
244 // NB: we don't use wxPATH_NORM_DOTS here, too (see wxPathList::Add for more info)
245 if (!fn
.Normalize(wxPATH_NORM_TILDE
|wxPATH_NORM_LONG
|wxPATH_NORM_ENV_VARS
))
246 return wxEmptyString
;
248 wxASSERT_MSG(!fn
.IsDir(), wxT("Cannot search for directories; only for files"));
250 strend
= fn
.GetFullName(); // search for the file name and ignore the path part
252 strend
= fn
.GetFullPath();
254 for (size_t i
=0; i
<GetCount(); i
++)
256 wxString strstart
= Item(i
);
257 if (!strstart
.IsEmpty() && strstart
.Last() != wxFileName::GetPathSeparator())
258 strstart
+= wxFileName::GetPathSeparator();
260 if (wxFileExists(strstart
+ strend
))
261 return strstart
+ strend
; // Found!
264 return wxEmptyString
; // Not found
267 wxString
wxPathList::FindAbsoluteValidPath (const wxString
& file
) const
269 wxString f
= FindValidPath(file
);
270 if ( f
.empty() || wxIsAbsolutePath(f
) )
273 wxString buf
= ::wxGetCwd();
275 if ( !wxEndsWithPathSeparator(buf
) )
277 buf
+= wxFILE_SEP_PATH
;
284 // ----------------------------------------------------------------------------
285 // miscellaneous global functions (TOFIX!)
286 // ----------------------------------------------------------------------------
288 static inline wxChar
* MYcopystring(const wxString
& s
)
290 wxChar
* copy
= new wxChar
[s
.length() + 1];
291 return wxStrcpy(copy
, s
.c_str());
294 template<typename CharType
>
295 static inline CharType
* MYcopystring(const CharType
* s
)
297 CharType
* copy
= new CharType
[wxStrlen(s
) + 1];
298 return wxStrcpy(copy
, s
);
303 wxFileExists (const wxString
& filename
)
305 #if defined(__WXPALMOS__)
307 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
308 // we must use GetFileAttributes() instead of the ANSI C functions because
309 // it can cope with network (UNC) paths unlike them
310 DWORD ret
= ::GetFileAttributes(filename
.fn_str());
312 return (ret
!= (DWORD
)-1) && !(ret
& FILE_ATTRIBUTE_DIRECTORY
);
315 #define S_ISREG(mode) ((mode) & S_IFREG)
318 #ifndef wxNEED_WX_UNISTD_H
319 return (wxStat( filename
.fn_str() , &st
) == 0 && S_ISREG(st
.st_mode
))
321 || (errno
== EACCES
) // if access is denied something with that name
322 // exists and is opened in exclusive mode.
326 return wxStat( filename
, &st
) == 0 && S_ISREG(st
.st_mode
);
328 #endif // __WIN32__/!__WIN32__
332 wxIsAbsolutePath (const wxString
& filename
)
334 if (!filename
.empty())
336 // Unix like or Windows
337 if (filename
[0] == wxT('/'))
340 if ((filename
[0] == wxT('[') && filename
[1] != wxT('.')))
343 #if defined(__WINDOWS__) || defined(__OS2__)
345 if (filename
[0] == wxT('\\') || (wxIsalpha (filename
[0]) && filename
[1] == wxT(':')))
353 * Strip off any extension (dot something) from end of file,
354 * IF one exists. Inserts zero into buffer.
359 static void wxDoStripExtension(T
*buffer
)
361 int len
= wxStrlen(buffer
);
365 if (buffer
[i
] == wxT('.'))
374 void wxStripExtension(char *buffer
) { wxDoStripExtension(buffer
); }
375 void wxStripExtension(wchar_t *buffer
) { wxDoStripExtension(buffer
); }
377 void wxStripExtension(wxString
& buffer
)
379 //RN: Be careful about the handling the case where
380 //buffer.length() == 0
381 for(size_t i
= buffer
.length() - 1; i
!= wxString::npos
; --i
)
383 if (buffer
.GetChar(i
) == wxT('.'))
385 buffer
= buffer
.Left(i
);
391 // Destructive removal of /./ and /../ stuff
392 template<typename CharType
>
393 static CharType
*wxDoRealPath (CharType
*path
)
395 static const CharType SEP
= wxFILE_SEP_PATH
;
397 wxUnix2DosFilename(path
);
399 if (path
[0] && path
[1]) {
400 /* MATTHEW: special case "/./x" */
402 if (path
[2] == SEP
&& path
[1] == wxT('.'))
410 if (p
[1] == wxT('.') && p
[2] == wxT('.') && (p
[3] == SEP
|| p
[3] == wxT('\0')))
413 for (q
= p
- 1; q
>= path
&& *q
!= SEP
; q
--)
418 if (q
[0] == SEP
&& (q
[1] != wxT('.') || q
[2] != wxT('.') || q
[3] != SEP
)
419 && (q
- 1 <= path
|| q
[-1] != SEP
))
422 if (path
[0] == wxT('\0'))
427 #if defined(__WXMSW__) || defined(__OS2__)
428 /* Check that path[2] is NULL! */
429 else if (path
[1] == wxT(':') && !path
[2])
438 else if (p
[1] == wxT('.') && (p
[2] == SEP
|| p
[2] == wxT('\0')))
446 char *wxRealPath(char *path
)
448 return wxDoRealPath(path
);
451 wchar_t *wxRealPath(wchar_t *path
)
453 return wxDoRealPath(path
);
456 wxString
wxRealPath(const wxString
& path
)
458 wxChar
*buf1
=MYcopystring(path
);
459 wxChar
*buf2
=wxRealPath(buf1
);
467 wxChar
*wxCopyAbsolutePath(const wxString
& filename
)
469 if (filename
.empty())
470 return (wxChar
*) NULL
;
472 if (! wxIsAbsolutePath(wxExpandPath(wxFileFunctionsBuffer
, filename
)))
474 wxString buf
= ::wxGetCwd();
475 wxChar ch
= buf
.Last();
477 if (ch
!= wxT('\\') && ch
!= wxT('/'))
483 buf
<< wxFileFunctionsBuffer
;
484 buf
= wxRealPath( buf
);
485 return MYcopystring( buf
);
487 return MYcopystring( wxFileFunctionsBuffer
);
493 ~user/ => user's home dir
494 If the environment variable a = "foo" and b = "bar" then:
511 /* input name in name, pathname output to buf. */
513 template<typename CharType
>
514 static CharType
*wxDoExpandPath(CharType
*buf
, const wxString
& name
)
516 register CharType
*d
, *s
, *nm
;
517 CharType lnm
[_MAXPATHLEN
];
520 // Some compilers don't like this line.
521 // const CharType trimchars[] = wxT("\n \t");
523 CharType trimchars
[4];
524 trimchars
[0] = wxT('\n');
525 trimchars
[1] = wxT(' ');
526 trimchars
[2] = wxT('\t');
529 static const CharType SEP
= wxFILE_SEP_PATH
;
531 //wxUnix2DosFilename(path);
537 nm
= ::MYcopystring(static_cast<const CharType
*>(name
.c_str())); // Make a scratch copy
538 CharType
*nm_tmp
= nm
;
540 /* Skip leading whitespace and cr */
541 while (wxStrchr(trimchars
, *nm
) != NULL
)
543 /* And strip off trailing whitespace and cr */
544 s
= nm
+ (q
= wxStrlen(nm
)) - 1;
545 while (q
-- && wxStrchr(trimchars
, *s
) != NULL
)
553 q
= nm
[0] == wxT('\\') && nm
[1] == wxT('~');
556 /* Expand inline environment variables */
574 while ((*d
++ = *s
) != 0) {
576 if (*s
== wxT('\\')) {
577 if ((*(d
- 1) = *++s
)!=0) {
585 // No env variables on WinCE
588 if (*s
++ == wxT('$') && (*s
== wxT('{') || *s
== wxT(')')))
590 if (*s
++ == wxT('$'))
593 register CharType
*start
= d
;
594 register int braces
= (*s
== wxT('{') || *s
== wxT('('));
595 register CharType
*value
;
596 while ((*d
++ = *s
) != 0)
597 if (braces
? (*s
== wxT('}') || *s
== wxT(')')) : !(wxIsalnum(*s
) || *s
== wxT('_')) )
602 value
= wxGetenv(braces
? start
+ 1 : start
);
604 for ((d
= start
- 1); (*d
++ = *value
++) != 0;)
618 /* Expand ~ and ~user */
621 if (nm
[0] == wxT('~') && !q
)
624 if (nm
[1] == SEP
|| nm
[1] == 0)
626 homepath
= wxGetUserHome(wxEmptyString
);
627 if (!homepath
.empty()) {
628 s
= (CharType
*)(const CharType
*)homepath
.c_str();
633 { /* ~user/filename */
634 register CharType
*nnm
;
635 for (s
= nm
; *s
&& *s
!= SEP
; s
++)
639 int was_sep
; /* MATTHEW: Was there a separator, or NULL? */
640 was_sep
= (*s
== SEP
);
641 nnm
= *s
? s
+ 1 : s
;
643 homepath
= wxGetUserHome(wxString(nm
+ 1));
644 if (homepath
.empty())
646 if (was_sep
) /* replace only if it was there: */
653 s
= (CharType
*)(const CharType
*)homepath
.c_str();
659 if (s
&& *s
) { /* MATTHEW: s could be NULL if user '~' didn't exist */
661 while (wxT('\0') != (*d
++ = *s
++))
664 if (d
- 1 > buf
&& *(d
- 2) != SEP
)
668 while ((*d
++ = *s
++) != 0)
672 delete[] nm_tmp
; // clean up alloc
673 /* Now clean up the buffer */
674 return wxRealPath(buf
);
677 char *wxExpandPath(char *buf
, const wxString
& name
)
679 return wxDoExpandPath(buf
, name
);
682 wchar_t *wxExpandPath(wchar_t *buf
, const wxString
& name
)
684 return wxDoExpandPath(buf
, name
);
688 /* Contract Paths to be build upon an environment variable
691 example: "/usr/openwin/lib", OPENWINHOME --> ${OPENWINHOME}/lib
693 The call wxExpandPath can convert these back!
696 wxContractPath (const wxString
& filename
,
697 const wxString
& WXUNUSED_IN_WINCE(envname
),
698 const wxString
& user
)
700 static wxChar dest
[_MAXPATHLEN
];
702 if (filename
.empty())
703 return (wxChar
*) NULL
;
705 wxStrcpy (dest
, filename
);
707 wxUnix2DosFilename(dest
);
710 // Handle environment
714 if (!envname
.empty() && !(val
= wxGetenv (envname
)).empty() &&
715 (tcp
= wxStrstr (dest
, val
)) != NULL
)
717 wxStrcpy (wxFileFunctionsBuffer
, tcp
+ val
.length());
720 wxStrcpy (tcp
, envname
);
721 wxStrcat (tcp
, wxT("}"));
722 wxStrcat (tcp
, wxFileFunctionsBuffer
);
726 // Handle User's home (ignore root homes!)
727 val
= wxGetUserHome (user
);
731 const size_t len
= val
.length();
735 if (wxStrncmp(dest
, val
, len
) == 0)
737 wxStrcpy(wxFileFunctionsBuffer
, wxT("~"));
739 wxStrcat(wxFileFunctionsBuffer
, user
);
740 wxStrcat(wxFileFunctionsBuffer
, dest
+ len
);
741 wxStrcpy (dest
, wxFileFunctionsBuffer
);
747 // Return just the filename, not the path (basename)
748 wxChar
*wxFileNameFromPath (wxChar
*path
)
751 wxString n
= wxFileNameFromPath(p
);
753 return path
+ p
.length() - n
.length();
756 wxString
wxFileNameFromPath (const wxString
& path
)
759 wxFileName::SplitPath(path
, NULL
, &name
, &ext
);
761 wxString fullname
= name
;
764 fullname
<< wxFILE_SEP_EXT
<< ext
;
770 // Return just the directory, or NULL if no directory
772 wxPathOnly (wxChar
*path
)
776 static wxChar buf
[_MAXPATHLEN
];
779 wxStrcpy (buf
, path
);
781 int l
= wxStrlen(path
);
784 // Search backward for a backward or forward slash
787 // Unix like or Windows
788 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
794 if (path
[i
] == wxT(']'))
803 #if defined(__WXMSW__) || defined(__OS2__)
804 // Try Drive specifier
805 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
807 // A:junk --> A:. (since A:.\junk Not A:\junk)
814 return (wxChar
*) NULL
;
817 // Return just the directory, or NULL if no directory
818 wxString
wxPathOnly (const wxString
& path
)
822 wxChar buf
[_MAXPATHLEN
];
827 int l
= path
.length();
830 // Search backward for a backward or forward slash
833 // Unix like or Windows
834 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
836 // Don't return an empty string
840 return wxString(buf
);
843 if (path
[i
] == wxT(']'))
846 return wxString(buf
);
852 #if defined(__WXMSW__) || defined(__OS2__)
853 // Try Drive specifier
854 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
856 // A:junk --> A:. (since A:.\junk Not A:\junk)
859 return wxString(buf
);
863 return wxEmptyString
;
866 // Utility for converting delimiters in DOS filenames to UNIX style
867 // and back again - or we get nasty problems with delimiters.
868 // Also, convert to lower case, since case is significant in UNIX.
870 #if defined(__WXMAC__) && !defined(__WXOSX_IPHONE__)
872 #define kDefaultPathStyle kCFURLPOSIXPathStyle
874 wxString
wxMacFSRefToPath( const FSRef
*fsRef
, CFStringRef additionalPathComponent
)
877 fullURLRef
= CFURLCreateFromFSRef(NULL
, fsRef
);
878 if ( additionalPathComponent
)
880 CFURLRef parentURLRef
= fullURLRef
;
881 fullURLRef
= CFURLCreateCopyAppendingPathComponent(NULL
, parentURLRef
,
882 additionalPathComponent
,false);
883 CFRelease( parentURLRef
) ;
885 CFStringRef cfString
= CFURLCopyFileSystemPath(fullURLRef
, kDefaultPathStyle
);
886 CFRelease( fullURLRef
) ;
887 CFMutableStringRef cfMutableString
= CFStringCreateMutableCopy(NULL
, 0, cfString
);
888 CFRelease( cfString
);
889 CFStringNormalize(cfMutableString
,kCFStringNormalizationFormC
);
890 return wxCFStringRef(cfMutableString
).AsString();
893 OSStatus
wxMacPathToFSRef( const wxString
&path
, FSRef
*fsRef
)
895 OSStatus err
= noErr
;
896 CFMutableStringRef cfMutableString
= CFStringCreateMutableCopy(NULL
, 0, wxCFStringRef(path
));
897 CFStringNormalize(cfMutableString
,kCFStringNormalizationFormD
);
898 CFURLRef url
= CFURLCreateWithFileSystemPath(kCFAllocatorDefault
, cfMutableString
, kDefaultPathStyle
, false);
899 CFRelease( cfMutableString
);
902 if ( CFURLGetFSRef(url
, fsRef
) == false )
913 wxString
wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname
)
915 CFStringRef cfname
= CFStringCreateWithCharacters( kCFAllocatorDefault
,
918 CFMutableStringRef cfMutableString
= CFStringCreateMutableCopy(NULL
, 0, cfname
);
920 CFStringNormalize(cfMutableString
,kCFStringNormalizationFormC
);
921 return wxCFStringRef(cfMutableString
).AsString() ;
926 wxString
wxMacFSSpec2MacFilename( const FSSpec
*spec
)
929 if ( FSpMakeFSRef( spec
, &fsRef
) == noErr
)
931 return wxMacFSRefToPath( &fsRef
) ;
933 return wxEmptyString
;
936 void wxMacFilename2FSSpec( const wxString
& path
, FSSpec
*spec
)
938 OSStatus err
= noErr
;
940 wxMacPathToFSRef( path
, &fsRef
);
941 err
= FSGetCatalogInfo(&fsRef
, kFSCatInfoNone
, NULL
, NULL
, spec
, NULL
);
949 static void wxDoDos2UnixFilename(T
*s
)
958 *s
= wxTolower(*s
); // Case INDEPENDENT
964 void wxDos2UnixFilename(char *s
) { wxDoDos2UnixFilename(s
); }
965 void wxDos2UnixFilename(wchar_t *s
) { wxDoDos2UnixFilename(s
); }
969 #if defined(__WXMSW__) || defined(__OS2__)
970 wxDoUnix2DosFilename(T
*s
)
972 wxDoUnix2DosFilename(T
*WXUNUSED(s
) )
975 // Yes, I really mean this to happen under DOS only! JACS
976 #if defined(__WXMSW__) || defined(__OS2__)
987 void wxUnix2DosFilename(char *s
) { wxDoUnix2DosFilename(s
); }
988 void wxUnix2DosFilename(wchar_t *s
) { wxDoUnix2DosFilename(s
); }
990 // Concatenate two files to form third
992 wxConcatFiles (const wxString
& file1
, const wxString
& file2
, const wxString
& file3
)
996 wxFile
in1(file1
), in2(file2
);
997 wxTempFile
out(file3
);
999 if ( !in1
.IsOpened() || !in2
.IsOpened() || !out
.IsOpened() )
1003 unsigned char buf
[1024];
1005 for( int i
=0; i
<2; i
++)
1007 wxFile
*in
= i
==0 ? &in1
: &in2
;
1009 if ( (ofs
= in
->Read(buf
,WXSIZEOF(buf
))) == wxInvalidOffset
) return false;
1011 if ( !out
.Write(buf
,ofs
) )
1013 } while ( ofs
== (ssize_t
)WXSIZEOF(buf
) );
1016 return out
.Commit();
1028 // helper of generic implementation of wxCopyFile()
1029 #if !(defined(__WIN32__) || defined(__OS2__) || defined(__PALMOS__)) && \
1033 wxDoCopyFile(wxFile
& fileIn
,
1034 const wxStructStat
& fbuf
,
1035 const wxString
& filenameDst
,
1038 // reset the umask as we want to create the file with exactly the same
1039 // permissions as the original one
1042 // create file2 with the same permissions than file1 and open it for
1046 if ( !fileOut
.Create(filenameDst
, overwrite
, fbuf
.st_mode
& 0777) )
1049 // copy contents of file1 to file2
1053 ssize_t count
= fileIn
.Read(buf
, WXSIZEOF(buf
));
1054 if ( count
== wxInvalidOffset
)
1061 if ( fileOut
.Write(buf
, count
) < (size_t)count
)
1065 // we can expect fileIn to be closed successfully, but we should ensure
1066 // that fileOut was closed as some write errors (disk full) might not be
1067 // detected before doing this
1068 return fileIn
.Close() && fileOut
.Close();
1071 #endif // generic implementation of wxCopyFile
1075 wxCopyFile (const wxString
& file1
, const wxString
& file2
, bool overwrite
)
1077 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
1078 // CopyFile() copies file attributes and modification time too, so use it
1079 // instead of our code if available
1081 // NB: 3rd parameter is bFailIfExists i.e. the inverse of overwrite
1082 if ( !::CopyFile(file1
.fn_str(), file2
.fn_str(), !overwrite
) )
1084 wxLogSysError(_("Failed to copy the file '%s' to '%s'"),
1085 file1
.c_str(), file2
.c_str());
1089 #elif defined(__OS2__)
1090 if ( ::DosCopy(file1
.c_str(), file2
.c_str(), overwrite
? DCPY_EXISTING
: 0) != 0 )
1092 #elif defined(__PALMOS__)
1093 // TODO with http://www.palmos.com/dev/support/docs/protein_books/Memory_Databases_Files/
1095 #elif wxUSE_FILE // !Win32
1098 // get permissions of file1
1099 if ( wxStat( file1
.c_str(), &fbuf
) != 0 )
1101 // the file probably doesn't exist or we haven't the rights to read
1103 wxLogSysError(_("Impossible to get permissions for file '%s'"),
1108 // open file1 for reading
1109 wxFile
fileIn(file1
, wxFile::read
);
1110 if ( !fileIn
.IsOpened() )
1113 // remove file2, if it exists. This is needed for creating
1114 // file2 with the correct permissions in the next step
1115 if ( wxFileExists(file2
) && (!overwrite
|| !wxRemoveFile(file2
)))
1117 wxLogSysError(_("Impossible to overwrite the file '%s'"),
1122 wxDoCopyFile(fileIn
, fbuf
, file2
, overwrite
);
1124 #if defined(__WXMAC__) || defined(__WXCOCOA__)
1125 // copy the resource fork of the file too if it's present
1126 wxString pathRsrcOut
;
1130 // suppress error messages from this block as resource forks don't have
1134 // it's not enough to check for file existence: it always does on HFS
1135 // but is empty for files without resources
1136 if ( fileRsrcIn
.Open(file1
+ wxT("/..namedfork/rsrc")) &&
1137 fileRsrcIn
.Length() > 0 )
1139 // we must be using HFS or another filesystem with resource fork
1140 // support, suppose that destination file system also is HFS[-like]
1141 pathRsrcOut
= file2
+ wxT("/..namedfork/rsrc");
1143 else // check if we have resource fork in separate file (non-HFS case)
1145 wxFileName
fnRsrc(file1
);
1146 fnRsrc
.SetName(wxT("._") + fnRsrc
.GetName());
1149 if ( fileRsrcIn
.Open( fnRsrc
.GetFullPath() ) )
1152 fnRsrc
.SetName(wxT("._") + fnRsrc
.GetName());
1154 pathRsrcOut
= fnRsrc
.GetFullPath();
1159 if ( !pathRsrcOut
.empty() )
1161 if ( !wxDoCopyFile(fileRsrcIn
, fbuf
, pathRsrcOut
, overwrite
) )
1164 #endif // wxMac || wxCocoa
1166 #if !defined(__VISAGECPP__) && !defined(__WXMAC__) || defined(__UNIX__)
1167 // no chmod in VA. Should be some permission API for HPFS386 partitions
1169 if ( chmod(OS_FILENAME(file2
), fbuf
.st_mode
) != 0 )
1171 wxLogSysError(_("Impossible to set permissions for the file '%s'"),
1175 #endif // OS/2 || Mac
1177 #else // !Win32 && ! wxUSE_FILE
1179 // impossible to simulate with wxWidgets API
1182 wxUnusedVar(overwrite
);
1185 #endif // __WXMSW__ && __WIN32__
1191 wxRenameFile(const wxString
& file1
, const wxString
& file2
, bool overwrite
)
1193 if ( !overwrite
&& wxFileExists(file2
) )
1197 _("Failed to rename the file '%s' to '%s' because the destination file already exists."),
1198 file1
.c_str(), file2
.c_str()
1204 #if !defined(__WXWINCE__) && !defined(__WXPALMOS__)
1205 // Normal system call
1206 if ( wxRename (file1
, file2
) == 0 )
1211 if (wxCopyFile(file1
, file2
, overwrite
)) {
1212 wxRemoveFile(file1
);
1219 bool wxRemoveFile(const wxString
& file
)
1221 #if defined(__VISUALC__) \
1222 || defined(__BORLANDC__) \
1223 || defined(__WATCOMC__) \
1224 || defined(__DMC__) \
1225 || defined(__GNUWIN32__) \
1226 || (defined(__MWERKS__) && defined(__MSL__))
1227 int res
= wxRemove(file
);
1228 #elif defined(__WXMAC__)
1229 int res
= unlink(file
.fn_str());
1230 #elif defined(__WXPALMOS__)
1232 // TODO with VFSFileDelete()
1234 int res
= unlink(OS_FILENAME(file
));
1240 bool wxMkdir(const wxString
& dir
, int perm
)
1242 #if defined(__WXPALMOS__)
1244 #elif defined(__WXMAC__) && !defined(__UNIX__)
1245 return (mkdir(dir
.fn_str() , 0 ) == 0);
1247 const wxChar
*dirname
= dir
.c_str();
1249 // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
1250 // for the GNU compiler
1251 #if (!(defined(__WXMSW__) || defined(__OS2__) || defined(__DOS__))) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WINE__) || defined(__WXMICROWIN__)
1254 if ( mkdir(wxFNCONV(dirname
)) != 0 )
1256 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1258 #elif defined(__OS2__)
1260 if (::DosCreateDir((PSZ
)dirname
, NULL
) != 0) // enhance for EAB's??
1261 #elif defined(__DOS__)
1262 #if defined(__WATCOMC__)
1264 if ( wxMkDir(wxFNSTRINGCAST
wxFNCONV(dirname
)) != 0 )
1265 #elif defined(__DJGPP__)
1266 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1268 #error "Unsupported DOS compiler!"
1270 #else // !MSW, !DOS and !OS/2 VAC++
1273 if ( !CreateDirectory(dirname
, NULL
) )
1275 if ( wxMkDir(dir
.fn_str()) != 0 )
1279 wxLogSysError(_("Directory '%s' couldn't be created"), dirname
);
1288 bool wxRmdir(const wxString
& dir
, int WXUNUSED(flags
))
1290 #if defined(__VMS__)
1291 return false; //to be changed since rmdir exists in VMS7.x
1292 #elif defined(__OS2__)
1293 return (::DosDeleteDir(dir
.c_str()) == 0);
1294 #elif defined(__WXWINCE__)
1295 return (RemoveDirectory(dir
) != 0);
1296 #elif defined(__WXPALMOS__)
1297 // TODO with VFSFileRename()
1300 return (wxRmDir(OS_FILENAME(dir
)) == 0);
1304 // does the path exists? (may have or not '/' or '\\' at the end)
1305 bool wxDirExists(const wxString
& pathName
)
1307 wxString
strPath(pathName
);
1309 #if defined(__WINDOWS__) || defined(__OS2__)
1310 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
1311 // so remove all trailing backslashes from the path - but don't do this for
1312 // the paths "d:\" (which are different from "d:") nor for just "\"
1313 while ( wxEndsWithPathSeparator(strPath
) )
1315 size_t len
= strPath
.length();
1316 if ( len
== 1 || (len
== 3 && strPath
[len
- 2] == _T(':')) )
1319 strPath
.Truncate(len
- 1);
1321 #endif // __WINDOWS__
1324 // OS/2 can't handle "d:", it wants either "d:\" or "d:."
1325 if (strPath
.length() == 2 && strPath
[1u] == _T(':'))
1329 #if defined(__WXPALMOS__)
1331 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
1332 // stat() can't cope with network paths
1333 DWORD ret
= ::GetFileAttributes(strPath
.fn_str());
1335 return (ret
!= (DWORD
)-1) && (ret
& FILE_ATTRIBUTE_DIRECTORY
);
1336 #elif defined(__OS2__)
1337 FILESTATUS3 Info
= {{0}};
1338 APIRET rc
= ::DosQueryPathInfo((PSZ
)(WXSTRINGCAST strPath
), FIL_STANDARD
,
1339 (void*) &Info
, sizeof(FILESTATUS3
));
1341 return ((rc
== NO_ERROR
) && (Info
.attrFile
& FILE_DIRECTORY
)) ||
1342 (rc
== ERROR_SHARING_VIOLATION
);
1343 // If we got a sharing violation, there must be something with this name.
1347 #ifndef __VISAGECPP__
1348 return wxStat(strPath
.c_str(), &st
) == 0 && ((st
.st_mode
& S_IFMT
) == S_IFDIR
);
1350 // S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
1351 return wxStat(strPath
.c_str(), &st
) == 0 && (st
.st_mode
== S_IFDIR
);
1354 #endif // __WIN32__/!__WIN32__
1357 // Get a temporary filename, opening and closing the file.
1358 wxChar
*wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
)
1361 if ( !wxGetTempFileName(prefix
, filename
) )
1366 // work around the PalmOS pacc compiler bug
1367 wxStrcpy(buf
, filename
.data());
1369 wxStrcpy(buf
, filename
);
1372 buf
= MYcopystring(filename
);
1377 bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
)
1380 buf
= wxFileName::CreateTempFileName(prefix
);
1382 return !buf
.empty();
1383 #else // !wxUSE_FILE
1384 wxUnusedVar(prefix
);
1388 #endif // wxUSE_FILE/!wxUSE_FILE
1391 // Get first file name matching given wild card.
1393 static wxDir
*gs_dir
= NULL
;
1394 static wxString gs_dirPath
;
1396 wxString
wxFindFirstFile(const wxString
& spec
, int flags
)
1398 wxSplitPath(spec
, &gs_dirPath
, NULL
, NULL
);
1399 if ( gs_dirPath
.empty() )
1400 gs_dirPath
= wxT(".");
1401 if ( !wxEndsWithPathSeparator(gs_dirPath
) )
1402 gs_dirPath
<< wxFILE_SEP_PATH
;
1406 gs_dir
= new wxDir(gs_dirPath
);
1408 if ( !gs_dir
->IsOpened() )
1410 wxLogSysError(_("Can not enumerate files '%s'"), spec
);
1411 return wxEmptyString
;
1417 case wxDIR
: dirFlags
= wxDIR_DIRS
; break;
1418 case wxFILE
: dirFlags
= wxDIR_FILES
; break;
1419 default: dirFlags
= wxDIR_DIRS
| wxDIR_FILES
; break;
1423 gs_dir
->GetFirst(&result
, wxFileNameFromPath(spec
), dirFlags
);
1424 if ( result
.empty() )
1430 return gs_dirPath
+ result
;
1433 wxString
wxFindNextFile()
1435 wxASSERT_MSG( gs_dir
, wxT("You must call wxFindFirstFile before!") );
1438 gs_dir
->GetNext(&result
);
1440 if ( result
.empty() )
1446 return gs_dirPath
+ result
;
1450 // Get current working directory.
1451 // If buf is NULL, allocates space using new, else copies into buf.
1452 // wxGetWorkingDirectory() is obsolete, use wxGetCwd()
1453 // wxDoGetCwd() is their common core to be moved
1454 // to wxGetCwd() once wxGetWorkingDirectory() will be removed.
1455 // Do not expose wxDoGetCwd in headers!
1457 wxChar
*wxDoGetCwd(wxChar
*buf
, int sz
)
1459 #if defined(__WXPALMOS__)
1461 if(buf
&& sz
>0) buf
[0] = _T('\0');
1463 #elif defined(__WXWINCE__)
1465 if(buf
&& sz
>0) buf
[0] = _T('\0');
1470 buf
= new wxChar
[sz
+ 1];
1473 bool ok
wxDUMMY_INITIALIZE(false);
1475 // for the compilers which have Unicode version of _getcwd(), call it
1476 // directly, for the others call the ANSI version and do the translation
1479 #else // wxUSE_UNICODE
1480 bool needsANSI
= true;
1482 #if !defined(HAVE_WGETCWD) || wxUSE_UNICODE_MSLU
1483 char cbuf
[_MAXPATHLEN
];
1487 #if wxUSE_UNICODE_MSLU
1488 if ( wxGetOsVersion() != wxOS_WINDOWS_9X
)
1490 char *cbuf
= NULL
; // never really used because needsANSI will always be false
1493 ok
= _wgetcwd(buf
, sz
) != NULL
;
1499 #endif // wxUSE_UNICODE
1501 #if defined(_MSC_VER) || defined(__MINGW32__)
1502 ok
= _getcwd(cbuf
, sz
) != NULL
;
1503 #elif defined(__OS2__)
1505 ULONG ulDriveNum
= 0;
1506 ULONG ulDriveMap
= 0;
1507 rc
= ::DosQueryCurrentDisk(&ulDriveNum
, &ulDriveMap
);
1512 rc
= ::DosQueryCurrentDir( 0 // current drive
1516 cbuf
[0] = char('A' + (ulDriveNum
- 1));
1521 #else // !Win32/VC++ !Mac !OS2
1522 ok
= getcwd(cbuf
, sz
) != NULL
;
1526 // finally convert the result to Unicode if needed
1527 wxConvFile
.MB2WC(buf
, cbuf
, sz
);
1528 #endif // wxUSE_UNICODE
1533 wxLogSysError(_("Failed to get the working directory"));
1535 // VZ: the old code used to return "." on error which didn't make any
1536 // sense at all to me - empty string is a better error indicator
1537 // (NULL might be even better but I'm afraid this could lead to
1538 // problems with the old code assuming the return is never NULL)
1541 else // ok, but we might need to massage the path into the right format
1544 // VS: DJGPP is a strange mix of DOS and UNIX API and returns paths
1545 // with / deliminers. We don't like that.
1546 for (wxChar
*ch
= buf
; *ch
; ch
++)
1548 if (*ch
== wxT('/'))
1553 // MBN: we hope that in the case the user is compiling a GTK+/Motif app,
1554 // he needs Unix as opposed to Win32 pathnames
1555 #if defined( __CYGWIN__ ) && defined( __WINDOWS__ )
1556 // another example of DOS/Unix mix (Cygwin)
1557 wxString pathUnix
= buf
;
1559 char bufA
[_MAXPATHLEN
];
1560 cygwin_conv_to_full_win32_path(pathUnix
.mb_str(wxConvFile
), bufA
);
1561 wxConvFile
.MB2WC(buf
, bufA
, sz
);
1563 cygwin_conv_to_full_win32_path(pathUnix
, buf
);
1564 #endif // wxUSE_UNICODE
1565 #endif // __CYGWIN__
1581 wxDoGetCwd(wxStringBuffer(str
, _MAXPATHLEN
), _MAXPATHLEN
);
1585 bool wxSetWorkingDirectory(const wxString
& d
)
1587 #if defined(__OS2__)
1590 ::DosSetDefaultDisk(wxToupper(d
[0]) - _T('A') + 1);
1591 // do not call DosSetCurrentDir when just changing drive,
1592 // since it requires e.g. "d:." instead of "d:"!
1593 if (d
.length() == 2)
1596 return (::DosSetCurrentDir(d
.c_str()) == 0);
1597 #elif defined(__UNIX__) || defined(__WXMAC__) || defined(__DOS__)
1598 return (chdir(wxFNSTRINGCAST d
.fn_str()) == 0);
1599 #elif defined(__WINDOWS__)
1603 // No equivalent in WinCE
1607 return (bool)(SetCurrentDirectory(d
.fn_str()) != 0);
1610 // Must change drive, too.
1611 bool isDriveSpec
= ((strlen(d
) > 1) && (d
[1] == ':'));
1614 wxChar firstChar
= d
[0];
1618 firstChar
= firstChar
- 32;
1620 // To a drive number
1621 unsigned int driveNo
= firstChar
- 64;
1624 unsigned int noDrives
;
1625 _dos_setdrive(driveNo
, &noDrives
);
1628 bool success
= (chdir(WXSTRINGCAST d
) == 0);
1636 // Get the OS directory if appropriate (such as the Windows directory).
1637 // On non-Windows platform, probably just return the empty string.
1638 wxString
wxGetOSDirectory()
1641 return wxString(wxT("\\Windows"));
1642 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1644 GetWindowsDirectory(buf
, 256);
1645 return wxString(buf
);
1646 #elif defined(__WXMAC__) && !defined(__WXOSX_IPHONE__)
1647 return wxMacFindFolder(kOnSystemDisk
, 'macs', false);
1649 return wxEmptyString
;
1653 bool wxEndsWithPathSeparator(const wxString
& filename
)
1655 return !filename
.empty() && wxIsPathSeparator(filename
.Last());
1658 // find a file in a list of directories, returns false if not found
1659 bool wxFindFileInPath(wxString
*pStr
, const wxString
& szPath
, const wxString
& szFile
)
1661 // we assume that it's not empty
1662 wxCHECK_MSG( !szFile
.empty(), false,
1663 _T("empty file name in wxFindFileInPath"));
1665 // skip path separator in the beginning of the file name if present
1667 if ( wxIsPathSeparator(szFile
[0u]) )
1668 szFile2
= szFile
.Mid(1);
1672 wxStringTokenizer
tkn(szPath
, wxPATH_SEP
);
1674 while ( tkn
.HasMoreTokens() )
1676 wxString strFile
= tkn
.GetNextToken();
1677 if ( !wxEndsWithPathSeparator(strFile
) )
1678 strFile
+= wxFILE_SEP_PATH
;
1681 if ( wxFileExists(strFile
) )
1691 void WXDLLIMPEXP_BASE
wxSplitPath(const wxString
& fileName
,
1696 wxFileName::SplitPath(fileName
, pstrPath
, pstrName
, pstrExt
);
1701 time_t WXDLLIMPEXP_BASE
wxFileModificationTime(const wxString
& filename
)
1704 if ( !wxFileName(filename
).GetTimes(NULL
, &mtime
, NULL
) )
1707 return mtime
.GetTicks();
1710 #endif // wxUSE_DATETIME
1713 // Parses the filterStr, returning the number of filters.
1714 // Returns 0 if none or if there's a problem.
1715 // filterStr is in the form: "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpeg"
1717 int WXDLLIMPEXP_BASE
wxParseCommonDialogsFilter(const wxString
& filterStr
,
1718 wxArrayString
& descriptions
,
1719 wxArrayString
& filters
)
1721 descriptions
.Clear();
1724 wxString
str(filterStr
);
1726 wxString description
, filter
;
1728 while( pos
!= wxNOT_FOUND
)
1730 pos
= str
.Find(wxT('|'));
1731 if ( pos
== wxNOT_FOUND
)
1733 // if there are no '|'s at all in the string just take the entire
1734 // string as filter and make description empty for later autocompletion
1735 if ( filters
.IsEmpty() )
1737 descriptions
.Add(wxEmptyString
);
1738 filters
.Add(filterStr
);
1742 wxFAIL_MSG( _T("missing '|' in the wildcard string!") );
1748 description
= str
.Left(pos
);
1749 str
= str
.Mid(pos
+ 1);
1750 pos
= str
.Find(wxT('|'));
1751 if ( pos
== wxNOT_FOUND
)
1757 filter
= str
.Left(pos
);
1758 str
= str
.Mid(pos
+ 1);
1761 descriptions
.Add(description
);
1762 filters
.Add(filter
);
1765 #if defined(__WXMOTIF__)
1766 // split it so there is one wildcard per entry
1767 for( size_t i
= 0 ; i
< descriptions
.GetCount() ; i
++ )
1769 pos
= filters
[i
].Find(wxT(';'));
1770 if (pos
!= wxNOT_FOUND
)
1772 // first split only filters
1773 descriptions
.Insert(descriptions
[i
],i
+1);
1774 filters
.Insert(filters
[i
].Mid(pos
+1),i
+1);
1775 filters
[i
]=filters
[i
].Left(pos
);
1777 // autoreplace new filter in description with pattern:
1778 // C/C++ Files(*.cpp;*.c;*.h)|*.cpp;*.c;*.h
1779 // cause split into:
1780 // C/C++ Files(*.cpp)|*.cpp
1781 // C/C++ Files(*.c;*.h)|*.c;*.h
1782 // and next iteration cause another split into:
1783 // C/C++ Files(*.cpp)|*.cpp
1784 // C/C++ Files(*.c)|*.c
1785 // C/C++ Files(*.h)|*.h
1786 for ( size_t k
=i
;k
<i
+2;k
++ )
1788 pos
= descriptions
[k
].Find(filters
[k
]);
1789 if (pos
!= wxNOT_FOUND
)
1791 wxString before
= descriptions
[k
].Left(pos
);
1792 wxString after
= descriptions
[k
].Mid(pos
+filters
[k
].Len());
1793 pos
= before
.Find(_T('('),true);
1794 if (pos
>before
.Find(_T(')'),true))
1796 before
= before
.Left(pos
+1);
1797 before
<< filters
[k
];
1798 pos
= after
.Find(_T(')'));
1799 int pos1
= after
.Find(_T('('));
1800 if (pos
!= wxNOT_FOUND
&& (pos
<pos1
|| pos1
==wxNOT_FOUND
))
1802 before
<< after
.Mid(pos
);
1803 descriptions
[k
] = before
;
1813 for( size_t j
= 0 ; j
< descriptions
.GetCount() ; j
++ )
1815 if ( descriptions
[j
].empty() && !filters
[j
].empty() )
1817 descriptions
[j
].Printf(_("Files (%s)"), filters
[j
].c_str());
1821 return filters
.GetCount();
1824 #if defined(__WINDOWS__) && !(defined(__UNIX__) || defined(__OS2__))
1825 static bool wxCheckWin32Permission(const wxString
& path
, DWORD access
)
1827 // quoting the MSDN: "To obtain a handle to a directory, call the
1828 // CreateFile function with the FILE_FLAG_BACKUP_SEMANTICS flag", but this
1829 // doesn't work under Win9x/ME but then it's not needed there anyhow
1830 bool isdir
= wxDirExists(path
);
1831 if ( isdir
&& wxGetOsVersion() == wxOS_WINDOWS_9X
)
1833 // FAT directories always allow all access, even if they have the
1834 // readonly flag set
1838 HANDLE h
= ::CreateFile
1842 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
,
1845 isdir
? FILE_FLAG_BACKUP_SEMANTICS
: 0,
1848 if ( h
!= INVALID_HANDLE_VALUE
)
1851 return h
!= INVALID_HANDLE_VALUE
;
1853 #endif // __WINDOWS__
1855 bool wxIsWritable(const wxString
&path
)
1857 #if defined( __UNIX__ ) || defined(__OS2__)
1858 // access() will take in count also symbolic links
1859 return wxAccess(path
.c_str(), W_OK
) == 0;
1860 #elif defined( __WINDOWS__ )
1861 return wxCheckWin32Permission(path
, GENERIC_WRITE
);
1869 bool wxIsReadable(const wxString
&path
)
1871 #if defined( __UNIX__ ) || defined(__OS2__)
1872 // access() will take in count also symbolic links
1873 return wxAccess(path
.c_str(), R_OK
) == 0;
1874 #elif defined( __WINDOWS__ )
1875 return wxCheckWin32Permission(path
, GENERIC_READ
);
1883 bool wxIsExecutable(const wxString
&path
)
1885 #if defined( __UNIX__ ) || defined(__OS2__)
1886 // access() will take in count also symbolic links
1887 return wxAccess(path
.c_str(), X_OK
) == 0;
1888 #elif defined( __WINDOWS__ )
1889 return wxCheckWin32Permission(path
, GENERIC_EXECUTE
);
1897 // Return the type of an open file
1899 // Some file types on some platforms seem seekable but in fact are not.
1900 // The main use of this function is to allow such cases to be detected
1901 // (IsSeekable() is implemented as wxGetFileKind() == wxFILE_KIND_DISK).
1903 // This is important for the archive streams, which benefit greatly from
1904 // being able to seek on a stream, but which will produce corrupt archives
1905 // if they unknowingly seek on a non-seekable stream.
1907 // wxFILE_KIND_DISK is a good catch all return value, since other values
1908 // disable features of the archive streams. Some other value must be returned
1909 // for a file type that appears seekable but isn't.
1912 // * Pipes on Windows
1913 // * Files on VMS with a record format other than StreamLF
1915 wxFileKind
wxGetFileKind(int fd
)
1917 #if defined __WXMSW__ && !defined __WXWINCE__ && defined wxGetOSFHandle
1918 switch (::GetFileType(wxGetOSFHandle(fd
)) & ~FILE_TYPE_REMOTE
)
1920 case FILE_TYPE_CHAR
:
1921 return wxFILE_KIND_TERMINAL
;
1922 case FILE_TYPE_DISK
:
1923 return wxFILE_KIND_DISK
;
1924 case FILE_TYPE_PIPE
:
1925 return wxFILE_KIND_PIPE
;
1928 return wxFILE_KIND_UNKNOWN
;
1930 #elif defined(__UNIX__)
1932 return wxFILE_KIND_TERMINAL
;
1937 if (S_ISFIFO(st
.st_mode
))
1938 return wxFILE_KIND_PIPE
;
1939 if (!S_ISREG(st
.st_mode
))
1940 return wxFILE_KIND_UNKNOWN
;
1942 #if defined(__VMS__)
1943 if (st
.st_fab_rfm
!= FAB$C_STMLF
)
1944 return wxFILE_KIND_UNKNOWN
;
1947 return wxFILE_KIND_DISK
;
1950 #define wxFILEKIND_STUB
1952 return wxFILE_KIND_DISK
;
1956 wxFileKind
wxGetFileKind(FILE *fp
)
1958 // Note: The watcom rtl dll doesn't have fileno (the static lib does).
1959 // Should be fixed in version 1.4.
1960 #if defined(wxFILEKIND_STUB) || wxONLY_WATCOM_EARLIER_THAN(1,4)
1962 return wxFILE_KIND_DISK
;
1963 #elif defined(__WINDOWS__) && !defined(__CYGWIN__) && !defined(__WATCOMC__) && !defined(__WINE__)
1964 return fp
? wxGetFileKind(_fileno(fp
)) : wxFILE_KIND_UNKNOWN
;
1966 return fp
? wxGetFileKind(fileno(fp
)) : wxFILE_KIND_UNKNOWN
;
1971 //------------------------------------------------------------------------
1972 // wild character routines
1973 //------------------------------------------------------------------------
1975 bool wxIsWild( const wxString
& pattern
)
1977 for ( wxString::const_iterator p
= pattern
.begin(); p
!= pattern
.end(); ++p
)
1979 switch ( (*p
).GetValue() )
1988 if ( ++p
== pattern
.end() )
1996 * Written By Douglas A. Lewis <dalewis@cs.Buffalo.EDU>
1998 * The match procedure is public domain code (from ircII's reg.c)
1999 * but modified to suit our tastes (RN: No "%" syntax I guess)
2002 bool wxMatchWild( const wxString
& pat
, const wxString
& text
, bool dot_special
)
2006 /* Match if both are empty. */
2010 const wxChar
*m
= pat
.c_str(),
2018 if (dot_special
&& (*n
== wxT('.')))
2020 /* Never match so that hidden Unix files
2021 * are never found. */
2034 else if (*m
== wxT('?'))
2042 if (*m
== wxT('\\'))
2045 /* Quoting "nothing" is a bad thing */
2052 * If we are out of both strings or we just
2053 * saw a wildcard, then we can say we have a
2064 * We could check for *n == NULL at this point, but
2065 * since it's more common to have a character there,
2066 * check to see if they match first (m and n) and
2067 * then if they don't match, THEN we can check for
2083 * If there are no more characters in the
2084 * string, but we still need to find another
2085 * character (*m != NULL), then it will be
2086 * impossible to match it
2105 #pragma warning(default:4706) // assignment within conditional expression