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/mac/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
100 // # include "MoreFilesX.h"
103 // ----------------------------------------------------------------------------
105 // ----------------------------------------------------------------------------
107 // MT-FIXME: get rid of this horror and all code using it
108 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 // translate the filenames before passing them to OS functions
123 #define OS_FILENAME(s) (s.fn_str())
125 // ============================================================================
127 // ============================================================================
129 // ----------------------------------------------------------------------------
130 // wrappers around standard POSIX functions
131 // ----------------------------------------------------------------------------
133 #if wxUSE_UNICODE && defined __BORLANDC__ \
134 && __BORLANDC__ >= 0x550 && __BORLANDC__ <= 0x551
136 // BCC 5.5 and 5.5.1 have a bug in _wopen where files are created read only
137 // regardless of the mode parameter. This hack works around the problem by
138 // setting the mode with _wchmod.
140 int wxCRT_Open(const wchar_t *pathname
, int flags
, mode_t mode
)
144 // we only want to fix the mode when the file is actually created, so
145 // when creating first try doing it O_EXCL so we can tell if the file
146 // was already there.
147 if ((flags
& O_CREAT
) && !(flags
& O_EXCL
) && (mode
& wxS_IWUSR
) != 0)
150 int fd
= _wopen(pathname
, flags
| moreflags
, mode
);
152 // the file was actually created and needs fixing
153 if (fd
!= -1 && (flags
& O_CREAT
) != 0 && (mode
& wxS_IWUSR
) != 0)
156 _wchmod(pathname
, mode
);
157 fd
= _wopen(pathname
, flags
& ~(O_EXCL
| O_CREAT
));
159 // the open failed, but it may have been because the added O_EXCL stopped
160 // the opening of an existing file, so try again without.
161 else if (fd
== -1 && moreflags
!= 0)
163 fd
= _wopen(pathname
, flags
& ~O_CREAT
);
171 // ----------------------------------------------------------------------------
173 // ----------------------------------------------------------------------------
175 bool wxPathList::Add(const wxString
& path
)
177 // add a path separator to force wxFileName to interpret it always as a directory
178 // (i.e. if we are called with '/home/user' we want to consider it a folder and
179 // not, as wxFileName would consider, a filename).
180 wxFileName
fn(path
+ wxFileName::GetPathSeparator());
182 // add only normalized relative/absolute paths
183 // NB: we won't do wxPATH_NORM_DOTS in order to avoid problems when trying to
184 // normalize paths which starts with ".." (which can be normalized only if
185 // we use also wxPATH_NORM_ABSOLUTE - which we don't want to use).
186 if (!fn
.Normalize(wxPATH_NORM_TILDE
|wxPATH_NORM_LONG
|wxPATH_NORM_ENV_VARS
))
189 wxString toadd
= fn
.GetPath();
190 if (Index(toadd
) == wxNOT_FOUND
)
191 wxArrayString::Add(toadd
); // do not add duplicates
196 void wxPathList::Add(const wxArrayString
&arr
)
198 for (size_t j
=0; j
< arr
.GetCount(); j
++)
202 // Add paths e.g. from the PATH environment variable
203 void wxPathList::AddEnvList (const wxString
& WXUNUSED_IN_WINCE(envVariable
))
205 // No environment variables on WinCE
208 // The space has been removed from the tokenizers, otherwise a
209 // path such as "C:\Program Files" would be split into 2 paths:
210 // "C:\Program" and "Files"; this is true for both Windows and Unix.
212 static const wxChar PATH_TOKS
[] =
213 #if defined(__WINDOWS__) || defined(__OS2__)
214 wxT(";"); // Don't separate with colon in DOS (used for drive)
220 if ( wxGetEnv(envVariable
, &val
) )
222 // split into an array of string the value of the env var
223 wxArrayString arr
= wxStringTokenize(val
, PATH_TOKS
);
224 WX_APPEND_ARRAY(*this, arr
);
226 #endif // !__WXWINCE__
229 // Given a full filename (with path), ensure that that file can
230 // be accessed again USING FILENAME ONLY by adding the path
231 // to the list if not already there.
232 bool wxPathList::EnsureFileAccessible (const wxString
& path
)
234 return Add(wxPathOnly(path
));
237 #if WXWIN_COMPATIBILITY_2_6
238 bool wxPathList::Member (const wxString
& path
) const
240 return Index(path
) != wxNOT_FOUND
;
244 wxString
wxPathList::FindValidPath (const wxString
& file
) const
246 // normalize the given string as it could be a path + a filename
247 // and not only a filename
251 // NB: normalize without making absolute otherwise calling this function with
252 // e.g. "b/c.txt" would result in removing the directory 'b' and the for loop
253 // below would only add to the paths of this list the 'c.txt' part when doing
254 // the existence checks...
255 // NB: we don't use wxPATH_NORM_DOTS here, too (see wxPathList::Add for more info)
256 if (!fn
.Normalize(wxPATH_NORM_TILDE
|wxPATH_NORM_LONG
|wxPATH_NORM_ENV_VARS
))
257 return wxEmptyString
;
259 wxASSERT_MSG(!fn
.IsDir(), wxT("Cannot search for directories; only for files"));
261 strend
= fn
.GetFullName(); // search for the file name and ignore the path part
263 strend
= fn
.GetFullPath();
265 for (size_t i
=0; i
<GetCount(); i
++)
267 wxString strstart
= Item(i
);
268 if (!strstart
.IsEmpty() && strstart
.Last() != wxFileName::GetPathSeparator())
269 strstart
+= wxFileName::GetPathSeparator();
271 if (wxFileExists(strstart
+ strend
))
272 return strstart
+ strend
; // Found!
275 return wxEmptyString
; // Not found
278 wxString
wxPathList::FindAbsoluteValidPath (const wxString
& file
) const
280 wxString f
= FindValidPath(file
);
281 if ( f
.empty() || wxIsAbsolutePath(f
) )
284 wxString buf
= ::wxGetCwd();
286 if ( !wxEndsWithPathSeparator(buf
) )
288 buf
+= wxFILE_SEP_PATH
;
295 // ----------------------------------------------------------------------------
296 // miscellaneous global functions (TOFIX!)
297 // ----------------------------------------------------------------------------
299 static inline wxChar
* MYcopystring(const wxString
& s
)
301 wxChar
* copy
= new wxChar
[s
.length() + 1];
302 return wxStrcpy(copy
, s
.c_str());
305 template<typename CharType
>
306 static inline CharType
* MYcopystring(const CharType
* s
)
308 CharType
* copy
= new CharType
[wxStrlen(s
) + 1];
309 return wxStrcpy(copy
, s
);
314 wxFileExists (const wxString
& filename
)
316 #if defined(__WXPALMOS__)
318 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
319 // we must use GetFileAttributes() instead of the ANSI C functions because
320 // it can cope with network (UNC) paths unlike them
321 DWORD ret
= ::GetFileAttributes(filename
.fn_str());
323 return (ret
!= (DWORD
)-1) && !(ret
& FILE_ATTRIBUTE_DIRECTORY
);
326 #define S_ISREG(mode) ((mode) & S_IFREG)
329 #ifndef wxNEED_WX_UNISTD_H
330 return (wxStat( filename
.fn_str() , &st
) == 0 && S_ISREG(st
.st_mode
))
332 || (errno
== EACCES
) // if access is denied something with that name
333 // exists and is opened in exclusive mode.
337 return wxStat( filename
, &st
) == 0 && S_ISREG(st
.st_mode
);
339 #endif // __WIN32__/!__WIN32__
343 wxIsAbsolutePath (const wxString
& filename
)
345 if (!filename
.empty())
347 // Unix like or Windows
348 if (filename
[0] == wxT('/'))
351 if ((filename
[0] == wxT('[') && filename
[1] != wxT('.')))
354 #if defined(__WINDOWS__) || defined(__OS2__)
356 if (filename
[0] == wxT('\\') || (wxIsalpha (filename
[0]) && filename
[1] == wxT(':')))
364 * Strip off any extension (dot something) from end of file,
365 * IF one exists. Inserts zero into buffer.
370 static void wxDoStripExtension(T
*buffer
)
372 int len
= wxStrlen(buffer
);
376 if (buffer
[i
] == wxT('.'))
385 void wxStripExtension(char *buffer
) { wxDoStripExtension(buffer
); }
386 void wxStripExtension(wchar_t *buffer
) { wxDoStripExtension(buffer
); }
388 void wxStripExtension(wxString
& buffer
)
390 //RN: Be careful about the handling the case where
391 //buffer.length() == 0
392 for(size_t i
= buffer
.length() - 1; i
!= wxString::npos
; --i
)
394 if (buffer
.GetChar(i
) == wxT('.'))
396 buffer
= buffer
.Left(i
);
402 // Destructive removal of /./ and /../ stuff
403 template<typename CharType
>
404 static CharType
*wxDoRealPath (CharType
*path
)
406 static const CharType SEP
= wxFILE_SEP_PATH
;
408 wxUnix2DosFilename(path
);
410 if (path
[0] && path
[1]) {
411 /* MATTHEW: special case "/./x" */
413 if (path
[2] == SEP
&& path
[1] == wxT('.'))
421 if (p
[1] == wxT('.') && p
[2] == wxT('.') && (p
[3] == SEP
|| p
[3] == wxT('\0')))
424 for (q
= p
- 1; q
>= path
&& *q
!= SEP
; q
--)
429 if (q
[0] == SEP
&& (q
[1] != wxT('.') || q
[2] != wxT('.') || q
[3] != SEP
)
430 && (q
- 1 <= path
|| q
[-1] != SEP
))
433 if (path
[0] == wxT('\0'))
438 #if defined(__WXMSW__) || defined(__OS2__)
439 /* Check that path[2] is NULL! */
440 else if (path
[1] == wxT(':') && !path
[2])
449 else if (p
[1] == wxT('.') && (p
[2] == SEP
|| p
[2] == wxT('\0')))
457 char *wxRealPath(char *path
)
459 return wxDoRealPath(path
);
462 wchar_t *wxRealPath(wchar_t *path
)
464 return wxDoRealPath(path
);
467 wxString
wxRealPath(const wxString
& path
)
469 wxChar
*buf1
=MYcopystring(path
);
470 wxChar
*buf2
=wxRealPath(buf1
);
478 wxChar
*wxCopyAbsolutePath(const wxString
& filename
)
480 if (filename
.empty())
481 return (wxChar
*) NULL
;
483 if (! wxIsAbsolutePath(wxExpandPath(wxFileFunctionsBuffer
, filename
)))
485 wxString buf
= ::wxGetCwd();
486 wxChar ch
= buf
.Last();
488 if (ch
!= wxT('\\') && ch
!= wxT('/'))
494 buf
<< wxFileFunctionsBuffer
;
495 buf
= wxRealPath( buf
);
496 return MYcopystring( buf
);
498 return MYcopystring( wxFileFunctionsBuffer
);
504 ~user/ => user's home dir
505 If the environment variable a = "foo" and b = "bar" then:
522 /* input name in name, pathname output to buf. */
524 template<typename CharType
>
525 static CharType
*wxDoExpandPath(CharType
*buf
, const wxString
& name
)
527 register CharType
*d
, *s
, *nm
;
528 CharType lnm
[_MAXPATHLEN
];
531 // Some compilers don't like this line.
532 // const CharType trimchars[] = wxT("\n \t");
534 CharType trimchars
[4];
535 trimchars
[0] = wxT('\n');
536 trimchars
[1] = wxT(' ');
537 trimchars
[2] = wxT('\t');
540 static const CharType SEP
= wxFILE_SEP_PATH
;
542 //wxUnix2DosFilename(path);
548 nm
= ::MYcopystring(static_cast<const CharType
*>(name
.c_str())); // Make a scratch copy
549 CharType
*nm_tmp
= nm
;
551 /* Skip leading whitespace and cr */
552 while (wxStrchr(trimchars
, *nm
) != NULL
)
554 /* And strip off trailing whitespace and cr */
555 s
= nm
+ (q
= wxStrlen(nm
)) - 1;
556 while (q
-- && wxStrchr(trimchars
, *s
) != NULL
)
564 q
= nm
[0] == wxT('\\') && nm
[1] == wxT('~');
567 /* Expand inline environment variables */
585 while ((*d
++ = *s
) != 0) {
587 if (*s
== wxT('\\')) {
588 if ((*(d
- 1) = *++s
)!=0) {
596 // No env variables on WinCE
599 if (*s
++ == wxT('$') && (*s
== wxT('{') || *s
== wxT(')')))
601 if (*s
++ == wxT('$'))
604 register CharType
*start
= d
;
605 register int braces
= (*s
== wxT('{') || *s
== wxT('('));
606 register CharType
*value
;
607 while ((*d
++ = *s
) != 0)
608 if (braces
? (*s
== wxT('}') || *s
== wxT(')')) : !(wxIsalnum(*s
) || *s
== wxT('_')) )
613 value
= wxGetenv(braces
? start
+ 1 : start
);
615 for ((d
= start
- 1); (*d
++ = *value
++) != 0;)
629 /* Expand ~ and ~user */
632 if (nm
[0] == wxT('~') && !q
)
635 if (nm
[1] == SEP
|| nm
[1] == 0)
637 homepath
= wxGetUserHome(wxEmptyString
);
638 if (!homepath
.empty()) {
639 s
= (CharType
*)(const CharType
*)homepath
.c_str();
644 { /* ~user/filename */
645 register CharType
*nnm
;
646 for (s
= nm
; *s
&& *s
!= SEP
; s
++)
650 int was_sep
; /* MATTHEW: Was there a separator, or NULL? */
651 was_sep
= (*s
== SEP
);
652 nnm
= *s
? s
+ 1 : s
;
654 homepath
= wxGetUserHome(wxString(nm
+ 1));
655 if (homepath
.empty())
657 if (was_sep
) /* replace only if it was there: */
664 s
= (CharType
*)(const CharType
*)homepath
.c_str();
670 if (s
&& *s
) { /* MATTHEW: s could be NULL if user '~' didn't exist */
672 while (wxT('\0') != (*d
++ = *s
++))
675 if (d
- 1 > buf
&& *(d
- 2) != SEP
)
679 while ((*d
++ = *s
++) != 0)
683 delete[] nm_tmp
; // clean up alloc
684 /* Now clean up the buffer */
685 return wxRealPath(buf
);
688 char *wxExpandPath(char *buf
, const wxString
& name
)
690 return wxDoExpandPath(buf
, name
);
693 wchar_t *wxExpandPath(wchar_t *buf
, const wxString
& name
)
695 return wxDoExpandPath(buf
, name
);
699 /* Contract Paths to be build upon an environment variable
702 example: "/usr/openwin/lib", OPENWINHOME --> ${OPENWINHOME}/lib
704 The call wxExpandPath can convert these back!
707 wxContractPath (const wxString
& filename
,
708 const wxString
& WXUNUSED_IN_WINCE(envname
),
709 const wxString
& user
)
711 static wxChar dest
[_MAXPATHLEN
];
713 if (filename
.empty())
714 return (wxChar
*) NULL
;
716 wxStrcpy (dest
, filename
);
718 wxUnix2DosFilename(dest
);
721 // Handle environment
725 if (!envname
.empty() && !(val
= wxGetenv (envname
)).empty() &&
726 (tcp
= wxStrstr (dest
, val
)) != NULL
)
728 wxStrcpy (wxFileFunctionsBuffer
, tcp
+ val
.length());
731 wxStrcpy (tcp
, envname
);
732 wxStrcat (tcp
, wxT("}"));
733 wxStrcat (tcp
, wxFileFunctionsBuffer
);
737 // Handle User's home (ignore root homes!)
738 val
= wxGetUserHome (user
);
742 const size_t len
= val
.length();
746 if (wxStrncmp(dest
, val
, len
) == 0)
748 wxStrcpy(wxFileFunctionsBuffer
, wxT("~"));
750 wxStrcat(wxFileFunctionsBuffer
, user
);
751 wxStrcat(wxFileFunctionsBuffer
, dest
+ len
);
752 wxStrcpy (dest
, wxFileFunctionsBuffer
);
758 // Return just the filename, not the path (basename)
759 wxChar
*wxFileNameFromPath (wxChar
*path
)
762 wxString n
= wxFileNameFromPath(p
);
764 return path
+ p
.length() - n
.length();
767 wxString
wxFileNameFromPath (const wxString
& path
)
770 wxFileName::SplitPath(path
, NULL
, &name
, &ext
);
772 wxString fullname
= name
;
775 fullname
<< wxFILE_SEP_EXT
<< ext
;
781 // Return just the directory, or NULL if no directory
783 wxPathOnly (wxChar
*path
)
787 static wxChar buf
[_MAXPATHLEN
];
790 wxStrcpy (buf
, path
);
792 int l
= wxStrlen(path
);
795 // Search backward for a backward or forward slash
798 // Unix like or Windows
799 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
805 if (path
[i
] == wxT(']'))
814 #if defined(__WXMSW__) || defined(__OS2__)
815 // Try Drive specifier
816 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
818 // A:junk --> A:. (since A:.\junk Not A:\junk)
825 return (wxChar
*) NULL
;
828 // Return just the directory, or NULL if no directory
829 wxString
wxPathOnly (const wxString
& path
)
833 wxChar buf
[_MAXPATHLEN
];
838 int l
= path
.length();
841 // Search backward for a backward or forward slash
844 // Unix like or Windows
845 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
847 // Don't return an empty string
851 return wxString(buf
);
854 if (path
[i
] == wxT(']'))
857 return wxString(buf
);
863 #if defined(__WXMSW__) || defined(__OS2__)
864 // Try Drive specifier
865 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
867 // A:junk --> A:. (since A:.\junk Not A:\junk)
870 return wxString(buf
);
874 return wxEmptyString
;
877 // Utility for converting delimiters in DOS filenames to UNIX style
878 // and back again - or we get nasty problems with delimiters.
879 // Also, convert to lower case, since case is significant in UNIX.
881 #if defined(__WXMAC__)
883 #define kDefaultPathStyle kCFURLPOSIXPathStyle
885 wxString
wxMacFSRefToPath( const FSRef
*fsRef
, CFStringRef additionalPathComponent
)
888 fullURLRef
= CFURLCreateFromFSRef(NULL
, fsRef
);
889 if ( additionalPathComponent
)
891 CFURLRef parentURLRef
= fullURLRef
;
892 fullURLRef
= CFURLCreateCopyAppendingPathComponent(NULL
, parentURLRef
,
893 additionalPathComponent
,false);
894 CFRelease( parentURLRef
) ;
896 CFStringRef cfString
= CFURLCopyFileSystemPath(fullURLRef
, kDefaultPathStyle
);
897 CFRelease( fullURLRef
) ;
898 CFMutableStringRef cfMutableString
= CFStringCreateMutableCopy(NULL
, 0, cfString
);
899 CFRelease( cfString
);
900 CFStringNormalize(cfMutableString
,kCFStringNormalizationFormC
);
901 return wxCFStringRef(cfMutableString
).AsString();
904 OSStatus
wxMacPathToFSRef( const wxString
&path
, FSRef
*fsRef
)
906 OSStatus err
= noErr
;
907 CFMutableStringRef cfMutableString
= CFStringCreateMutableCopy(NULL
, 0, wxCFStringRef(path
));
908 CFStringNormalize(cfMutableString
,kCFStringNormalizationFormD
);
909 CFURLRef url
= CFURLCreateWithFileSystemPath(kCFAllocatorDefault
, cfMutableString
, kDefaultPathStyle
, false);
910 CFRelease( cfMutableString
);
913 if ( CFURLGetFSRef(url
, fsRef
) == false )
924 wxString
wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname
)
926 CFStringRef cfname
= CFStringCreateWithCharacters( kCFAllocatorDefault
,
929 CFMutableStringRef cfMutableString
= CFStringCreateMutableCopy(NULL
, 0, cfname
);
931 CFStringNormalize(cfMutableString
,kCFStringNormalizationFormC
);
932 return wxCFStringRef(cfMutableString
).AsString() ;
937 wxString
wxMacFSSpec2MacFilename( const FSSpec
*spec
)
940 if ( FSpMakeFSRef( spec
, &fsRef
) == noErr
)
942 return wxMacFSRefToPath( &fsRef
) ;
944 return wxEmptyString
;
947 void wxMacFilename2FSSpec( const wxString
& path
, FSSpec
*spec
)
949 OSStatus err
= noErr
;
951 wxMacPathToFSRef( path
, &fsRef
);
952 err
= FSGetCatalogInfo(&fsRef
, kFSCatInfoNone
, NULL
, NULL
, spec
, NULL
);
960 static void wxDoDos2UnixFilename(T
*s
)
969 *s
= wxTolower(*s
); // Case INDEPENDENT
975 void wxDos2UnixFilename(char *s
) { wxDoDos2UnixFilename(s
); }
976 void wxDos2UnixFilename(wchar_t *s
) { wxDoDos2UnixFilename(s
); }
980 #if defined(__WXMSW__) || defined(__OS2__)
981 wxDoUnix2DosFilename(T
*s
)
983 wxDoUnix2DosFilename(T
*WXUNUSED(s
) )
986 // Yes, I really mean this to happen under DOS only! JACS
987 #if defined(__WXMSW__) || defined(__OS2__)
998 void wxUnix2DosFilename(char *s
) { wxDoUnix2DosFilename(s
); }
999 void wxUnix2DosFilename(wchar_t *s
) { wxDoUnix2DosFilename(s
); }
1001 // Concatenate two files to form third
1003 wxConcatFiles (const wxString
& file1
, const wxString
& file2
, const wxString
& file3
)
1007 wxFile
in1(file1
), in2(file2
);
1008 wxTempFile
out(file3
);
1010 if ( !in1
.IsOpened() || !in2
.IsOpened() || !out
.IsOpened() )
1014 unsigned char buf
[1024];
1016 for( int i
=0; i
<2; i
++)
1018 wxFile
*in
= i
==0 ? &in1
: &in2
;
1020 if ( (ofs
= in
->Read(buf
,WXSIZEOF(buf
))) == wxInvalidOffset
) return false;
1022 if ( !out
.Write(buf
,ofs
) )
1024 } while ( ofs
== (ssize_t
)WXSIZEOF(buf
) );
1027 return out
.Commit();
1039 // helper of generic implementation of wxCopyFile()
1040 #if !(defined(__WIN32__) || defined(__OS2__) || defined(__PALMOS__)) && \
1044 wxDoCopyFile(wxFile
& fileIn
,
1045 const wxStructStat
& fbuf
,
1046 const wxString
& filenameDst
,
1049 // reset the umask as we want to create the file with exactly the same
1050 // permissions as the original one
1053 // create file2 with the same permissions than file1 and open it for
1057 if ( !fileOut
.Create(filenameDst
, overwrite
, fbuf
.st_mode
& 0777) )
1060 // copy contents of file1 to file2
1064 ssize_t count
= fileIn
.Read(buf
, WXSIZEOF(buf
));
1065 if ( count
== wxInvalidOffset
)
1072 if ( fileOut
.Write(buf
, count
) < (size_t)count
)
1076 // we can expect fileIn to be closed successfully, but we should ensure
1077 // that fileOut was closed as some write errors (disk full) might not be
1078 // detected before doing this
1079 return fileIn
.Close() && fileOut
.Close();
1082 #endif // generic implementation of wxCopyFile
1086 wxCopyFile (const wxString
& file1
, const wxString
& file2
, bool overwrite
)
1088 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
1089 // CopyFile() copies file attributes and modification time too, so use it
1090 // instead of our code if available
1092 // NB: 3rd parameter is bFailIfExists i.e. the inverse of overwrite
1093 if ( !::CopyFile(file1
.fn_str(), file2
.fn_str(), !overwrite
) )
1095 wxLogSysError(_("Failed to copy the file '%s' to '%s'"),
1096 file1
.c_str(), file2
.c_str());
1100 #elif defined(__OS2__)
1101 if ( ::DosCopy(file1
.c_str(), file2
.c_str(), overwrite
? DCPY_EXISTING
: 0) != 0 )
1103 #elif defined(__PALMOS__)
1104 // TODO with http://www.palmos.com/dev/support/docs/protein_books/Memory_Databases_Files/
1106 #elif wxUSE_FILE // !Win32
1109 // get permissions of file1
1110 if ( wxStat( file1
.c_str(), &fbuf
) != 0 )
1112 // the file probably doesn't exist or we haven't the rights to read
1114 wxLogSysError(_("Impossible to get permissions for file '%s'"),
1119 // open file1 for reading
1120 wxFile
fileIn(file1
, wxFile::read
);
1121 if ( !fileIn
.IsOpened() )
1124 // remove file2, if it exists. This is needed for creating
1125 // file2 with the correct permissions in the next step
1126 if ( wxFileExists(file2
) && (!overwrite
|| !wxRemoveFile(file2
)))
1128 wxLogSysError(_("Impossible to overwrite the file '%s'"),
1133 wxDoCopyFile(fileIn
, fbuf
, file2
, overwrite
);
1135 #if defined(__WXMAC__) || defined(__WXCOCOA__)
1136 // copy the resource fork of the file too if it's present
1137 wxString pathRsrcOut
;
1141 // suppress error messages from this block as resource forks don't have
1145 // it's not enough to check for file existence: it always does on HFS
1146 // but is empty for files without resources
1147 if ( fileRsrcIn
.Open(file1
+ wxT("/..namedfork/rsrc")) &&
1148 fileRsrcIn
.Length() > 0 )
1150 // we must be using HFS or another filesystem with resource fork
1151 // support, suppose that destination file system also is HFS[-like]
1152 pathRsrcOut
= file2
+ wxT("/..namedfork/rsrc");
1154 else // check if we have resource fork in separate file (non-HFS case)
1156 wxFileName
fnRsrc(file1
);
1157 fnRsrc
.SetName(wxT("._") + fnRsrc
.GetName());
1160 if ( fileRsrcIn
.Open( fnRsrc
.GetFullPath() ) )
1163 fnRsrc
.SetName(wxT("._") + fnRsrc
.GetName());
1165 pathRsrcOut
= fnRsrc
.GetFullPath();
1170 if ( !pathRsrcOut
.empty() )
1172 if ( !wxDoCopyFile(fileRsrcIn
, fbuf
, pathRsrcOut
, overwrite
) )
1175 #endif // wxMac || wxCocoa
1177 #if !defined(__VISAGECPP__) && !defined(__WXMAC__) || defined(__UNIX__)
1178 // no chmod in VA. Should be some permission API for HPFS386 partitions
1180 if ( chmod(OS_FILENAME(file2
), fbuf
.st_mode
) != 0 )
1182 wxLogSysError(_("Impossible to set permissions for the file '%s'"),
1186 #endif // OS/2 || Mac
1188 #else // !Win32 && ! wxUSE_FILE
1190 // impossible to simulate with wxWidgets API
1193 wxUnusedVar(overwrite
);
1196 #endif // __WXMSW__ && __WIN32__
1202 wxRenameFile(const wxString
& file1
, const wxString
& file2
, bool overwrite
)
1204 if ( !overwrite
&& wxFileExists(file2
) )
1208 _("Failed to rename the file '%s' to '%s' because the destination file already exists."),
1209 file1
.c_str(), file2
.c_str()
1215 #if !defined(__WXWINCE__) && !defined(__WXPALMOS__)
1216 // Normal system call
1217 if ( wxRename (file1
, file2
) == 0 )
1222 if (wxCopyFile(file1
, file2
, overwrite
)) {
1223 wxRemoveFile(file1
);
1230 bool wxRemoveFile(const wxString
& file
)
1232 #if defined(__VISUALC__) \
1233 || defined(__BORLANDC__) \
1234 || defined(__WATCOMC__) \
1235 || defined(__DMC__) \
1236 || defined(__GNUWIN32__) \
1237 || (defined(__MWERKS__) && defined(__MSL__))
1238 int res
= wxRemove(file
);
1239 #elif defined(__WXMAC__)
1240 int res
= unlink(file
.fn_str());
1241 #elif defined(__WXPALMOS__)
1243 // TODO with VFSFileDelete()
1245 int res
= unlink(OS_FILENAME(file
));
1251 bool wxMkdir(const wxString
& dir
, int perm
)
1253 #if defined(__WXPALMOS__)
1255 #elif defined(__WXMAC__) && !defined(__UNIX__)
1256 return (mkdir(dir
.fn_str() , 0 ) == 0);
1258 const wxChar
*dirname
= dir
.c_str();
1260 // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
1261 // for the GNU compiler
1262 #if (!(defined(__WXMSW__) || defined(__OS2__) || defined(__DOS__))) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WINE__) || defined(__WXMICROWIN__)
1265 if ( mkdir(wxFNCONV(dirname
)) != 0 )
1267 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1269 #elif defined(__OS2__)
1271 if (::DosCreateDir((PSZ
)dirname
, NULL
) != 0) // enhance for EAB's??
1272 #elif defined(__DOS__)
1273 #if defined(__WATCOMC__)
1275 if ( wxMkDir(wxFNSTRINGCAST
wxFNCONV(dirname
)) != 0 )
1276 #elif defined(__DJGPP__)
1277 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1279 #error "Unsupported DOS compiler!"
1281 #else // !MSW, !DOS and !OS/2 VAC++
1284 if ( !CreateDirectory(dirname
, NULL
) )
1286 if ( wxMkDir(dir
.fn_str()) != 0 )
1290 wxLogSysError(_("Directory '%s' couldn't be created"), dirname
);
1299 bool wxRmdir(const wxString
& dir
, int WXUNUSED(flags
))
1301 #if defined(__VMS__)
1302 return false; //to be changed since rmdir exists in VMS7.x
1303 #elif defined(__OS2__)
1304 return (::DosDeleteDir(dir
.c_str()) == 0);
1305 #elif defined(__WXWINCE__)
1306 return (RemoveDirectory(dir
) != 0);
1307 #elif defined(__WXPALMOS__)
1308 // TODO with VFSFileRename()
1311 return (wxRmDir(OS_FILENAME(dir
)) == 0);
1315 // does the path exists? (may have or not '/' or '\\' at the end)
1316 bool wxDirExists(const wxString
& pathName
)
1318 wxString
strPath(pathName
);
1320 #if defined(__WINDOWS__) || defined(__OS2__)
1321 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
1322 // so remove all trailing backslashes from the path - but don't do this for
1323 // the paths "d:\" (which are different from "d:") nor for just "\"
1324 while ( wxEndsWithPathSeparator(strPath
) )
1326 size_t len
= strPath
.length();
1327 if ( len
== 1 || (len
== 3 && strPath
[len
- 2] == _T(':')) )
1330 strPath
.Truncate(len
- 1);
1332 #endif // __WINDOWS__
1335 // OS/2 can't handle "d:", it wants either "d:\" or "d:."
1336 if (strPath
.length() == 2 && strPath
[1u] == _T(':'))
1340 #if defined(__WXPALMOS__)
1342 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
1343 // stat() can't cope with network paths
1344 DWORD ret
= ::GetFileAttributes(strPath
.fn_str());
1346 return (ret
!= (DWORD
)-1) && (ret
& FILE_ATTRIBUTE_DIRECTORY
);
1347 #elif defined(__OS2__)
1348 FILESTATUS3 Info
= {{0}};
1349 APIRET rc
= ::DosQueryPathInfo((PSZ
)(WXSTRINGCAST strPath
), FIL_STANDARD
,
1350 (void*) &Info
, sizeof(FILESTATUS3
));
1352 return ((rc
== NO_ERROR
) && (Info
.attrFile
& FILE_DIRECTORY
)) ||
1353 (rc
== ERROR_SHARING_VIOLATION
);
1354 // If we got a sharing violation, there must be something with this name.
1358 #ifndef __VISAGECPP__
1359 return wxStat(strPath
.c_str(), &st
) == 0 && ((st
.st_mode
& S_IFMT
) == S_IFDIR
);
1361 // S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
1362 return wxStat(strPath
.c_str(), &st
) == 0 && (st
.st_mode
== S_IFDIR
);
1365 #endif // __WIN32__/!__WIN32__
1368 // Get a temporary filename, opening and closing the file.
1369 wxChar
*wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
)
1372 if ( !wxGetTempFileName(prefix
, filename
) )
1377 // work around the PalmOS pacc compiler bug
1378 wxStrcpy(buf
, filename
.data());
1380 wxStrcpy(buf
, filename
);
1383 buf
= MYcopystring(filename
);
1388 bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
)
1391 buf
= wxFileName::CreateTempFileName(prefix
);
1393 return !buf
.empty();
1394 #else // !wxUSE_FILE
1395 wxUnusedVar(prefix
);
1399 #endif // wxUSE_FILE/!wxUSE_FILE
1402 // Get first file name matching given wild card.
1404 static wxDir
*gs_dir
= NULL
;
1405 static wxString gs_dirPath
;
1407 wxString
wxFindFirstFile(const wxString
& spec
, int flags
)
1409 wxSplitPath(spec
, &gs_dirPath
, NULL
, NULL
);
1410 if ( gs_dirPath
.empty() )
1411 gs_dirPath
= wxT(".");
1412 if ( !wxEndsWithPathSeparator(gs_dirPath
) )
1413 gs_dirPath
<< wxFILE_SEP_PATH
;
1417 gs_dir
= new wxDir(gs_dirPath
);
1419 if ( !gs_dir
->IsOpened() )
1421 wxLogSysError(_("Can not enumerate files '%s'"), spec
);
1422 return wxEmptyString
;
1428 case wxDIR
: dirFlags
= wxDIR_DIRS
; break;
1429 case wxFILE
: dirFlags
= wxDIR_FILES
; break;
1430 default: dirFlags
= wxDIR_DIRS
| wxDIR_FILES
; break;
1434 gs_dir
->GetFirst(&result
, wxFileNameFromPath(spec
), dirFlags
);
1435 if ( result
.empty() )
1441 return gs_dirPath
+ result
;
1444 wxString
wxFindNextFile()
1446 wxASSERT_MSG( gs_dir
, wxT("You must call wxFindFirstFile before!") );
1449 gs_dir
->GetNext(&result
);
1451 if ( result
.empty() )
1457 return gs_dirPath
+ result
;
1461 // Get current working directory.
1462 // If buf is NULL, allocates space using new, else copies into buf.
1463 // wxGetWorkingDirectory() is obsolete, use wxGetCwd()
1464 // wxDoGetCwd() is their common core to be moved
1465 // to wxGetCwd() once wxGetWorkingDirectory() will be removed.
1466 // Do not expose wxDoGetCwd in headers!
1468 wxChar
*wxDoGetCwd(wxChar
*buf
, int sz
)
1470 #if defined(__WXPALMOS__)
1472 if(buf
&& sz
>0) buf
[0] = _T('\0');
1474 #elif defined(__WXWINCE__)
1476 if(buf
&& sz
>0) buf
[0] = _T('\0');
1481 buf
= new wxChar
[sz
+ 1];
1484 bool ok
wxDUMMY_INITIALIZE(false);
1486 // for the compilers which have Unicode version of _getcwd(), call it
1487 // directly, for the others call the ANSI version and do the translation
1490 #else // wxUSE_UNICODE
1491 bool needsANSI
= true;
1493 #if !defined(HAVE_WGETCWD) || wxUSE_UNICODE_MSLU
1494 char cbuf
[_MAXPATHLEN
];
1498 #if wxUSE_UNICODE_MSLU
1499 if ( wxGetOsVersion() != wxOS_WINDOWS_9X
)
1501 char *cbuf
= NULL
; // never really used because needsANSI will always be false
1504 ok
= _wgetcwd(buf
, sz
) != NULL
;
1510 #endif // wxUSE_UNICODE
1512 #if defined(_MSC_VER) || defined(__MINGW32__)
1513 ok
= _getcwd(cbuf
, sz
) != NULL
;
1514 #elif defined(__OS2__)
1516 ULONG ulDriveNum
= 0;
1517 ULONG ulDriveMap
= 0;
1518 rc
= ::DosQueryCurrentDisk(&ulDriveNum
, &ulDriveMap
);
1523 rc
= ::DosQueryCurrentDir( 0 // current drive
1527 cbuf
[0] = char('A' + (ulDriveNum
- 1));
1532 #else // !Win32/VC++ !Mac !OS2
1533 ok
= getcwd(cbuf
, sz
) != NULL
;
1537 // finally convert the result to Unicode if needed
1538 wxConvFile
.MB2WC(buf
, cbuf
, sz
);
1539 #endif // wxUSE_UNICODE
1544 wxLogSysError(_("Failed to get the working directory"));
1546 // VZ: the old code used to return "." on error which didn't make any
1547 // sense at all to me - empty string is a better error indicator
1548 // (NULL might be even better but I'm afraid this could lead to
1549 // problems with the old code assuming the return is never NULL)
1552 else // ok, but we might need to massage the path into the right format
1555 // VS: DJGPP is a strange mix of DOS and UNIX API and returns paths
1556 // with / deliminers. We don't like that.
1557 for (wxChar
*ch
= buf
; *ch
; ch
++)
1559 if (*ch
== wxT('/'))
1564 // MBN: we hope that in the case the user is compiling a GTK+/Motif app,
1565 // he needs Unix as opposed to Win32 pathnames
1566 #if defined( __CYGWIN__ ) && defined( __WINDOWS__ )
1567 // another example of DOS/Unix mix (Cygwin)
1568 wxString pathUnix
= buf
;
1570 char bufA
[_MAXPATHLEN
];
1571 cygwin_conv_to_full_win32_path(pathUnix
.mb_str(wxConvFile
), bufA
);
1572 wxConvFile
.MB2WC(buf
, bufA
, sz
);
1574 cygwin_conv_to_full_win32_path(pathUnix
, buf
);
1575 #endif // wxUSE_UNICODE
1576 #endif // __CYGWIN__
1589 #if WXWIN_COMPATIBILITY_2_6
1590 wxChar
*wxGetWorkingDirectory(wxChar
*buf
, int sz
)
1592 return wxDoGetCwd(buf
,sz
);
1594 #endif // WXWIN_COMPATIBILITY_2_6
1599 wxDoGetCwd(wxStringBuffer(str
, _MAXPATHLEN
), _MAXPATHLEN
);
1603 bool wxSetWorkingDirectory(const wxString
& d
)
1605 #if defined(__OS2__)
1608 ::DosSetDefaultDisk(wxToupper(d
[0]) - _T('A') + 1);
1609 // do not call DosSetCurrentDir when just changing drive,
1610 // since it requires e.g. "d:." instead of "d:"!
1611 if (d
.length() == 2)
1614 return (::DosSetCurrentDir(d
.c_str()) == 0);
1615 #elif defined(__UNIX__) || defined(__WXMAC__) || defined(__DOS__)
1616 return (chdir(wxFNSTRINGCAST d
.fn_str()) == 0);
1617 #elif defined(__WINDOWS__)
1621 // No equivalent in WinCE
1625 return (bool)(SetCurrentDirectory(d
.fn_str()) != 0);
1628 // Must change drive, too.
1629 bool isDriveSpec
= ((strlen(d
) > 1) && (d
[1] == ':'));
1632 wxChar firstChar
= d
[0];
1636 firstChar
= firstChar
- 32;
1638 // To a drive number
1639 unsigned int driveNo
= firstChar
- 64;
1642 unsigned int noDrives
;
1643 _dos_setdrive(driveNo
, &noDrives
);
1646 bool success
= (chdir(WXSTRINGCAST d
) == 0);
1654 // Get the OS directory if appropriate (such as the Windows directory).
1655 // On non-Windows platform, probably just return the empty string.
1656 wxString
wxGetOSDirectory()
1659 return wxString(wxT("\\Windows"));
1660 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1662 GetWindowsDirectory(buf
, 256);
1663 return wxString(buf
);
1664 #elif defined(__WXMAC__)
1665 return wxMacFindFolder(kOnSystemDisk
, 'macs', false);
1667 return wxEmptyString
;
1671 bool wxEndsWithPathSeparator(const wxString
& filename
)
1673 return !filename
.empty() && wxIsPathSeparator(filename
.Last());
1676 // find a file in a list of directories, returns false if not found
1677 bool wxFindFileInPath(wxString
*pStr
, const wxString
& szPath
, const wxString
& szFile
)
1679 // we assume that it's not empty
1680 wxCHECK_MSG( !szFile
.empty(), false,
1681 _T("empty file name in wxFindFileInPath"));
1683 // skip path separator in the beginning of the file name if present
1685 if ( wxIsPathSeparator(szFile
[0u]) )
1686 szFile2
= szFile
.Mid(1);
1690 wxStringTokenizer
tkn(szPath
, wxPATH_SEP
);
1692 while ( tkn
.HasMoreTokens() )
1694 wxString strFile
= tkn
.GetNextToken();
1695 if ( !wxEndsWithPathSeparator(strFile
) )
1696 strFile
+= wxFILE_SEP_PATH
;
1699 if ( wxFileExists(strFile
) )
1709 void WXDLLIMPEXP_BASE
wxSplitPath(const wxString
& fileName
,
1714 wxFileName::SplitPath(fileName
, pstrPath
, pstrName
, pstrExt
);
1719 time_t WXDLLIMPEXP_BASE
wxFileModificationTime(const wxString
& filename
)
1722 if ( !wxFileName(filename
).GetTimes(NULL
, &mtime
, NULL
) )
1725 return mtime
.GetTicks();
1728 #endif // wxUSE_DATETIME
1731 // Parses the filterStr, returning the number of filters.
1732 // Returns 0 if none or if there's a problem.
1733 // filterStr is in the form: "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpeg"
1735 int WXDLLIMPEXP_BASE
wxParseCommonDialogsFilter(const wxString
& filterStr
,
1736 wxArrayString
& descriptions
,
1737 wxArrayString
& filters
)
1739 descriptions
.Clear();
1742 wxString
str(filterStr
);
1744 wxString description
, filter
;
1746 while( pos
!= wxNOT_FOUND
)
1748 pos
= str
.Find(wxT('|'));
1749 if ( pos
== wxNOT_FOUND
)
1751 // if there are no '|'s at all in the string just take the entire
1752 // string as filter and make description empty for later autocompletion
1753 if ( filters
.IsEmpty() )
1755 descriptions
.Add(wxEmptyString
);
1756 filters
.Add(filterStr
);
1760 wxFAIL_MSG( _T("missing '|' in the wildcard string!") );
1766 description
= str
.Left(pos
);
1767 str
= str
.Mid(pos
+ 1);
1768 pos
= str
.Find(wxT('|'));
1769 if ( pos
== wxNOT_FOUND
)
1775 filter
= str
.Left(pos
);
1776 str
= str
.Mid(pos
+ 1);
1779 descriptions
.Add(description
);
1780 filters
.Add(filter
);
1783 #if defined(__WXMOTIF__)
1784 // split it so there is one wildcard per entry
1785 for( size_t i
= 0 ; i
< descriptions
.GetCount() ; i
++ )
1787 pos
= filters
[i
].Find(wxT(';'));
1788 if (pos
!= wxNOT_FOUND
)
1790 // first split only filters
1791 descriptions
.Insert(descriptions
[i
],i
+1);
1792 filters
.Insert(filters
[i
].Mid(pos
+1),i
+1);
1793 filters
[i
]=filters
[i
].Left(pos
);
1795 // autoreplace new filter in description with pattern:
1796 // C/C++ Files(*.cpp;*.c;*.h)|*.cpp;*.c;*.h
1797 // cause split into:
1798 // C/C++ Files(*.cpp)|*.cpp
1799 // C/C++ Files(*.c;*.h)|*.c;*.h
1800 // and next iteration cause another split into:
1801 // C/C++ Files(*.cpp)|*.cpp
1802 // C/C++ Files(*.c)|*.c
1803 // C/C++ Files(*.h)|*.h
1804 for ( size_t k
=i
;k
<i
+2;k
++ )
1806 pos
= descriptions
[k
].Find(filters
[k
]);
1807 if (pos
!= wxNOT_FOUND
)
1809 wxString before
= descriptions
[k
].Left(pos
);
1810 wxString after
= descriptions
[k
].Mid(pos
+filters
[k
].Len());
1811 pos
= before
.Find(_T('('),true);
1812 if (pos
>before
.Find(_T(')'),true))
1814 before
= before
.Left(pos
+1);
1815 before
<< filters
[k
];
1816 pos
= after
.Find(_T(')'));
1817 int pos1
= after
.Find(_T('('));
1818 if (pos
!= wxNOT_FOUND
&& (pos
<pos1
|| pos1
==wxNOT_FOUND
))
1820 before
<< after
.Mid(pos
);
1821 descriptions
[k
] = before
;
1831 for( size_t j
= 0 ; j
< descriptions
.GetCount() ; j
++ )
1833 if ( descriptions
[j
].empty() && !filters
[j
].empty() )
1835 descriptions
[j
].Printf(_("Files (%s)"), filters
[j
].c_str());
1839 return filters
.GetCount();
1842 #if defined(__WINDOWS__) && !(defined(__UNIX__) || defined(__OS2__))
1843 static bool wxCheckWin32Permission(const wxString
& path
, DWORD access
)
1845 // quoting the MSDN: "To obtain a handle to a directory, call the
1846 // CreateFile function with the FILE_FLAG_BACKUP_SEMANTICS flag", but this
1847 // doesn't work under Win9x/ME but then it's not needed there anyhow
1848 bool isdir
= wxDirExists(path
);
1849 if ( isdir
&& wxGetOsVersion() == wxOS_WINDOWS_9X
)
1851 // FAT directories always allow all access, even if they have the
1852 // readonly flag set
1856 HANDLE h
= ::CreateFile
1860 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
,
1863 isdir
? FILE_FLAG_BACKUP_SEMANTICS
: 0,
1866 if ( h
!= INVALID_HANDLE_VALUE
)
1869 return h
!= INVALID_HANDLE_VALUE
;
1871 #endif // __WINDOWS__
1873 bool wxIsWritable(const wxString
&path
)
1875 #if defined( __UNIX__ ) || defined(__OS2__)
1876 // access() will take in count also symbolic links
1877 return wxAccess(path
.c_str(), W_OK
) == 0;
1878 #elif defined( __WINDOWS__ )
1879 return wxCheckWin32Permission(path
, GENERIC_WRITE
);
1887 bool wxIsReadable(const wxString
&path
)
1889 #if defined( __UNIX__ ) || defined(__OS2__)
1890 // access() will take in count also symbolic links
1891 return wxAccess(path
.c_str(), R_OK
) == 0;
1892 #elif defined( __WINDOWS__ )
1893 return wxCheckWin32Permission(path
, GENERIC_READ
);
1901 bool wxIsExecutable(const wxString
&path
)
1903 #if defined( __UNIX__ ) || defined(__OS2__)
1904 // access() will take in count also symbolic links
1905 return wxAccess(path
.c_str(), X_OK
) == 0;
1906 #elif defined( __WINDOWS__ )
1907 return wxCheckWin32Permission(path
, GENERIC_EXECUTE
);
1915 // Return the type of an open file
1917 // Some file types on some platforms seem seekable but in fact are not.
1918 // The main use of this function is to allow such cases to be detected
1919 // (IsSeekable() is implemented as wxGetFileKind() == wxFILE_KIND_DISK).
1921 // This is important for the archive streams, which benefit greatly from
1922 // being able to seek on a stream, but which will produce corrupt archives
1923 // if they unknowingly seek on a non-seekable stream.
1925 // wxFILE_KIND_DISK is a good catch all return value, since other values
1926 // disable features of the archive streams. Some other value must be returned
1927 // for a file type that appears seekable but isn't.
1930 // * Pipes on Windows
1931 // * Files on VMS with a record format other than StreamLF
1933 wxFileKind
wxGetFileKind(int fd
)
1935 #if defined __WXMSW__ && !defined __WXWINCE__ && defined wxGetOSFHandle
1936 switch (::GetFileType(wxGetOSFHandle(fd
)) & ~FILE_TYPE_REMOTE
)
1938 case FILE_TYPE_CHAR
:
1939 return wxFILE_KIND_TERMINAL
;
1940 case FILE_TYPE_DISK
:
1941 return wxFILE_KIND_DISK
;
1942 case FILE_TYPE_PIPE
:
1943 return wxFILE_KIND_PIPE
;
1946 return wxFILE_KIND_UNKNOWN
;
1948 #elif defined(__UNIX__)
1950 return wxFILE_KIND_TERMINAL
;
1955 if (S_ISFIFO(st
.st_mode
))
1956 return wxFILE_KIND_PIPE
;
1957 if (!S_ISREG(st
.st_mode
))
1958 return wxFILE_KIND_UNKNOWN
;
1960 #if defined(__VMS__)
1961 if (st
.st_fab_rfm
!= FAB$C_STMLF
)
1962 return wxFILE_KIND_UNKNOWN
;
1965 return wxFILE_KIND_DISK
;
1968 #define wxFILEKIND_STUB
1970 return wxFILE_KIND_DISK
;
1974 wxFileKind
wxGetFileKind(FILE *fp
)
1976 // Note: The watcom rtl dll doesn't have fileno (the static lib does).
1977 // Should be fixed in version 1.4.
1978 #if defined(wxFILEKIND_STUB) || wxONLY_WATCOM_EARLIER_THAN(1,4)
1980 return wxFILE_KIND_DISK
;
1981 #elif defined(__WINDOWS__) && !defined(__CYGWIN__) && !defined(__WATCOMC__) && !defined(__WINE__)
1982 return fp
? wxGetFileKind(_fileno(fp
)) : wxFILE_KIND_UNKNOWN
;
1984 return fp
? wxGetFileKind(fileno(fp
)) : wxFILE_KIND_UNKNOWN
;
1989 //------------------------------------------------------------------------
1990 // wild character routines
1991 //------------------------------------------------------------------------
1993 bool wxIsWild( const wxString
& pattern
)
1995 for ( wxString::const_iterator p
= pattern
.begin(); p
!= pattern
.end(); ++p
)
1997 switch ( (*p
).GetValue() )
2006 if ( ++p
== pattern
.end() )
2014 * Written By Douglas A. Lewis <dalewis@cs.Buffalo.EDU>
2016 * The match procedure is public domain code (from ircII's reg.c)
2017 * but modified to suit our tastes (RN: No "%" syntax I guess)
2020 bool wxMatchWild( const wxString
& pat
, const wxString
& text
, bool dot_special
)
2024 /* Match if both are empty. */
2028 const wxChar
*m
= pat
.c_str(),
2036 if (dot_special
&& (*n
== wxT('.')))
2038 /* Never match so that hidden Unix files
2039 * are never found. */
2052 else if (*m
== wxT('?'))
2060 if (*m
== wxT('\\'))
2063 /* Quoting "nothing" is a bad thing */
2070 * If we are out of both strings or we just
2071 * saw a wildcard, then we can say we have a
2082 * We could check for *n == NULL at this point, but
2083 * since it's more common to have a character there,
2084 * check to see if they match first (m and n) and
2085 * then if they don't match, THEN we can check for
2101 * If there are no more characters in the
2102 * string, but we still need to find another
2103 * character (*m != NULL), then it will be
2104 * impossible to match it
2123 #pragma warning(default:4706) // assignment within conditional expression