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()
67 // and for cygwin_conv_path()
69 // note that it must be included after <windows.h>
72 #include <sys/cygwin.h>
73 #include <cygwin/version.h>
75 #endif // __GNUWIN32__
77 // io.h is needed for _get_osfhandle()
78 // Already included by filefn.h for many Windows compilers
79 #if defined __MWERKS__ || defined __CYGWIN__
88 // TODO: Borland probably has _wgetcwd as well?
93 // ----------------------------------------------------------------------------
95 // ----------------------------------------------------------------------------
98 #define _MAXPATHLEN 1024
101 // ----------------------------------------------------------------------------
103 // ----------------------------------------------------------------------------
105 #if WXWIN_COMPATIBILITY_2_8
106 static wxChar wxFileFunctionsBuffer
[4*_MAXPATHLEN
];
109 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
111 // VisualAge C++ V4.0 cannot have any external linkage const decs
112 // in headers included by more than one primary source
114 const int wxInvalidOffset
= -1;
117 // ============================================================================
119 // ============================================================================
121 // ----------------------------------------------------------------------------
122 // wrappers around standard POSIX functions
123 // ----------------------------------------------------------------------------
125 #if wxUSE_UNICODE && defined __BORLANDC__ \
126 && __BORLANDC__ >= 0x550 && __BORLANDC__ <= 0x551
128 // BCC 5.5 and 5.5.1 have a bug in _wopen where files are created read only
129 // regardless of the mode parameter. This hack works around the problem by
130 // setting the mode with _wchmod.
132 int wxCRT_OpenW(const wchar_t *pathname
, int flags
, mode_t mode
)
136 // we only want to fix the mode when the file is actually created, so
137 // when creating first try doing it O_EXCL so we can tell if the file
138 // was already there.
139 if ((flags
& O_CREAT
) && !(flags
& O_EXCL
) && (mode
& wxS_IWUSR
) != 0)
142 int fd
= _wopen(pathname
, flags
| moreflags
, mode
);
144 // the file was actually created and needs fixing
145 if (fd
!= -1 && (flags
& O_CREAT
) != 0 && (mode
& wxS_IWUSR
) != 0)
148 _wchmod(pathname
, mode
);
149 fd
= _wopen(pathname
, flags
& ~(O_EXCL
| O_CREAT
));
151 // the open failed, but it may have been because the added O_EXCL stopped
152 // the opening of an existing file, so try again without.
153 else if (fd
== -1 && moreflags
!= 0)
155 fd
= _wopen(pathname
, flags
& ~O_CREAT
);
163 // ----------------------------------------------------------------------------
165 // ----------------------------------------------------------------------------
167 bool wxPathList::Add(const wxString
& path
)
169 // add a path separator to force wxFileName to interpret it always as a directory
170 // (i.e. if we are called with '/home/user' we want to consider it a folder and
171 // not, as wxFileName would consider, a filename).
172 wxFileName
fn(path
+ wxFileName::GetPathSeparator());
174 // add only normalized relative/absolute paths
175 // NB: we won't do wxPATH_NORM_DOTS in order to avoid problems when trying to
176 // normalize paths which starts with ".." (which can be normalized only if
177 // we use also wxPATH_NORM_ABSOLUTE - which we don't want to use).
178 if (!fn
.Normalize(wxPATH_NORM_TILDE
|wxPATH_NORM_LONG
|wxPATH_NORM_ENV_VARS
))
181 wxString toadd
= fn
.GetPath();
182 if (Index(toadd
) == wxNOT_FOUND
)
183 wxArrayString::Add(toadd
); // do not add duplicates
188 void wxPathList::Add(const wxArrayString
&arr
)
190 for (size_t j
=0; j
< arr
.GetCount(); j
++)
194 // Add paths e.g. from the PATH environment variable
195 void wxPathList::AddEnvList (const wxString
& WXUNUSED_IN_WINCE(envVariable
))
197 // No environment variables on WinCE
200 // The space has been removed from the tokenizers, otherwise a
201 // path such as "C:\Program Files" would be split into 2 paths:
202 // "C:\Program" and "Files"; this is true for both Windows and Unix.
204 static const wxChar PATH_TOKS
[] =
205 #if defined(__WINDOWS__) || defined(__OS2__)
206 wxT(";"); // Don't separate with colon in DOS (used for drive)
212 if ( wxGetEnv(envVariable
, &val
) )
214 // split into an array of string the value of the env var
215 wxArrayString arr
= wxStringTokenize(val
, PATH_TOKS
);
216 WX_APPEND_ARRAY(*this, arr
);
218 #endif // !__WXWINCE__
221 // Given a full filename (with path), ensure that that file can
222 // be accessed again USING FILENAME ONLY by adding the path
223 // to the list if not already there.
224 bool wxPathList::EnsureFileAccessible (const wxString
& path
)
226 return Add(wxPathOnly(path
));
229 #if WXWIN_COMPATIBILITY_2_6
230 bool wxPathList::Member (const wxString
& path
) const
232 return Index(path
) != wxNOT_FOUND
;
236 wxString
wxPathList::FindValidPath (const wxString
& file
) const
238 // normalize the given string as it could be a path + a filename
239 // and not only a filename
243 // NB: normalize without making absolute otherwise calling this function with
244 // e.g. "b/c.txt" would result in removing the directory 'b' and the for loop
245 // below would only add to the paths of this list the 'c.txt' part when doing
246 // the existence checks...
247 // NB: we don't use wxPATH_NORM_DOTS here, too (see wxPathList::Add for more info)
248 if (!fn
.Normalize(wxPATH_NORM_TILDE
|wxPATH_NORM_LONG
|wxPATH_NORM_ENV_VARS
))
249 return wxEmptyString
;
251 wxASSERT_MSG(!fn
.IsDir(), wxT("Cannot search for directories; only for files"));
253 strend
= fn
.GetFullName(); // search for the file name and ignore the path part
255 strend
= fn
.GetFullPath();
257 for (size_t i
=0; i
<GetCount(); i
++)
259 wxString strstart
= Item(i
);
260 if (!strstart
.IsEmpty() && strstart
.Last() != wxFileName::GetPathSeparator())
261 strstart
+= wxFileName::GetPathSeparator();
263 if (wxFileExists(strstart
+ strend
))
264 return strstart
+ strend
; // Found!
267 return wxEmptyString
; // Not found
270 wxString
wxPathList::FindAbsoluteValidPath (const wxString
& file
) const
272 wxString f
= FindValidPath(file
);
273 if ( f
.empty() || wxIsAbsolutePath(f
) )
276 wxString buf
= ::wxGetCwd();
278 if ( !wxEndsWithPathSeparator(buf
) )
280 buf
+= wxFILE_SEP_PATH
;
287 // ----------------------------------------------------------------------------
288 // miscellaneous global functions
289 // ----------------------------------------------------------------------------
291 #if WXWIN_COMPATIBILITY_2_8
292 static inline wxChar
* MYcopystring(const wxString
& s
)
294 wxChar
* copy
= new wxChar
[s
.length() + 1];
295 return wxStrcpy(copy
, s
.c_str());
298 template<typename CharType
>
299 static inline CharType
* MYcopystring(const CharType
* s
)
301 CharType
* copy
= new CharType
[wxStrlen(s
) + 1];
302 return wxStrcpy(copy
, s
);
308 wxFileExists (const wxString
& filename
)
310 return wxFileName::FileExists(filename
);
314 wxIsAbsolutePath (const wxString
& filename
)
316 if (!filename
.empty())
318 // Unix like or Windows
319 if (filename
[0] == wxT('/'))
322 if ((filename
[0] == wxT('[') && filename
[1] != wxT('.')))
325 #if defined(__WINDOWS__) || defined(__OS2__)
327 if (filename
[0] == wxT('\\') || (wxIsalpha (filename
[0]) && filename
[1] == wxT(':')))
334 #if WXWIN_COMPATIBILITY_2_8
336 * Strip off any extension (dot something) from end of file,
337 * IF one exists. Inserts zero into buffer.
342 static void wxDoStripExtension(T
*buffer
)
344 int len
= wxStrlen(buffer
);
348 if (buffer
[i
] == wxT('.'))
357 void wxStripExtension(char *buffer
) { wxDoStripExtension(buffer
); }
358 void wxStripExtension(wchar_t *buffer
) { wxDoStripExtension(buffer
); }
360 void wxStripExtension(wxString
& buffer
)
362 buffer
= wxFileName::StripExtension(buffer
);
365 // Destructive removal of /./ and /../ stuff
366 template<typename CharType
>
367 static CharType
*wxDoRealPath (CharType
*path
)
369 static const CharType SEP
= wxFILE_SEP_PATH
;
371 wxUnix2DosFilename(path
);
373 if (path
[0] && path
[1]) {
374 /* MATTHEW: special case "/./x" */
376 if (path
[2] == SEP
&& path
[1] == wxT('.'))
384 if (p
[1] == wxT('.') && p
[2] == wxT('.') && (p
[3] == SEP
|| p
[3] == wxT('\0')))
387 for (q
= p
- 1; q
>= path
&& *q
!= SEP
; q
--)
392 if (q
[0] == SEP
&& (q
[1] != wxT('.') || q
[2] != wxT('.') || q
[3] != SEP
)
393 && (q
- 1 <= path
|| q
[-1] != SEP
))
396 if (path
[0] == wxT('\0'))
401 #if defined(__WXMSW__) || defined(__OS2__)
402 /* Check that path[2] is NULL! */
403 else if (path
[1] == wxT(':') && !path
[2])
412 else if (p
[1] == wxT('.') && (p
[2] == SEP
|| p
[2] == wxT('\0')))
420 char *wxRealPath(char *path
)
422 return wxDoRealPath(path
);
425 wchar_t *wxRealPath(wchar_t *path
)
427 return wxDoRealPath(path
);
430 wxString
wxRealPath(const wxString
& path
)
432 wxChar
*buf1
=MYcopystring(path
);
433 wxChar
*buf2
=wxRealPath(buf1
);
441 wxChar
*wxCopyAbsolutePath(const wxString
& filename
)
443 if (filename
.empty())
446 if (! wxIsAbsolutePath(wxExpandPath(wxFileFunctionsBuffer
, filename
)))
448 wxString buf
= ::wxGetCwd();
449 wxChar ch
= buf
.Last();
451 if (ch
!= wxT('\\') && ch
!= wxT('/'))
457 buf
<< wxFileFunctionsBuffer
;
458 buf
= wxRealPath( buf
);
459 return MYcopystring( buf
);
461 return MYcopystring( wxFileFunctionsBuffer
);
467 ~user/ => user's home dir
468 If the environment variable a = "foo" and b = "bar" then:
485 /* input name in name, pathname output to buf. */
487 template<typename CharType
>
488 static CharType
*wxDoExpandPath(CharType
*buf
, const wxString
& name
)
490 register CharType
*d
, *s
, *nm
;
491 CharType lnm
[_MAXPATHLEN
];
494 // Some compilers don't like this line.
495 // const CharType trimchars[] = wxT("\n \t");
497 CharType trimchars
[4];
498 trimchars
[0] = wxT('\n');
499 trimchars
[1] = wxT(' ');
500 trimchars
[2] = wxT('\t');
503 static const CharType SEP
= wxFILE_SEP_PATH
;
505 //wxUnix2DosFilename(path);
511 nm
= ::MYcopystring(static_cast<const CharType
*>(name
.c_str())); // Make a scratch copy
512 CharType
*nm_tmp
= nm
;
514 /* Skip leading whitespace and cr */
515 while (wxStrchr(trimchars
, *nm
) != NULL
)
517 /* And strip off trailing whitespace and cr */
518 s
= nm
+ (q
= wxStrlen(nm
)) - 1;
519 while (q
-- && wxStrchr(trimchars
, *s
) != NULL
)
527 q
= nm
[0] == wxT('\\') && nm
[1] == wxT('~');
530 /* Expand inline environment variables */
548 while ((*d
++ = *s
) != 0) {
550 if (*s
== wxT('\\')) {
551 if ((*(d
- 1) = *++s
)!=0) {
559 // No env variables on WinCE
562 if (*s
++ == wxT('$') && (*s
== wxT('{') || *s
== wxT(')')))
564 if (*s
++ == wxT('$'))
567 register CharType
*start
= d
;
568 register int braces
= (*s
== wxT('{') || *s
== wxT('('));
569 register CharType
*value
;
570 while ((*d
++ = *s
) != 0)
571 if (braces
? (*s
== wxT('}') || *s
== wxT(')')) : !(wxIsalnum(*s
) || *s
== wxT('_')) )
576 value
= wxGetenv(braces
? start
+ 1 : start
);
578 for ((d
= start
- 1); (*d
++ = *value
++) != 0;)
592 /* Expand ~ and ~user */
595 if (nm
[0] == wxT('~') && !q
)
598 if (nm
[1] == SEP
|| nm
[1] == 0)
600 homepath
= wxGetUserHome(wxEmptyString
);
601 if (!homepath
.empty()) {
602 s
= (CharType
*)(const CharType
*)homepath
.c_str();
607 { /* ~user/filename */
608 register CharType
*nnm
;
609 for (s
= nm
; *s
&& *s
!= SEP
; s
++)
613 int was_sep
; /* MATTHEW: Was there a separator, or NULL? */
614 was_sep
= (*s
== SEP
);
615 nnm
= *s
? s
+ 1 : s
;
617 homepath
= wxGetUserHome(wxString(nm
+ 1));
618 if (homepath
.empty())
620 if (was_sep
) /* replace only if it was there: */
627 s
= (CharType
*)(const CharType
*)homepath
.c_str();
633 if (s
&& *s
) { /* MATTHEW: s could be NULL if user '~' didn't exist */
635 while (wxT('\0') != (*d
++ = *s
++))
638 if (d
- 1 > buf
&& *(d
- 2) != SEP
)
642 while ((*d
++ = *s
++) != 0)
646 delete[] nm_tmp
; // clean up alloc
647 /* Now clean up the buffer */
648 return wxRealPath(buf
);
651 char *wxExpandPath(char *buf
, const wxString
& name
)
653 return wxDoExpandPath(buf
, name
);
656 wchar_t *wxExpandPath(wchar_t *buf
, const wxString
& name
)
658 return wxDoExpandPath(buf
, name
);
662 /* Contract Paths to be build upon an environment variable
665 example: "/usr/openwin/lib", OPENWINHOME --> ${OPENWINHOME}/lib
667 The call wxExpandPath can convert these back!
670 wxContractPath (const wxString
& filename
,
671 const wxString
& WXUNUSED_IN_WINCE(envname
),
672 const wxString
& user
)
674 static wxChar dest
[_MAXPATHLEN
];
676 if (filename
.empty())
679 wxStrcpy (dest
, filename
);
681 wxUnix2DosFilename(dest
);
684 // Handle environment
688 if (!envname
.empty() && !(val
= wxGetenv (envname
)).empty() &&
689 (tcp
= wxStrstr (dest
, val
)) != NULL
)
691 wxStrcpy (wxFileFunctionsBuffer
, tcp
+ val
.length());
694 wxStrcpy (tcp
, envname
);
695 wxStrcat (tcp
, wxT("}"));
696 wxStrcat (tcp
, wxFileFunctionsBuffer
);
700 // Handle User's home (ignore root homes!)
701 val
= wxGetUserHome (user
);
705 const size_t len
= val
.length();
709 if (wxStrncmp(dest
, val
, len
) == 0)
711 wxStrcpy(wxFileFunctionsBuffer
, wxT("~"));
713 wxStrcat(wxFileFunctionsBuffer
, user
);
714 wxStrcat(wxFileFunctionsBuffer
, dest
+ len
);
715 wxStrcpy (dest
, wxFileFunctionsBuffer
);
721 #endif // #if WXWIN_COMPATIBILITY_2_8
723 // Return just the filename, not the path (basename)
724 wxChar
*wxFileNameFromPath (wxChar
*path
)
727 wxString n
= wxFileNameFromPath(p
);
729 return path
+ p
.length() - n
.length();
732 wxString
wxFileNameFromPath (const wxString
& path
)
734 return wxFileName(path
).GetFullName();
737 // Return just the directory, or NULL if no directory
739 wxPathOnly (wxChar
*path
)
743 static wxChar buf
[_MAXPATHLEN
];
746 wxStrcpy (buf
, path
);
748 int l
= wxStrlen(path
);
751 // Search backward for a backward or forward slash
754 // Unix like or Windows
755 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
761 if (path
[i
] == wxT(']'))
770 #if defined(__WXMSW__) || defined(__OS2__)
771 // Try Drive specifier
772 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
774 // A:junk --> A:. (since A:.\junk Not A:\junk)
784 // Return just the directory, or NULL if no directory
785 wxString
wxPathOnly (const wxString
& path
)
789 wxChar buf
[_MAXPATHLEN
];
794 int l
= path
.length();
797 // Search backward for a backward or forward slash
800 // Unix like or Windows
801 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
803 // Don't return an empty string
807 return wxString(buf
);
810 if (path
[i
] == wxT(']'))
813 return wxString(buf
);
819 #if defined(__WXMSW__) || defined(__OS2__)
820 // Try Drive specifier
821 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
823 // A:junk --> A:. (since A:.\junk Not A:\junk)
826 return wxString(buf
);
830 return wxEmptyString
;
833 // Utility for converting delimiters in DOS filenames to UNIX style
834 // and back again - or we get nasty problems with delimiters.
835 // Also, convert to lower case, since case is significant in UNIX.
837 #if defined(__WXMAC__) && !defined(__WXOSX_IPHONE__)
839 #define kDefaultPathStyle kCFURLPOSIXPathStyle
841 wxString
wxMacFSRefToPath( const FSRef
*fsRef
, CFStringRef additionalPathComponent
)
844 fullURLRef
= CFURLCreateFromFSRef(NULL
, fsRef
);
845 if ( additionalPathComponent
)
847 CFURLRef parentURLRef
= fullURLRef
;
848 fullURLRef
= CFURLCreateCopyAppendingPathComponent(NULL
, parentURLRef
,
849 additionalPathComponent
,false);
850 CFRelease( parentURLRef
) ;
852 CFStringRef cfString
= CFURLCopyFileSystemPath(fullURLRef
, kDefaultPathStyle
);
853 CFRelease( fullURLRef
) ;
854 CFMutableStringRef cfMutableString
= CFStringCreateMutableCopy(NULL
, 0, cfString
);
855 CFRelease( cfString
);
856 CFStringNormalize(cfMutableString
,kCFStringNormalizationFormC
);
857 return wxCFStringRef(cfMutableString
).AsString();
860 OSStatus
wxMacPathToFSRef( const wxString
&path
, FSRef
*fsRef
)
862 OSStatus err
= noErr
;
863 CFMutableStringRef cfMutableString
= CFStringCreateMutableCopy(NULL
, 0, wxCFStringRef(path
));
864 CFStringNormalize(cfMutableString
,kCFStringNormalizationFormD
);
865 CFURLRef url
= CFURLCreateWithFileSystemPath(kCFAllocatorDefault
, cfMutableString
, kDefaultPathStyle
, false);
866 CFRelease( cfMutableString
);
869 if ( CFURLGetFSRef(url
, fsRef
) == false )
880 wxString
wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname
)
882 CFStringRef cfname
= CFStringCreateWithCharacters( kCFAllocatorDefault
,
885 CFMutableStringRef cfMutableString
= CFStringCreateMutableCopy(NULL
, 0, cfname
);
887 CFStringNormalize(cfMutableString
,kCFStringNormalizationFormC
);
888 return wxCFStringRef(cfMutableString
).AsString() ;
893 wxString
wxMacFSSpec2MacFilename( const FSSpec
*spec
)
896 if ( FSpMakeFSRef( spec
, &fsRef
) == noErr
)
898 return wxMacFSRefToPath( &fsRef
) ;
900 return wxEmptyString
;
903 void wxMacFilename2FSSpec( const wxString
& path
, FSSpec
*spec
)
905 OSStatus err
= noErr
;
907 wxMacPathToFSRef( path
, &fsRef
);
908 err
= FSGetCatalogInfo(&fsRef
, kFSCatInfoNone
, NULL
, NULL
, spec
, NULL
);
916 #if WXWIN_COMPATIBILITY_2_8
919 static void wxDoDos2UnixFilename(T
*s
)
928 *s
= wxTolower(*s
); // Case INDEPENDENT
934 void wxDos2UnixFilename(char *s
) { wxDoDos2UnixFilename(s
); }
935 void wxDos2UnixFilename(wchar_t *s
) { wxDoDos2UnixFilename(s
); }
939 #if defined(__WXMSW__) || defined(__OS2__)
940 wxDoUnix2DosFilename(T
*s
)
942 wxDoUnix2DosFilename(T
*WXUNUSED(s
) )
945 // Yes, I really mean this to happen under DOS only! JACS
946 #if defined(__WXMSW__) || defined(__OS2__)
957 void wxUnix2DosFilename(char *s
) { wxDoUnix2DosFilename(s
); }
958 void wxUnix2DosFilename(wchar_t *s
) { wxDoUnix2DosFilename(s
); }
960 #endif // #if WXWIN_COMPATIBILITY_2_8
962 // Concatenate two files to form third
964 wxConcatFiles (const wxString
& file1
, const wxString
& file2
, const wxString
& file3
)
968 wxFile
in1(file1
), in2(file2
);
969 wxTempFile
out(file3
);
971 if ( !in1
.IsOpened() || !in2
.IsOpened() || !out
.IsOpened() )
975 unsigned char buf
[1024];
977 for( int i
=0; i
<2; i
++)
979 wxFile
*in
= i
==0 ? &in1
: &in2
;
981 if ( (ofs
= in
->Read(buf
,WXSIZEOF(buf
))) == wxInvalidOffset
) return false;
983 if ( !out
.Write(buf
,ofs
) )
985 } while ( ofs
== (ssize_t
)WXSIZEOF(buf
) );
1000 // helper of generic implementation of wxCopyFile()
1001 #if !(defined(__WIN32__) || defined(__OS2__) || defined(__PALMOS__)) && \
1005 wxDoCopyFile(wxFile
& fileIn
,
1006 const wxStructStat
& fbuf
,
1007 const wxString
& filenameDst
,
1010 // reset the umask as we want to create the file with exactly the same
1011 // permissions as the original one
1014 // create file2 with the same permissions than file1 and open it for
1018 if ( !fileOut
.Create(filenameDst
, overwrite
, fbuf
.st_mode
& 0777) )
1021 // copy contents of file1 to file2
1025 ssize_t count
= fileIn
.Read(buf
, WXSIZEOF(buf
));
1026 if ( count
== wxInvalidOffset
)
1033 if ( fileOut
.Write(buf
, count
) < (size_t)count
)
1037 // we can expect fileIn to be closed successfully, but we should ensure
1038 // that fileOut was closed as some write errors (disk full) might not be
1039 // detected before doing this
1040 return fileIn
.Close() && fileOut
.Close();
1043 #endif // generic implementation of wxCopyFile
1047 wxCopyFile (const wxString
& file1
, const wxString
& file2
, bool overwrite
)
1049 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
1050 // CopyFile() copies file attributes and modification time too, so use it
1051 // instead of our code if available
1053 // NB: 3rd parameter is bFailIfExists i.e. the inverse of overwrite
1054 if ( !::CopyFile(file1
.t_str(), file2
.t_str(), !overwrite
) )
1056 wxLogSysError(_("Failed to copy the file '%s' to '%s'"),
1057 file1
.c_str(), file2
.c_str());
1061 #elif defined(__OS2__)
1062 if ( ::DosCopy(file1
.c_str(), file2
.c_str(), overwrite
? DCPY_EXISTING
: 0) != 0 )
1064 #elif defined(__PALMOS__)
1065 // TODO with http://www.palmos.com/dev/support/docs/protein_books/Memory_Databases_Files/
1067 #elif wxUSE_FILE // !Win32
1070 // get permissions of file1
1071 if ( wxStat( file1
, &fbuf
) != 0 )
1073 // the file probably doesn't exist or we haven't the rights to read
1075 wxLogSysError(_("Impossible to get permissions for file '%s'"),
1080 // open file1 for reading
1081 wxFile
fileIn(file1
, wxFile::read
);
1082 if ( !fileIn
.IsOpened() )
1085 // remove file2, if it exists. This is needed for creating
1086 // file2 with the correct permissions in the next step
1087 if ( wxFileExists(file2
) && (!overwrite
|| !wxRemoveFile(file2
)))
1089 wxLogSysError(_("Impossible to overwrite the file '%s'"),
1094 wxDoCopyFile(fileIn
, fbuf
, file2
, overwrite
);
1096 #if defined(__WXMAC__) || defined(__WXCOCOA__)
1097 // copy the resource fork of the file too if it's present
1098 wxString pathRsrcOut
;
1102 // suppress error messages from this block as resource forks don't have
1106 // it's not enough to check for file existence: it always does on HFS
1107 // but is empty for files without resources
1108 if ( fileRsrcIn
.Open(file1
+ wxT("/..namedfork/rsrc")) &&
1109 fileRsrcIn
.Length() > 0 )
1111 // we must be using HFS or another filesystem with resource fork
1112 // support, suppose that destination file system also is HFS[-like]
1113 pathRsrcOut
= file2
+ wxT("/..namedfork/rsrc");
1115 else // check if we have resource fork in separate file (non-HFS case)
1117 wxFileName
fnRsrc(file1
);
1118 fnRsrc
.SetName(wxT("._") + fnRsrc
.GetName());
1121 if ( fileRsrcIn
.Open( fnRsrc
.GetFullPath() ) )
1124 fnRsrc
.SetName(wxT("._") + fnRsrc
.GetName());
1126 pathRsrcOut
= fnRsrc
.GetFullPath();
1131 if ( !pathRsrcOut
.empty() )
1133 if ( !wxDoCopyFile(fileRsrcIn
, fbuf
, pathRsrcOut
, overwrite
) )
1136 #endif // wxMac || wxCocoa
1138 #if !defined(__VISAGECPP__) && !defined(__WXMAC__) || defined(__UNIX__)
1139 // no chmod in VA. Should be some permission API for HPFS386 partitions
1141 if ( chmod(file2
.fn_str(), fbuf
.st_mode
) != 0 )
1143 wxLogSysError(_("Impossible to set permissions for the file '%s'"),
1147 #endif // OS/2 || Mac
1149 #else // !Win32 && ! wxUSE_FILE
1151 // impossible to simulate with wxWidgets API
1154 wxUnusedVar(overwrite
);
1157 #endif // __WXMSW__ && __WIN32__
1163 wxRenameFile(const wxString
& file1
, const wxString
& file2
, bool overwrite
)
1165 if ( !overwrite
&& wxFileExists(file2
) )
1169 _("Failed to rename the file '%s' to '%s' because the destination file already exists."),
1170 file1
.c_str(), file2
.c_str()
1176 #if !defined(__WXWINCE__) && !defined(__WXPALMOS__)
1177 // Normal system call
1178 if ( wxRename (file1
, file2
) == 0 )
1183 if (wxCopyFile(file1
, file2
, overwrite
)) {
1184 wxRemoveFile(file1
);
1191 bool wxRemoveFile(const wxString
& file
)
1193 #if defined(__VISUALC__) \
1194 || defined(__BORLANDC__) \
1195 || defined(__WATCOMC__) \
1196 || defined(__DMC__) \
1197 || defined(__GNUWIN32__) \
1198 || (defined(__MWERKS__) && defined(__MSL__))
1199 int res
= wxRemove(file
);
1200 #elif defined(__WXMAC__)
1201 int res
= unlink(file
.fn_str());
1202 #elif defined(__WXPALMOS__)
1204 // TODO with VFSFileDelete()
1206 int res
= unlink(file
.fn_str());
1212 bool wxMkdir(const wxString
& dir
, int perm
)
1214 #if defined(__WXPALMOS__)
1217 #if defined(__WXMAC__) && !defined(__UNIX__)
1218 if ( mkdir(dir
.fn_str(), 0) != 0 )
1220 // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
1221 // for the GNU compiler
1222 #elif (!(defined(__WXMSW__) || defined(__OS2__) || defined(__DOS__))) || \
1223 (defined(__GNUWIN32__) && !defined(__MINGW32__)) || \
1224 defined(__WINE__) || defined(__WXMICROWIN__)
1225 const wxChar
*dirname
= dir
.c_str();
1228 if ( mkdir(wxFNCONV(dirname
)) != 0 )
1230 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1232 #elif defined(__OS2__)
1234 if (::DosCreateDir(dir
.c_str(), NULL
) != 0) // enhance for EAB's??
1235 #elif defined(__DOS__)
1236 const wxChar
*dirname
= dir
.c_str();
1237 #if defined(__WATCOMC__)
1239 if ( wxMkDir(wxFNSTRINGCAST
wxFNCONV(dirname
)) != 0 )
1240 #elif defined(__DJGPP__)
1241 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1243 #error "Unsupported DOS compiler!"
1245 #else // !MSW, !DOS and !OS/2 VAC++
1248 if ( CreateDirectory(dir
.fn_str(), NULL
) == 0 )
1250 if ( wxMkDir(dir
.fn_str()) != 0 )
1254 wxLogSysError(_("Directory '%s' couldn't be created"), dir
);
1259 #endif // PALMOS/!PALMOS
1262 bool wxRmdir(const wxString
& dir
, int WXUNUSED(flags
))
1264 #if defined(__VMS__)
1265 return false; //to be changed since rmdir exists in VMS7.x
1266 #elif defined(__WXPALMOS__)
1267 // TODO with VFSFileRename()
1270 #if defined(__OS2__)
1271 if ( ::DosDeleteDir(dir
.c_str()) != 0 )
1272 #elif defined(__WXWINCE__)
1273 if ( RemoveDirectory(dir
.fn_str()) == 0 )
1275 if ( wxRmDir(dir
.fn_str()) != 0 )
1278 wxLogSysError(_("Directory '%s' couldn't be deleted"), dir
);
1283 #endif // PALMOS/!PALMOS
1286 // does the path exists? (may have or not '/' or '\\' at the end)
1287 bool wxDirExists(const wxString
& pathName
)
1289 return wxFileName::DirExists(pathName
);
1292 #if WXWIN_COMPATIBILITY_2_8
1294 // Get a temporary filename, opening and closing the file.
1295 wxChar
*wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
)
1298 if ( !wxGetTempFileName(prefix
, filename
) )
1303 // work around the PalmOS pacc compiler bug
1304 wxStrcpy(buf
, filename
.data());
1306 wxStrcpy(buf
, filename
);
1309 buf
= MYcopystring(filename
);
1314 bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
)
1317 buf
= wxFileName::CreateTempFileName(prefix
);
1319 return !buf
.empty();
1320 #else // !wxUSE_FILE
1321 wxUnusedVar(prefix
);
1325 #endif // wxUSE_FILE/!wxUSE_FILE
1328 #endif // #if WXWIN_COMPATIBILITY_2_8
1330 // Get first file name matching given wild card.
1332 static wxDir
*gs_dir
= NULL
;
1333 static wxString gs_dirPath
;
1335 wxString
wxFindFirstFile(const wxString
& spec
, int flags
)
1337 wxFileName::SplitPath(spec
, &gs_dirPath
, NULL
, NULL
);
1338 if ( gs_dirPath
.empty() )
1339 gs_dirPath
= wxT(".");
1340 if ( !wxEndsWithPathSeparator(gs_dirPath
) )
1341 gs_dirPath
<< wxFILE_SEP_PATH
;
1343 delete gs_dir
; // can be NULL, this is ok
1344 gs_dir
= new wxDir(gs_dirPath
);
1346 if ( !gs_dir
->IsOpened() )
1348 wxLogSysError(_("Cannot enumerate files '%s'"), spec
);
1349 return wxEmptyString
;
1355 case wxDIR
: dirFlags
= wxDIR_DIRS
; break;
1356 case wxFILE
: dirFlags
= wxDIR_FILES
; break;
1357 default: dirFlags
= wxDIR_DIRS
| wxDIR_FILES
; break;
1361 gs_dir
->GetFirst(&result
, wxFileNameFromPath(spec
), dirFlags
);
1362 if ( result
.empty() )
1368 return gs_dirPath
+ result
;
1371 wxString
wxFindNextFile()
1373 wxCHECK_MSG( gs_dir
, "", "You must call wxFindFirstFile before!" );
1376 gs_dir
->GetNext(&result
);
1378 if ( result
.empty() )
1384 return gs_dirPath
+ result
;
1388 // Get current working directory.
1389 // If buf is NULL, allocates space using new, else copies into buf.
1390 // wxGetWorkingDirectory() is obsolete, use wxGetCwd()
1391 // wxDoGetCwd() is their common core to be moved
1392 // to wxGetCwd() once wxGetWorkingDirectory() will be removed.
1393 // Do not expose wxDoGetCwd in headers!
1395 wxChar
*wxDoGetCwd(wxChar
*buf
, int sz
)
1397 #if defined(__WXPALMOS__)
1399 if(buf
&& sz
>0) buf
[0] = wxT('\0');
1401 #elif defined(__WXWINCE__)
1403 if(buf
&& sz
>0) buf
[0] = wxT('\0');
1408 buf
= new wxChar
[sz
+ 1];
1411 bool ok
wxDUMMY_INITIALIZE(false);
1413 // for the compilers which have Unicode version of _getcwd(), call it
1414 // directly, for the others call the ANSI version and do the translation
1417 #else // wxUSE_UNICODE
1418 bool needsANSI
= true;
1420 #if !defined(HAVE_WGETCWD) || wxUSE_UNICODE_MSLU
1421 char cbuf
[_MAXPATHLEN
];
1425 #if wxUSE_UNICODE_MSLU
1426 if ( wxGetOsVersion() != wxOS_WINDOWS_9X
)
1428 char *cbuf
= NULL
; // never really used because needsANSI will always be false
1431 ok
= _wgetcwd(buf
, sz
) != NULL
;
1437 #endif // wxUSE_UNICODE
1439 #if defined(_MSC_VER) || defined(__MINGW32__)
1440 ok
= _getcwd(cbuf
, sz
) != NULL
;
1441 #elif defined(__OS2__)
1443 ULONG ulDriveNum
= 0;
1444 ULONG ulDriveMap
= 0;
1445 rc
= ::DosQueryCurrentDisk(&ulDriveNum
, &ulDriveMap
);
1450 rc
= ::DosQueryCurrentDir( 0 // current drive
1454 cbuf
[0] = char('A' + (ulDriveNum
- 1));
1459 #else // !Win32/VC++ !Mac !OS2
1460 ok
= getcwd(cbuf
, sz
) != NULL
;
1464 // finally convert the result to Unicode if needed
1465 wxConvFile
.MB2WC(buf
, cbuf
, sz
);
1466 #endif // wxUSE_UNICODE
1471 wxLogSysError(_("Failed to get the working directory"));
1473 // VZ: the old code used to return "." on error which didn't make any
1474 // sense at all to me - empty string is a better error indicator
1475 // (NULL might be even better but I'm afraid this could lead to
1476 // problems with the old code assuming the return is never NULL)
1479 else // ok, but we might need to massage the path into the right format
1482 // VS: DJGPP is a strange mix of DOS and UNIX API and returns paths
1483 // with / deliminers. We don't like that.
1484 for (wxChar
*ch
= buf
; *ch
; ch
++)
1486 if (*ch
== wxT('/'))
1491 // MBN: we hope that in the case the user is compiling a GTK+/Motif app,
1492 // he needs Unix as opposed to Win32 pathnames
1493 #if defined( __CYGWIN__ ) && defined( __WINDOWS__ )
1494 // another example of DOS/Unix mix (Cygwin)
1495 wxString pathUnix
= buf
;
1497 #if CYGWIN_VERSION_DLL_MAJOR >= 1007
1498 cygwin_conv_path(CCP_POSIX_TO_WIN_W
, pathUnix
.mb_str(wxConvFile
), buf
, sz
);
1500 char bufA
[_MAXPATHLEN
];
1501 cygwin_conv_to_full_win32_path(pathUnix
.mb_str(wxConvFile
), bufA
);
1502 wxConvFile
.MB2WC(buf
, bufA
, sz
);
1505 #if CYGWIN_VERSION_DLL_MAJOR >= 1007
1506 cygwin_conv_path(CCP_POSIX_TO_WIN_A
, pathUnix
, buf
, sz
);
1508 cygwin_conv_to_full_win32_path(pathUnix
, buf
);
1510 #endif // wxUSE_UNICODE
1511 #endif // __CYGWIN__
1524 #if WXWIN_COMPATIBILITY_2_6
1525 wxChar
*wxGetWorkingDirectory(wxChar
*buf
, int sz
)
1527 return wxDoGetCwd(buf
,sz
);
1529 #endif // WXWIN_COMPATIBILITY_2_6
1534 wxDoGetCwd(wxStringBuffer(str
, _MAXPATHLEN
), _MAXPATHLEN
);
1538 bool wxSetWorkingDirectory(const wxString
& d
)
1540 #if defined(__OS2__)
1543 ::DosSetDefaultDisk(wxToupper(d
[0]) - wxT('A') + 1);
1544 // do not call DosSetCurrentDir when just changing drive,
1545 // since it requires e.g. "d:." instead of "d:"!
1546 if (d
.length() == 2)
1549 return (::DosSetCurrentDir(d
.c_str()) == 0);
1550 #elif defined(__UNIX__) || defined(__WXMAC__) || defined(__DOS__)
1551 return (chdir(wxFNSTRINGCAST d
.fn_str()) == 0);
1552 #elif defined(__WINDOWS__)
1556 // No equivalent in WinCE
1560 return (bool)(SetCurrentDirectory(d
.fn_str()) != 0);
1563 // Must change drive, too.
1564 bool isDriveSpec
= ((strlen(d
) > 1) && (d
[1] == ':'));
1567 wxChar firstChar
= d
[0];
1571 firstChar
= firstChar
- 32;
1573 // To a drive number
1574 unsigned int driveNo
= firstChar
- 64;
1577 unsigned int noDrives
;
1578 _dos_setdrive(driveNo
, &noDrives
);
1581 bool success
= (chdir(WXSTRINGCAST d
) == 0);
1589 // Get the OS directory if appropriate (such as the Windows directory).
1590 // On non-Windows platform, probably just return the empty string.
1591 wxString
wxGetOSDirectory()
1594 return wxString(wxT("\\Windows"));
1595 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1597 GetWindowsDirectory(buf
, 256);
1598 return wxString(buf
);
1599 #elif defined(__WXMAC__) && wxOSX_USE_CARBON
1600 return wxMacFindFolderNoSeparator(kOnSystemDisk
, 'macs', false);
1602 return wxEmptyString
;
1606 bool wxEndsWithPathSeparator(const wxString
& filename
)
1608 return !filename
.empty() && wxIsPathSeparator(filename
.Last());
1611 // find a file in a list of directories, returns false if not found
1612 bool wxFindFileInPath(wxString
*pStr
, const wxString
& szPath
, const wxString
& szFile
)
1614 // we assume that it's not empty
1615 wxCHECK_MSG( !szFile
.empty(), false,
1616 wxT("empty file name in wxFindFileInPath"));
1618 // skip path separator in the beginning of the file name if present
1620 if ( wxIsPathSeparator(szFile
[0u]) )
1621 szFile2
= szFile
.Mid(1);
1625 wxStringTokenizer
tkn(szPath
, wxPATH_SEP
);
1627 while ( tkn
.HasMoreTokens() )
1629 wxString strFile
= tkn
.GetNextToken();
1630 if ( !wxEndsWithPathSeparator(strFile
) )
1631 strFile
+= wxFILE_SEP_PATH
;
1634 if ( wxFileExists(strFile
) )
1644 #if WXWIN_COMPATIBILITY_2_8
1645 void WXDLLIMPEXP_BASE
wxSplitPath(const wxString
& fileName
,
1650 wxFileName::SplitPath(fileName
, pstrPath
, pstrName
, pstrExt
);
1652 #endif // #if WXWIN_COMPATIBILITY_2_8
1656 time_t WXDLLIMPEXP_BASE
wxFileModificationTime(const wxString
& filename
)
1659 if ( !wxFileName(filename
).GetTimes(NULL
, &mtime
, NULL
) )
1662 return mtime
.GetTicks();
1665 #endif // wxUSE_DATETIME
1668 // Parses the filterStr, returning the number of filters.
1669 // Returns 0 if none or if there's a problem.
1670 // filterStr is in the form: "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpeg"
1672 int WXDLLIMPEXP_BASE
wxParseCommonDialogsFilter(const wxString
& filterStr
,
1673 wxArrayString
& descriptions
,
1674 wxArrayString
& filters
)
1676 descriptions
.Clear();
1679 wxString
str(filterStr
);
1681 wxString description
, filter
;
1683 while( pos
!= wxNOT_FOUND
)
1685 pos
= str
.Find(wxT('|'));
1686 if ( pos
== wxNOT_FOUND
)
1688 // if there are no '|'s at all in the string just take the entire
1689 // string as filter and make description empty for later autocompletion
1690 if ( filters
.IsEmpty() )
1692 descriptions
.Add(wxEmptyString
);
1693 filters
.Add(filterStr
);
1697 wxFAIL_MSG( wxT("missing '|' in the wildcard string!") );
1703 description
= str
.Left(pos
);
1704 str
= str
.Mid(pos
+ 1);
1705 pos
= str
.Find(wxT('|'));
1706 if ( pos
== wxNOT_FOUND
)
1712 filter
= str
.Left(pos
);
1713 str
= str
.Mid(pos
+ 1);
1716 descriptions
.Add(description
);
1717 filters
.Add(filter
);
1720 #if defined(__WXMOTIF__)
1721 // split it so there is one wildcard per entry
1722 for( size_t i
= 0 ; i
< descriptions
.GetCount() ; i
++ )
1724 pos
= filters
[i
].Find(wxT(';'));
1725 if (pos
!= wxNOT_FOUND
)
1727 // first split only filters
1728 descriptions
.Insert(descriptions
[i
],i
+1);
1729 filters
.Insert(filters
[i
].Mid(pos
+1),i
+1);
1730 filters
[i
]=filters
[i
].Left(pos
);
1732 // autoreplace new filter in description with pattern:
1733 // C/C++ Files(*.cpp;*.c;*.h)|*.cpp;*.c;*.h
1734 // cause split into:
1735 // C/C++ Files(*.cpp)|*.cpp
1736 // C/C++ Files(*.c;*.h)|*.c;*.h
1737 // and next iteration cause another split into:
1738 // C/C++ Files(*.cpp)|*.cpp
1739 // C/C++ Files(*.c)|*.c
1740 // C/C++ Files(*.h)|*.h
1741 for ( size_t k
=i
;k
<i
+2;k
++ )
1743 pos
= descriptions
[k
].Find(filters
[k
]);
1744 if (pos
!= wxNOT_FOUND
)
1746 wxString before
= descriptions
[k
].Left(pos
);
1747 wxString after
= descriptions
[k
].Mid(pos
+filters
[k
].Len());
1748 pos
= before
.Find(wxT('('),true);
1749 if (pos
>before
.Find(wxT(')'),true))
1751 before
= before
.Left(pos
+1);
1752 before
<< filters
[k
];
1753 pos
= after
.Find(wxT(')'));
1754 int pos1
= after
.Find(wxT('('));
1755 if (pos
!= wxNOT_FOUND
&& (pos
<pos1
|| pos1
==wxNOT_FOUND
))
1757 before
<< after
.Mid(pos
);
1758 descriptions
[k
] = before
;
1768 for( size_t j
= 0 ; j
< descriptions
.GetCount() ; j
++ )
1770 if ( descriptions
[j
].empty() && !filters
[j
].empty() )
1772 descriptions
[j
].Printf(_("Files (%s)"), filters
[j
].c_str());
1776 return filters
.GetCount();
1779 #if defined(__WINDOWS__) && !(defined(__UNIX__) || defined(__OS2__))
1780 static bool wxCheckWin32Permission(const wxString
& path
, DWORD access
)
1782 // quoting the MSDN: "To obtain a handle to a directory, call the
1783 // CreateFile function with the FILE_FLAG_BACKUP_SEMANTICS flag", but this
1784 // doesn't work under Win9x/ME but then it's not needed there anyhow
1785 const DWORD dwAttr
= ::GetFileAttributes(path
.fn_str());
1786 if ( dwAttr
== INVALID_FILE_ATTRIBUTES
)
1788 // file probably doesn't exist at all
1792 if ( wxGetOsVersion() == wxOS_WINDOWS_9X
)
1794 // FAT directories always allow all access, even if they have the
1795 // readonly flag set, and FAT files can only be read-only
1796 return (dwAttr
& FILE_ATTRIBUTE_DIRECTORY
) ||
1797 (access
!= GENERIC_WRITE
||
1798 !(dwAttr
& FILE_ATTRIBUTE_READONLY
));
1801 HANDLE h
= ::CreateFile
1805 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
,
1808 dwAttr
& FILE_ATTRIBUTE_DIRECTORY
1809 ? FILE_FLAG_BACKUP_SEMANTICS
1813 if ( h
!= INVALID_HANDLE_VALUE
)
1816 return h
!= INVALID_HANDLE_VALUE
;
1818 #endif // __WINDOWS__
1820 bool wxIsWritable(const wxString
&path
)
1822 #if defined( __UNIX__ ) || defined(__OS2__)
1823 // access() will take in count also symbolic links
1824 return wxAccess(path
.c_str(), W_OK
) == 0;
1825 #elif defined( __WINDOWS__ )
1826 return wxCheckWin32Permission(path
, GENERIC_WRITE
);
1834 bool wxIsReadable(const wxString
&path
)
1836 #if defined( __UNIX__ ) || defined(__OS2__)
1837 // access() will take in count also symbolic links
1838 return wxAccess(path
.c_str(), R_OK
) == 0;
1839 #elif defined( __WINDOWS__ )
1840 return wxCheckWin32Permission(path
, GENERIC_READ
);
1848 bool wxIsExecutable(const wxString
&path
)
1850 #if defined( __UNIX__ ) || defined(__OS2__)
1851 // access() will take in count also symbolic links
1852 return wxAccess(path
.c_str(), X_OK
) == 0;
1853 #elif defined( __WINDOWS__ )
1854 return wxCheckWin32Permission(path
, GENERIC_EXECUTE
);
1862 // Return the type of an open file
1864 // Some file types on some platforms seem seekable but in fact are not.
1865 // The main use of this function is to allow such cases to be detected
1866 // (IsSeekable() is implemented as wxGetFileKind() == wxFILE_KIND_DISK).
1868 // This is important for the archive streams, which benefit greatly from
1869 // being able to seek on a stream, but which will produce corrupt archives
1870 // if they unknowingly seek on a non-seekable stream.
1872 // wxFILE_KIND_DISK is a good catch all return value, since other values
1873 // disable features of the archive streams. Some other value must be returned
1874 // for a file type that appears seekable but isn't.
1877 // * Pipes on Windows
1878 // * Files on VMS with a record format other than StreamLF
1880 wxFileKind
wxGetFileKind(int fd
)
1882 #if defined __WXMSW__ && !defined __WXWINCE__ && defined wxGetOSFHandle
1883 switch (::GetFileType(wxGetOSFHandle(fd
)) & ~FILE_TYPE_REMOTE
)
1885 case FILE_TYPE_CHAR
:
1886 return wxFILE_KIND_TERMINAL
;
1887 case FILE_TYPE_DISK
:
1888 return wxFILE_KIND_DISK
;
1889 case FILE_TYPE_PIPE
:
1890 return wxFILE_KIND_PIPE
;
1893 return wxFILE_KIND_UNKNOWN
;
1895 #elif defined(__UNIX__)
1897 return wxFILE_KIND_TERMINAL
;
1902 if (S_ISFIFO(st
.st_mode
))
1903 return wxFILE_KIND_PIPE
;
1904 if (!S_ISREG(st
.st_mode
))
1905 return wxFILE_KIND_UNKNOWN
;
1907 #if defined(__VMS__)
1908 if (st
.st_fab_rfm
!= FAB$C_STMLF
)
1909 return wxFILE_KIND_UNKNOWN
;
1912 return wxFILE_KIND_DISK
;
1915 #define wxFILEKIND_STUB
1917 return wxFILE_KIND_DISK
;
1921 wxFileKind
wxGetFileKind(FILE *fp
)
1923 // Note: The watcom rtl dll doesn't have fileno (the static lib does).
1924 // Should be fixed in version 1.4.
1925 #if defined(wxFILEKIND_STUB) || wxONLY_WATCOM_EARLIER_THAN(1,4)
1927 return wxFILE_KIND_DISK
;
1928 #elif defined(__WINDOWS__) && !defined(__CYGWIN__) && !defined(__WATCOMC__) && !defined(__WINE__)
1929 return fp
? wxGetFileKind(_fileno(fp
)) : wxFILE_KIND_UNKNOWN
;
1931 return fp
? wxGetFileKind(fileno(fp
)) : wxFILE_KIND_UNKNOWN
;
1936 //------------------------------------------------------------------------
1937 // wild character routines
1938 //------------------------------------------------------------------------
1940 bool wxIsWild( const wxString
& pattern
)
1942 for ( wxString::const_iterator p
= pattern
.begin(); p
!= pattern
.end(); ++p
)
1944 switch ( (*p
).GetValue() )
1953 if ( ++p
== pattern
.end() )
1961 * Written By Douglas A. Lewis <dalewis@cs.Buffalo.EDU>
1963 * The match procedure is public domain code (from ircII's reg.c)
1964 * but modified to suit our tastes (RN: No "%" syntax I guess)
1967 bool wxMatchWild( const wxString
& pat
, const wxString
& text
, bool dot_special
)
1971 /* Match if both are empty. */
1975 const wxChar
*m
= pat
.c_str(),
1983 if (dot_special
&& (*n
== wxT('.')))
1985 /* Never match so that hidden Unix files
1986 * are never found. */
1999 else if (*m
== wxT('?'))
2007 if (*m
== wxT('\\'))
2010 /* Quoting "nothing" is a bad thing */
2017 * If we are out of both strings or we just
2018 * saw a wildcard, then we can say we have a
2029 * We could check for *n == NULL at this point, but
2030 * since it's more common to have a character there,
2031 * check to see if they match first (m and n) and
2032 * then if they don't match, THEN we can check for
2048 * If there are no more characters in the
2049 * string, but we still need to find another
2050 * character (*m != NULL), then it will be
2051 * impossible to match it
2070 #pragma warning(default:4706) // assignment within conditional expression