1 /////////////////////////////////////////////////////////////////////////////
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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "filefn.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/file.h" // This does include filefn.h
35 #include "wx/filename.h"
38 // there are just too many of those...
40 #pragma warning(disable:4706) // assignment within conditional expression
47 #if !defined(__WATCOMC__)
48 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
53 #if defined(__WXMAC__)
54 #include "wx/mac/private.h" // includes mac headers
59 // No, Cygwin doesn't appear to have fnmatch.h after all.
60 #if defined(HAVE_FNMATCH_H)
65 #include "wx/msw/wrapwin.h"
66 #include "wx/msw/mslu.h"
68 // sys/cygwin.h is needed for cygwin_conv_to_full_win32_path()
70 // note that it must be included after <windows.h>
73 #include <sys/cygwin.h>
75 #endif // __GNUWIN32__
82 // TODO: Borland probably has _wgetcwd as well?
87 // ----------------------------------------------------------------------------
89 // ----------------------------------------------------------------------------
92 #define _MAXPATHLEN 1024
96 # include "MoreFilesX.h"
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 // we need to translate Mac filenames before passing them to OS functions
119 #define OS_FILENAME(s) (s.fn_str())
121 // ============================================================================
123 // ============================================================================
125 #ifdef wxNEED_WX_UNISTD_H
127 WXDLLEXPORT
int wxStat( const wxChar
*file_name
, wxStructStat
*buf
)
129 return stat( wxConvFile
.cWX2MB( file_name
), buf
);
132 WXDLLEXPORT
int wxAccess( const wxChar
*pathname
, int mode
)
134 return access( wxConvFile
.cWX2MB( pathname
), mode
);
137 WXDLLEXPORT
int wxOpen( const wxChar
*pathname
, int flags
, mode_t mode
)
139 return open( wxConvFile
.cWX2MB( pathname
), flags
, mode
);
143 // wxNEED_WX_UNISTD_H
145 // ----------------------------------------------------------------------------
147 // ----------------------------------------------------------------------------
149 // IMPLEMENT_DYNAMIC_CLASS(wxPathList, wxStringList)
151 static inline wxChar
* MYcopystring(const wxString
& s
)
153 wxChar
* copy
= new wxChar
[s
.length() + 1];
154 return wxStrcpy(copy
, s
.c_str());
157 static inline wxChar
* MYcopystring(const wxChar
* s
)
159 wxChar
* copy
= new wxChar
[wxStrlen(s
) + 1];
160 return wxStrcpy(copy
, s
);
163 void wxPathList::Add (const wxString
& path
)
165 wxStringList::Add (WXSTRINGCAST path
);
168 // Add paths e.g. from the PATH environment variable
169 void wxPathList::AddEnvList (const wxString
& envVariable
)
171 // No environment variables on WinCE
173 static const wxChar PATH_TOKS
[] =
174 #if defined(__WINDOWS__) || defined(__OS2__)
176 The space has been removed from the tokenizers, otherwise a
177 path such as "C:\Program Files" would be split into 2 paths:
178 "C:\Program" and "Files"
180 // wxT(" ;"); // Don't seperate with colon in DOS (used for drive)
181 wxT(";"); // Don't seperate with colon in DOS (used for drive)
186 wxChar
*val
= wxGetenv (WXSTRINGCAST envVariable
);
189 wxChar
*s
= MYcopystring (val
);
190 wxChar
*save_ptr
, *token
= wxStrtok (s
, PATH_TOKS
, &save_ptr
);
197 if ( (token
= wxStrtok ((wxChar
*) NULL
, PATH_TOKS
, &save_ptr
))
205 // suppress warning about unused variable save_ptr when wxStrtok() is a
206 // macro which throws away its third argument
214 // Given a full filename (with path), ensure that that file can
215 // be accessed again USING FILENAME ONLY by adding the path
216 // to the list if not already there.
217 void wxPathList::EnsureFileAccessible (const wxString
& path
)
219 wxString
path_only(wxPathOnly(path
));
220 if ( !path_only
.empty() )
222 if ( !Member(path_only
) )
227 bool wxPathList::Member (const wxString
& path
)
229 for (wxStringList::compatibility_iterator node
= GetFirst(); node
; node
= node
->GetNext())
231 wxString
path2( node
->GetData() );
233 #if defined(__WINDOWS__) || defined(__OS2__) || defined(__VMS__) || defined(__WXMAC__)
235 path
.CompareTo (path2
, wxString::ignoreCase
) == 0
237 // Case sensitive File System
238 path
.CompareTo (path2
) == 0
246 wxString
wxPathList::FindValidPath (const wxString
& file
)
248 if (wxFileExists (wxExpandPath(wxFileFunctionsBuffer
, file
)))
249 return wxString(wxFileFunctionsBuffer
);
251 wxChar buf
[_MAXPATHLEN
];
252 wxStrcpy(buf
, wxFileFunctionsBuffer
);
254 wxChar
*filename
= wxIsAbsolutePath (buf
) ? wxFileNameFromPath (buf
) : (wxChar
*)buf
;
256 for (wxStringList::compatibility_iterator node
= GetFirst(); node
; node
= node
->GetNext())
258 const wxChar
*path
= node
->GetData();
259 wxStrcpy (wxFileFunctionsBuffer
, path
);
260 wxChar ch
= wxFileFunctionsBuffer
[wxStrlen(wxFileFunctionsBuffer
)-1];
261 if (ch
!= wxT('\\') && ch
!= wxT('/'))
262 wxStrcat (wxFileFunctionsBuffer
, wxT("/"));
263 wxStrcat (wxFileFunctionsBuffer
, filename
);
265 wxUnix2DosFilename (wxFileFunctionsBuffer
);
267 if (wxFileExists (wxFileFunctionsBuffer
))
269 return wxString(wxFileFunctionsBuffer
); // Found!
273 return wxEmptyString
; // Not found
276 wxString
wxPathList::FindAbsoluteValidPath (const wxString
& file
)
278 wxString f
= FindValidPath(file
);
279 if ( f
.empty() || wxIsAbsolutePath(f
) )
283 wxGetWorkingDirectory(wxStringBuffer(buf
, _MAXPATHLEN
), _MAXPATHLEN
);
285 if ( !wxEndsWithPathSeparator(buf
) )
287 buf
+= wxFILE_SEP_PATH
;
295 wxFileExists (const wxString
& filename
)
297 #if defined(__WXPALMOS__)
299 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
300 // we must use GetFileAttributes() instead of the ANSI C functions because
301 // it can cope with network (UNC) paths unlike them
302 DWORD ret
= ::GetFileAttributes(filename
);
304 return (ret
!= (DWORD
)-1) && !(ret
& FILE_ATTRIBUTE_DIRECTORY
);
307 #ifndef wxNEED_WX_UNISTD_H
308 return wxStat( filename
.fn_str() , &st
) == 0 && (st
.st_mode
& S_IFREG
);
310 return wxStat( filename
, &st
) == 0 && (st
.st_mode
& S_IFREG
);
312 #endif // __WIN32__/!__WIN32__
316 wxIsAbsolutePath (const wxString
& filename
)
318 if (!filename
.empty())
320 #if defined(__WXMAC__) && !defined(__DARWIN__)
321 // Classic or Carbon CodeWarrior like
322 // Carbon with Apple DevTools is Unix like
324 // This seems wrong to me, but there is no fix. since
325 // "MacOS:MyText.txt" is absolute whereas "MyDir:MyText.txt"
326 // is not. Or maybe ":MyDir:MyText.txt" has to be used? RR.
327 if (filename
.Find(':') != wxNOT_FOUND
&& filename
[0] != ':')
330 // Unix like or Windows
331 if (filename
[0] == wxT('/'))
335 if ((filename
[0] == wxT('[') && filename
[1] != wxT('.')))
338 #if defined(__WINDOWS__) || defined(__OS2__)
340 if (filename
[0] == wxT('\\') || (wxIsalpha (filename
[0]) && filename
[1] == wxT(':')))
348 * Strip off any extension (dot something) from end of file,
349 * IF one exists. Inserts zero into buffer.
353 void wxStripExtension(wxChar
*buffer
)
355 int len
= wxStrlen(buffer
);
359 if (buffer
[i
] == wxT('.'))
368 void wxStripExtension(wxString
& buffer
)
370 //RN: Be careful about the handling the case where
371 //buffer.Length() == 0
372 for(size_t i
= buffer
.Length() - 1; i
!= wxString::npos
; --i
)
374 if (buffer
.GetChar(i
) == wxT('.'))
376 buffer
= buffer
.Left(i
);
382 // Destructive removal of /./ and /../ stuff
383 wxChar
*wxRealPath (wxChar
*path
)
386 static const wxChar SEP
= wxT('\\');
387 wxUnix2DosFilename(path
);
389 static const wxChar SEP
= wxT('/');
391 if (path
[0] && path
[1]) {
392 /* MATTHEW: special case "/./x" */
394 if (path
[2] == SEP
&& path
[1] == wxT('.'))
402 if (p
[1] == wxT('.') && p
[2] == wxT('.') && (p
[3] == SEP
|| p
[3] == wxT('\0')))
405 for (q
= p
- 1; q
>= path
&& *q
!= SEP
; q
--)
410 if (q
[0] == SEP
&& (q
[1] != wxT('.') || q
[2] != wxT('.') || q
[3] != SEP
)
411 && (q
- 1 <= path
|| q
[-1] != SEP
))
414 if (path
[0] == wxT('\0'))
419 #if defined(__WXMSW__) || defined(__OS2__)
420 /* Check that path[2] is NULL! */
421 else if (path
[1] == wxT(':') && !path
[2])
430 else if (p
[1] == wxT('.') && (p
[2] == SEP
|| p
[2] == wxT('\0')))
439 wxChar
*wxCopyAbsolutePath(const wxString
& filename
)
441 if (filename
.empty())
442 return (wxChar
*) NULL
;
444 if (! wxIsAbsolutePath(wxExpandPath(wxFileFunctionsBuffer
, filename
))) {
445 wxChar buf
[_MAXPATHLEN
];
447 wxGetWorkingDirectory(buf
, WXSIZEOF(buf
));
448 wxChar ch
= buf
[wxStrlen(buf
) - 1];
450 if (ch
!= wxT('\\') && ch
!= wxT('/'))
451 wxStrcat(buf
, wxT("\\"));
454 wxStrcat(buf
, wxT("/"));
456 wxStrcat(buf
, wxFileFunctionsBuffer
);
457 return MYcopystring( wxRealPath(buf
) );
459 return MYcopystring( wxFileFunctionsBuffer
);
465 ~user/ => user's home dir
466 If the environment variable a = "foo" and b = "bar" then:
483 /* input name in name, pathname output to buf. */
485 wxChar
*wxExpandPath(wxChar
*buf
, const wxChar
*name
)
487 register wxChar
*d
, *s
, *nm
;
488 wxChar lnm
[_MAXPATHLEN
];
491 // Some compilers don't like this line.
492 // const wxChar trimchars[] = wxT("\n \t");
495 trimchars
[0] = wxT('\n');
496 trimchars
[1] = wxT(' ');
497 trimchars
[2] = wxT('\t');
501 const wxChar SEP
= wxT('\\');
503 const wxChar SEP
= wxT('/');
506 if (name
== NULL
|| *name
== wxT('\0'))
508 nm
= MYcopystring(name
); // Make a scratch copy
511 /* Skip leading whitespace and cr */
512 while (wxStrchr((wxChar
*)trimchars
, *nm
) != NULL
)
514 /* And strip off trailing whitespace and cr */
515 s
= nm
+ (q
= wxStrlen(nm
)) - 1;
516 while (q
-- && wxStrchr((wxChar
*)trimchars
, *s
) != NULL
)
524 q
= nm
[0] == wxT('\\') && nm
[1] == wxT('~');
527 /* Expand inline environment variables */
545 while ((*d
++ = *s
) != 0) {
547 if (*s
== wxT('\\')) {
548 if ((*(d
- 1) = *++s
)) {
556 // No env variables on WinCE
559 if (*s
++ == wxT('$') && (*s
== wxT('{') || *s
== wxT(')')))
561 if (*s
++ == wxT('$'))
564 register wxChar
*start
= d
;
565 register int braces
= (*s
== wxT('{') || *s
== wxT('('));
566 register wxChar
*value
;
567 while ((*d
++ = *s
) != 0)
568 if (braces
? (*s
== wxT('}') || *s
== wxT(')')) : !(wxIsalnum(*s
) || *s
== wxT('_')) )
573 value
= wxGetenv(braces
? start
+ 1 : start
);
575 for ((d
= start
- 1); (*d
++ = *value
++) != 0;)
589 /* Expand ~ and ~user */
591 if (nm
[0] == wxT('~') && !q
)
594 if (nm
[1] == SEP
|| nm
[1] == 0)
596 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
597 if ((s
= WXSTRINGCAST
wxGetUserHome(wxEmptyString
)) != NULL
) {
602 { /* ~user/filename */
603 register wxChar
*nnm
;
604 register wxChar
*home
;
605 for (s
= nm
; *s
&& *s
!= SEP
; s
++)
609 int was_sep
; /* MATTHEW: Was there a separator, or NULL? */
610 was_sep
= (*s
== SEP
);
611 nnm
= *s
? s
+ 1 : s
;
613 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
614 if ((home
= WXSTRINGCAST
wxGetUserHome(wxString(nm
+ 1))) == NULL
) {
615 if (was_sep
) /* replace only if it was there: */
626 if (s
&& *s
) { /* MATTHEW: s could be NULL if user '~' didn't exist */
628 while (wxT('\0') != (*d
++ = *s
++))
631 if (d
- 1 > buf
&& *(d
- 2) != SEP
)
635 while ((*d
++ = *s
++) != 0)
639 delete[] nm_tmp
; // clean up alloc
640 /* Now clean up the buffer */
641 return wxRealPath(buf
);
644 /* Contract Paths to be build upon an environment variable
647 example: "/usr/openwin/lib", OPENWINHOME --> ${OPENWINHOME}/lib
649 The call wxExpandPath can convert these back!
652 wxContractPath (const wxString
& filename
, const wxString
& envname
, const wxString
& user
)
654 static wxChar dest
[_MAXPATHLEN
];
656 if (filename
.empty())
657 return (wxChar
*) NULL
;
659 wxStrcpy (dest
, WXSTRINGCAST filename
);
661 wxUnix2DosFilename(dest
);
664 // Handle environment
668 if (envname
!= WXSTRINGCAST NULL
&& (val
= wxGetenv (WXSTRINGCAST envname
)) != NULL
&&
669 (tcp
= wxStrstr (dest
, val
)) != NULL
)
671 wxStrcpy (wxFileFunctionsBuffer
, tcp
+ wxStrlen (val
));
674 wxStrcpy (tcp
, WXSTRINGCAST envname
);
675 wxStrcat (tcp
, wxT("}"));
676 wxStrcat (tcp
, wxFileFunctionsBuffer
);
680 // Handle User's home (ignore root homes!)
681 val
= wxGetUserHome (user
);
685 const size_t len
= wxStrlen(val
);
689 if (wxStrncmp(dest
, val
, len
) == 0)
691 wxStrcpy(wxFileFunctionsBuffer
, wxT("~"));
693 wxStrcat(wxFileFunctionsBuffer
, (const wxChar
*) user
);
694 wxStrcat(wxFileFunctionsBuffer
, dest
+ len
);
695 wxStrcpy (dest
, wxFileFunctionsBuffer
);
701 // Return just the filename, not the path (basename)
702 wxChar
*wxFileNameFromPath (wxChar
*path
)
705 wxString n
= wxFileNameFromPath(p
);
707 return path
+ p
.length() - n
.length();
710 wxString
wxFileNameFromPath (const wxString
& path
)
713 wxFileName::SplitPath(path
, NULL
, &name
, &ext
);
715 wxString fullname
= name
;
718 fullname
<< wxFILE_SEP_EXT
<< ext
;
724 // Return just the directory, or NULL if no directory
726 wxPathOnly (wxChar
*path
)
730 static wxChar buf
[_MAXPATHLEN
];
733 wxStrcpy (buf
, path
);
735 int l
= wxStrlen(path
);
738 // Search backward for a backward or forward slash
741 #if defined(__WXMAC__) && !defined(__DARWIN__)
742 // Classic or Carbon CodeWarrior like
743 // Carbon with Apple DevTools is Unix like
744 if (path
[i
] == wxT(':') )
750 // Unix like or Windows
751 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
758 if (path
[i
] == wxT(']'))
767 #if defined(__WXMSW__) || defined(__OS2__)
768 // Try Drive specifier
769 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
771 // A:junk --> A:. (since A:.\junk Not A:\junk)
778 return (wxChar
*) NULL
;
781 // Return just the directory, or NULL if no directory
782 wxString
wxPathOnly (const wxString
& path
)
786 wxChar buf
[_MAXPATHLEN
];
789 wxStrcpy (buf
, WXSTRINGCAST path
);
791 int l
= path
.Length();
794 // Search backward for a backward or forward slash
797 #if defined(__WXMAC__) && !defined(__DARWIN__)
798 // Classic or Carbon CodeWarrior like
799 // Carbon with Apple DevTools is Unix like
800 if (path
[i
] == wxT(':') )
803 return wxString(buf
);
806 // Unix like or Windows
807 if (path
[i
] == wxT('/') || path
[i
] == wxT('\\'))
809 // Don't return an empty string
813 return wxString(buf
);
817 if (path
[i
] == wxT(']'))
820 return wxString(buf
);
826 #if defined(__WXMSW__) || defined(__OS2__)
827 // Try Drive specifier
828 if (wxIsalpha (buf
[0]) && buf
[1] == wxT(':'))
830 // A:junk --> A:. (since A:.\junk Not A:\junk)
833 return wxString(buf
);
837 return wxEmptyString
;
840 // Utility for converting delimiters in DOS filenames to UNIX style
841 // and back again - or we get nasty problems with delimiters.
842 // Also, convert to lower case, since case is significant in UNIX.
844 #if defined(__WXMAC__)
846 #if TARGET_API_MAC_OSX
847 #define kDefaultPathStyle kCFURLPOSIXPathStyle
849 #define kDefaultPathStyle kCFURLHFSPathStyle
852 wxString
wxMacFSRefToPath( const FSRef
*fsRef
, CFStringRef additionalPathComponent
)
855 fullURLRef
= CFURLCreateFromFSRef(NULL
, fsRef
);
856 if ( additionalPathComponent
)
858 CFURLRef parentURLRef
= fullURLRef
;
859 fullURLRef
= CFURLCreateCopyAppendingPathComponent(NULL
, parentURLRef
,
860 additionalPathComponent
,false);
861 CFRelease( parentURLRef
) ;
863 CFStringRef cfString
= CFURLCopyFileSystemPath(fullURLRef
, kDefaultPathStyle
);
864 CFRelease( fullURLRef
) ;
865 return wxMacCFStringHolder(cfString
).AsString(wxLocale::GetSystemEncoding());
868 OSStatus
wxMacPathToFSRef( const wxString
&path
, FSRef
*fsRef
)
870 OSStatus err
= noErr
;
871 CFURLRef url
= CFURLCreateWithFileSystemPath(kCFAllocatorDefault
, wxMacCFStringHolder(path
,wxLocale::GetSystemEncoding() ) , kDefaultPathStyle
, false);
874 if ( CFURLGetFSRef(url
, fsRef
) == false )
885 wxString
wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname
)
887 CFStringRef cfname
= CFStringCreateWithCharacters( kCFAllocatorDefault
,
890 return wxMacCFStringHolder(cfname
).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
= FSRefMakeFSSpec( &fsRef
, spec
) ;
914 wxDos2UnixFilename (wxChar
*s
)
923 *s
= (wxChar
)wxTolower (*s
); // Case INDEPENDENT
930 #if defined(__WXMSW__) || defined(__OS2__)
931 wxUnix2DosFilename (wxChar
*s
)
933 wxUnix2DosFilename (wxChar
*WXUNUSED(s
) )
936 // Yes, I really mean this to happen under DOS only! JACS
937 #if defined(__WXMSW__) || defined(__OS2__)
948 // Concatenate two files to form third
950 wxConcatFiles (const wxString
& file1
, const wxString
& file2
, const wxString
& file3
)
953 if ( !wxGetTempFileName( wxT("cat"), outfile
) )
956 FILE *fp1
wxDUMMY_INITIALIZE(NULL
);
959 // Open the inputs and outputs
960 if ((fp1
= wxFopen ( file1
, wxT("rb"))) == NULL
||
961 (fp2
= wxFopen ( file2
, wxT("rb"))) == NULL
||
962 (fp3
= wxFopen ( outfile
, wxT("wb"))) == NULL
)
974 while ((ch
= getc (fp1
)) != EOF
)
975 (void) putc (ch
, fp3
);
978 while ((ch
= getc (fp2
)) != EOF
)
979 (void) putc (ch
, fp3
);
983 bool result
= wxRenameFile(outfile
, file3
);
989 wxCopyFile (const wxString
& file1
, const wxString
& file2
, bool overwrite
)
991 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
992 // CopyFile() copies file attributes and modification time too, so use it
993 // instead of our code if available
995 // NB: 3rd parameter is bFailIfExists i.e. the inverse of overwrite
996 if ( !::CopyFile(file1
, file2
, !overwrite
) )
998 wxLogSysError(_("Failed to copy the file '%s' to '%s'"),
999 file1
.c_str(), file2
.c_str());
1003 #elif defined(__OS2__)
1004 if ( ::DosCopy(file2
, file2
, overwrite
? DCPY_EXISTING
: 0) != 0 )
1006 #elif defined(__PALMOS__)
1007 // TODO with http://www.palmos.com/dev/support/docs/protein_books/Memory_Databases_Files/
1012 // get permissions of file1
1013 if ( wxStat( file1
.c_str(), &fbuf
) != 0 )
1015 // the file probably doesn't exist or we haven't the rights to read
1017 wxLogSysError(_("Impossible to get permissions for file '%s'"),
1022 // open file1 for reading
1023 wxFile
fileIn(file1
, wxFile::read
);
1024 if ( !fileIn
.IsOpened() )
1027 // remove file2, if it exists. This is needed for creating
1028 // file2 with the correct permissions in the next step
1029 if ( wxFileExists(file2
) && (!overwrite
|| !wxRemoveFile(file2
)))
1031 wxLogSysError(_("Impossible to overwrite the file '%s'"),
1036 // reset the umask as we want to create the file with exactly the same
1037 // permissions as the original one
1040 // create file2 with the same permissions than file1 and open it for
1044 if ( !fileOut
.Create(file2
, overwrite
, fbuf
.st_mode
& 0777) )
1047 // copy contents of file1 to file2
1052 count
= fileIn
.Read(buf
, WXSIZEOF(buf
));
1053 if ( fileIn
.Error() )
1060 if ( fileOut
.Write(buf
, count
) < count
)
1064 // we can expect fileIn to be closed successfully, but we should ensure
1065 // that fileOut was closed as some write errors (disk full) might not be
1066 // detected before doing this
1067 if ( !fileIn
.Close() || !fileOut
.Close() )
1070 #if !defined(__VISAGECPP__) && !defined(__WXMAC__) || defined(__UNIX__)
1071 // no chmod in VA. Should be some permission API for HPFS386 partitions
1073 if ( chmod(OS_FILENAME(file2
), fbuf
.st_mode
) != 0 )
1075 wxLogSysError(_("Impossible to set permissions for the file '%s'"),
1079 #endif // OS/2 || Mac
1080 #endif // __WXMSW__ && __WIN32__
1086 wxRenameFile (const wxString
& file1
, const wxString
& file2
)
1088 #if !defined(__WXWINCE__) && !defined(__WXPALMOS__)
1089 // Normal system call
1090 if ( wxRename (file1
, file2
) == 0 )
1095 if (wxCopyFile(file1
, file2
)) {
1096 wxRemoveFile(file1
);
1103 bool wxRemoveFile(const wxString
& file
)
1105 #if defined(__VISUALC__) \
1106 || defined(__BORLANDC__) \
1107 || defined(__WATCOMC__) \
1108 || defined(__DMC__) \
1109 || defined(__GNUWIN32__) \
1110 || (defined(__MWERKS__) && defined(__MSL__))
1111 int res
= wxRemove(file
);
1112 #elif defined(__WXMAC__)
1113 int res
= unlink(wxFNCONV(file
));
1114 #elif defined(__WXPALMOS__)
1116 // TODO with VFSFileDelete()
1118 int res
= unlink(OS_FILENAME(file
));
1124 bool wxMkdir(const wxString
& dir
, int perm
)
1126 #if defined(__WXPALMOS__)
1128 #elif defined(__WXMAC__) && !defined(__UNIX__)
1129 return (mkdir( wxFNCONV(dir
) , 0 ) == 0);
1131 const wxChar
*dirname
= dir
.c_str();
1133 // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
1134 // for the GNU compiler
1135 #if (!(defined(__WXMSW__) || defined(__OS2__) || defined(__DOS__))) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WINE__) || defined(__WXMICROWIN__)
1138 if ( mkdir(wxFNCONV(dirname
)) != 0 )
1140 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1142 #elif defined(__OS2__)
1143 if (::DosCreateDir((PSZ
)dirname
, NULL
) != 0) // enhance for EAB's??
1144 #elif defined(__DOS__)
1145 #if defined(__WATCOMC__)
1147 if ( wxMkDir(wxFNSTRINGCAST
wxFNCONV(dirname
)) != 0 )
1148 #elif defined(__DJGPP__)
1149 if ( mkdir(wxFNCONV(dirname
), perm
) != 0 )
1151 #error "Unsupported DOS compiler!"
1153 #else // !MSW, !DOS and !OS/2 VAC++
1156 if ( !CreateDirectory(dirname
, NULL
) )
1158 if ( wxMkDir(dir
.fn_str()) != 0 )
1162 wxLogSysError(_("Directory '%s' couldn't be created"), dirname
);
1171 bool wxRmdir(const wxString
& dir
, int WXUNUSED(flags
))
1173 #if defined(__VMS__)
1174 return false; //to be changed since rmdir exists in VMS7.x
1175 #elif defined(__OS2__)
1176 return (::DosDeleteDir((PSZ
)dir
.c_str()) == 0);
1177 #elif defined(__WXWINCE__)
1178 return (CreateDirectory(dir
, NULL
) != 0);
1179 #elif defined(__WXPALMOS__)
1180 // TODO with VFSFileRename()
1183 return (wxRmDir(OS_FILENAME(dir
)) == 0);
1187 // does the path exists? (may have or not '/' or '\\' at the end)
1188 bool wxPathExists(const wxChar
*pszPathName
)
1190 wxString
strPath(pszPathName
);
1192 #if defined(__WINDOWS__) || defined(__OS2__)
1193 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
1194 // so remove all trailing backslashes from the path - but don't do this for
1195 // the pathes "d:\" (which are different from "d:") nor for just "\"
1196 while ( wxEndsWithPathSeparator(strPath
) )
1198 size_t len
= strPath
.length();
1199 if ( len
== 1 || (len
== 3 && strPath
[len
- 2] == _T(':')) )
1202 strPath
.Truncate(len
- 1);
1204 #endif // __WINDOWS__
1207 // OS/2 can't handle "d:", it wants either "d:\" or "d:."
1208 if (strPath
.length() == 2 && strPath
[1u] == _T(':'))
1212 #if defined(__WXPALMOS__)
1214 #elif defined(__WIN32__) && !defined(__WXMICROWIN__)
1215 // stat() can't cope with network paths
1216 DWORD ret
= ::GetFileAttributes(strPath
);
1218 return (ret
!= (DWORD
)-1) && (ret
& FILE_ATTRIBUTE_DIRECTORY
);
1222 #ifndef __VISAGECPP__
1223 return wxStat(strPath
.c_str(), &st
) == 0 && ((st
.st_mode
& S_IFMT
) == S_IFDIR
);
1225 // S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
1226 return wxStat(pszPathName
, &st
) == 0 && (st
.st_mode
== S_IFDIR
);
1229 #endif // __WIN32__/!__WIN32__
1232 // Get a temporary filename, opening and closing the file.
1233 wxChar
*wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
)
1236 wxString filename
= wxFileName::CreateTempFileName(prefix
);
1237 if ( filename
.empty() )
1241 wxStrcpy(buf
, filename
);
1243 buf
= MYcopystring(filename
);
1247 // wxFileName::CreateTempFileName needs wxFile class enabled
1252 bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
)
1254 buf
= wxGetTempFileName(prefix
);
1256 return !buf
.empty();
1259 // Get first file name matching given wild card.
1261 static wxDir
*gs_dir
= NULL
;
1262 static wxString gs_dirPath
;
1264 wxString
wxFindFirstFile(const wxChar
*spec
, int flags
)
1266 wxSplitPath(spec
, &gs_dirPath
, NULL
, NULL
);
1267 if ( gs_dirPath
.empty() )
1268 gs_dirPath
= wxT(".");
1269 if ( !wxEndsWithPathSeparator(gs_dirPath
) )
1270 gs_dirPath
<< wxFILE_SEP_PATH
;
1274 gs_dir
= new wxDir(gs_dirPath
);
1276 if ( !gs_dir
->IsOpened() )
1278 wxLogSysError(_("Can not enumerate files '%s'"), spec
);
1279 return wxEmptyString
;
1285 case wxDIR
: dirFlags
= wxDIR_DIRS
; break;
1286 case wxFILE
: dirFlags
= wxDIR_FILES
; break;
1287 default: dirFlags
= wxDIR_DIRS
| wxDIR_FILES
; break;
1291 gs_dir
->GetFirst(&result
, wxFileNameFromPath(wxString(spec
)), dirFlags
);
1292 if ( result
.empty() )
1298 return gs_dirPath
+ result
;
1301 wxString
wxFindNextFile()
1303 wxASSERT_MSG( gs_dir
, wxT("You must call wxFindFirstFile before!") );
1306 gs_dir
->GetNext(&result
);
1308 if ( result
.empty() )
1314 return gs_dirPath
+ result
;
1318 // Get current working directory.
1319 // If buf is NULL, allocates space using new, else
1321 wxChar
*wxGetWorkingDirectory(wxChar
*buf
, int sz
)
1323 #if defined(__WXPALMOS__)
1326 #elif defined(__WXWINCE__)
1331 buf
= new wxChar
[sz
+ 1];
1334 bool ok
wxDUMMY_INITIALIZE(false);
1336 // for the compilers which have Unicode version of _getcwd(), call it
1337 // directly, for the others call the ANSI version and do the translation
1340 #else // wxUSE_UNICODE
1341 bool needsANSI
= true;
1343 #if !defined(HAVE_WGETCWD) || wxUSE_UNICODE_MSLU
1344 // This is not legal code as the compiler
1345 // is allowed destroy the wxCharBuffer.
1346 // wxCharBuffer c_buffer(sz);
1347 // char *cbuf = (char*)(const char*)c_buffer;
1348 char cbuf
[_MAXPATHLEN
];
1352 #if wxUSE_UNICODE_MSLU
1353 if ( wxGetOsVersion() != wxWIN95
)
1355 char *cbuf
= NULL
; // never really used because needsANSI will always be false
1358 ok
= _wgetcwd(buf
, sz
) != NULL
;
1364 #endif // wxUSE_UNICODE
1366 #if defined(_MSC_VER) || defined(__MINGW32__)
1367 ok
= _getcwd(cbuf
, sz
) != NULL
;
1368 #elif defined(__WXMAC__) && !defined(__DARWIN__)
1370 if ( getcwd( lbuf
, sizeof( lbuf
) ) )
1372 wxString
res( lbuf
, *wxConvCurrent
) ;
1373 wxStrcpy( buf
, res
) ;
1378 #elif defined(__OS2__)
1380 ULONG ulDriveNum
= 0;
1381 ULONG ulDriveMap
= 0;
1382 rc
= ::DosQueryCurrentDisk(&ulDriveNum
, &ulDriveMap
);
1387 rc
= ::DosQueryCurrentDir( 0 // current drive
1391 cbuf
[0] = 'A' + (ulDriveNum
- 1);
1396 #else // !Win32/VC++ !Mac !OS2
1397 ok
= getcwd(cbuf
, sz
) != NULL
;
1400 #if wxUSE_UNICODE && !(defined(__WXMAC__) && !defined(__DARWIN__))
1401 // finally convert the result to Unicode if needed
1402 wxConvFile
.MB2WC(buf
, cbuf
, sz
);
1403 #endif // wxUSE_UNICODE
1408 wxLogSysError(_("Failed to get the working directory"));
1410 // VZ: the old code used to return "." on error which didn't make any
1411 // sense at all to me - empty string is a better error indicator
1412 // (NULL might be even better but I'm afraid this could lead to
1413 // problems with the old code assuming the return is never NULL)
1416 else // ok, but we might need to massage the path into the right format
1419 // VS: DJGPP is a strange mix of DOS and UNIX API and returns paths
1420 // with / deliminers. We don't like that.
1421 for (wxChar
*ch
= buf
; *ch
; ch
++)
1423 if (*ch
== wxT('/'))
1428 // MBN: we hope that in the case the user is compiling a GTK+/Motif app,
1429 // he needs Unix as opposed to Win32 pathnames
1430 #if defined( __CYGWIN__ ) && defined( __WINDOWS__ )
1431 // another example of DOS/Unix mix (Cygwin)
1432 wxString pathUnix
= buf
;
1433 cygwin_conv_to_full_win32_path(pathUnix
, buf
);
1434 #endif // __CYGWIN__
1449 wxChar
*buffer
= new wxChar
[_MAXPATHLEN
];
1450 wxGetWorkingDirectory(buffer
, _MAXPATHLEN
);
1451 wxString
str( buffer
);
1457 bool wxSetWorkingDirectory(const wxString
& d
)
1459 #if defined(__OS2__)
1460 return (::DosSetCurrentDir((PSZ
)d
.c_str()) == 0);
1461 #elif defined(__UNIX__) || defined(__WXMAC__) || defined(__DOS__)
1462 return (chdir(wxFNSTRINGCAST d
.fn_str()) == 0);
1463 #elif defined(__WINDOWS__)
1467 // No equivalent in WinCE
1470 return (bool)(SetCurrentDirectory(d
) != 0);
1473 // Must change drive, too.
1474 bool isDriveSpec
= ((strlen(d
) > 1) && (d
[1] == ':'));
1477 wxChar firstChar
= d
[0];
1481 firstChar
= firstChar
- 32;
1483 // To a drive number
1484 unsigned int driveNo
= firstChar
- 64;
1487 unsigned int noDrives
;
1488 _dos_setdrive(driveNo
, &noDrives
);
1491 bool success
= (chdir(WXSTRINGCAST d
) == 0);
1499 // Get the OS directory if appropriate (such as the Windows directory).
1500 // On non-Windows platform, probably just return the empty string.
1501 wxString
wxGetOSDirectory()
1504 return wxString(wxT("\\Windows"));
1505 #elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
1507 GetWindowsDirectory(buf
, 256);
1508 return wxString(buf
);
1509 #elif defined(__WXMAC__)
1510 return wxMacFindFolder(kOnSystemDisk
, 'macs', false);
1512 return wxEmptyString
;
1516 bool wxEndsWithPathSeparator(const wxChar
*pszFileName
)
1518 size_t len
= wxStrlen(pszFileName
);
1520 return len
&& wxIsPathSeparator(pszFileName
[len
- 1]);
1523 // find a file in a list of directories, returns false if not found
1524 bool wxFindFileInPath(wxString
*pStr
, const wxChar
*pszPath
, const wxChar
*pszFile
)
1526 // we assume that it's not empty
1527 wxCHECK_MSG( !wxIsEmpty(pszFile
), false,
1528 _T("empty file name in wxFindFileInPath"));
1530 // skip path separator in the beginning of the file name if present
1531 if ( wxIsPathSeparator(*pszFile
) )
1534 // copy the path (strtok will modify it)
1535 wxChar
*szPath
= new wxChar
[wxStrlen(pszPath
) + 1];
1536 wxStrcpy(szPath
, pszPath
);
1539 wxChar
*pc
, *save_ptr
;
1540 for ( pc
= wxStrtok(szPath
, wxPATH_SEP
, &save_ptr
);
1542 pc
= wxStrtok((wxChar
*) NULL
, wxPATH_SEP
, &save_ptr
) )
1544 // search for the file in this directory
1546 if ( !wxEndsWithPathSeparator(pc
) )
1547 strFile
+= wxFILE_SEP_PATH
;
1550 if ( wxFileExists(strFile
) ) {
1556 // suppress warning about unused variable save_ptr when wxStrtok() is a
1557 // macro which throws away its third argument
1562 return pc
!= NULL
; // if true => we breaked from the loop
1565 void WXDLLEXPORT
wxSplitPath(const wxChar
*pszFileName
,
1570 // it can be empty, but it shouldn't be NULL
1571 wxCHECK_RET( pszFileName
, wxT("NULL file name in wxSplitPath") );
1573 wxFileName::SplitPath(pszFileName
, pstrPath
, pstrName
, pstrExt
);
1576 time_t WXDLLEXPORT
wxFileModificationTime(const wxString
& filename
)
1578 #if defined(__WXPALMOS__)
1580 #elif defined(__WXWINCE__)
1581 FILETIME creationTime
, lastAccessTime
, lastWriteTime
;
1582 HANDLE fileHandle
= ::CreateFile(filename
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
1583 0, FILE_ATTRIBUTE_NORMAL
, 0);
1584 if (fileHandle
== INVALID_HANDLE_VALUE
)
1588 if (GetFileTime(fileHandle
, & creationTime
, & lastAccessTime
, & lastWriteTime
))
1590 CloseHandle(fileHandle
);
1592 wxDateTime dateTime
;
1594 if ( !::FileTimeToLocalFileTime(&lastWriteTime
, &ftLocal
) )
1596 wxLogLastError(_T("FileTimeToLocalFileTime"));
1600 if ( !::FileTimeToSystemTime(&ftLocal
, &st
) )
1602 wxLogLastError(_T("FileTimeToSystemTime"));
1605 dateTime
.Set(st
.wDay
, wxDateTime::Month(st
.wMonth
- 1), st
.wYear
,
1606 st
.wHour
, st
.wMinute
, st
.wSecond
, st
.wMilliseconds
);
1607 return dateTime
.GetTicks();
1614 wxStat( filename
, &buf
);
1616 return buf
.st_mtime
;
1621 // Parses the filterStr, returning the number of filters.
1622 // Returns 0 if none or if there's a problem.
1623 // filterStr is in the form: "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpeg"
1625 int WXDLLEXPORT
wxParseCommonDialogsFilter(const wxString
& filterStr
, wxArrayString
& descriptions
, wxArrayString
& filters
)
1627 descriptions
.Clear();
1630 wxString
str(filterStr
);
1632 wxString description
, filter
;
1634 while( pos
!= wxNOT_FOUND
)
1636 pos
= str
.Find(wxT('|'));
1637 if ( pos
== wxNOT_FOUND
)
1639 // if there are no '|'s at all in the string just take the entire
1640 // string as filter and make description empty for later autocompletion
1641 if ( filters
.IsEmpty() )
1643 descriptions
.Add(wxEmptyString
);
1644 filters
.Add(filterStr
);
1648 wxFAIL_MSG( _T("missing '|' in the wildcard string!") );
1654 description
= str
.Left(pos
);
1655 str
= str
.Mid(pos
+ 1);
1656 pos
= str
.Find(wxT('|'));
1657 if ( pos
== wxNOT_FOUND
)
1663 filter
= str
.Left(pos
);
1664 str
= str
.Mid(pos
+ 1);
1667 descriptions
.Add(description
);
1668 filters
.Add(filter
);
1671 #if defined(__WXMOTIF__)
1672 // split it so there is one wildcard per entry
1673 for( size_t i
= 0 ; i
< descriptions
.GetCount() ; i
++ )
1675 pos
= filters
[i
].Find(wxT(';'));
1676 if (pos
!= wxNOT_FOUND
)
1678 // first split only filters
1679 descriptions
.Insert(descriptions
[i
],i
+1);
1680 filters
.Insert(filters
[i
].Mid(pos
+1),i
+1);
1681 filters
[i
]=filters
[i
].Left(pos
);
1683 // autoreplace new filter in description with pattern:
1684 // C/C++ Files(*.cpp;*.c;*.h)|*.cpp;*.c;*.h
1685 // cause split into:
1686 // C/C++ Files(*.cpp)|*.cpp
1687 // C/C++ Files(*.c;*.h)|*.c;*.h
1688 // and next iteration cause another split into:
1689 // C/C++ Files(*.cpp)|*.cpp
1690 // C/C++ Files(*.c)|*.c
1691 // C/C++ Files(*.h)|*.h
1692 for ( size_t k
=i
;k
<i
+2;k
++ )
1694 pos
= descriptions
[k
].Find(filters
[k
]);
1695 if (pos
!= wxNOT_FOUND
)
1697 wxString before
= descriptions
[k
].Left(pos
);
1698 wxString after
= descriptions
[k
].Mid(pos
+filters
[k
].Len());
1699 pos
= before
.Find(_T('('),true);
1700 if (pos
>before
.Find(_T(')'),true))
1702 before
= before
.Left(pos
+1);
1703 before
<< filters
[k
];
1704 pos
= after
.Find(_T(')'));
1705 int pos1
= after
.Find(_T('('));
1706 if (pos
!= wxNOT_FOUND
&& (pos
<pos1
|| pos1
==wxNOT_FOUND
))
1708 before
<< after
.Mid(pos
);
1709 descriptions
[k
] = before
;
1719 for( size_t j
= 0 ; j
< descriptions
.GetCount() ; j
++ )
1721 if ( descriptions
[j
] == wxEmptyString
&& filters
[j
] != wxEmptyString
)
1723 descriptions
[j
].Printf(_("Files (%s)"), filters
[j
].c_str());
1727 return filters
.GetCount();
1731 //------------------------------------------------------------------------
1732 // wild character routines
1733 //------------------------------------------------------------------------
1735 bool wxIsWild( const wxString
& pattern
)
1737 wxString tmp
= pattern
;
1738 wxChar
*pat
= WXSTRINGCAST(tmp
);
1743 case wxT('?'): case wxT('*'): case wxT('['): case wxT('{'):
1754 * Written By Douglas A. Lewis <dalewis@cs.Buffalo.EDU>
1756 * The match procedure is public domain code (from ircII's reg.c)
1759 bool wxMatchWild( const wxString
& pat
, const wxString
& text
, bool dot_special
)
1763 /* Match if both are empty. */
1767 const wxChar
*m
= pat
.c_str(),
1778 if (dot_special
&& (*n
== wxT('.')))
1780 /* Never match so that hidden Unix files
1781 * are never found. */
1795 else if (*m
== wxT('?'))
1803 if (*m
== wxT('\\'))
1806 /* Quoting "nothing" is a bad thing */
1813 * If we are out of both strings or we just
1814 * saw a wildcard, then we can say we have a
1825 * We could check for *n == NULL at this point, but
1826 * since it's more common to have a character there,
1827 * check to see if they match first (m and n) and
1828 * then if they don't match, THEN we can check for
1846 * If there are no more characters in the
1847 * string, but we still need to find another
1848 * character (*m != NULL), then it will be
1849 * impossible to match it
1856 if (*np
== wxT(' '))
1880 // Return the type of an open file
1882 wxFileKind
wxGetFileKind(int fd
)
1884 #if !defined(__WXWINCE__) && !defined(__WXPALMOS__)
1886 return wxFILE_KIND_TERMINAL
;
1889 #if defined(__WXPALMOS__)
1890 return wxFILE_KIND_UNKNOWN
;
1891 #elif defined(__WXWINCE__)
1892 return wxFILE_KIND_UNKNOWN
;
1893 #elif defined(__WXMSW__)
1894 switch (::GetFileType(wxGetOSFHandle(fd
)) & ~FILE_TYPE_REMOTE
)
1896 case FILE_TYPE_DISK
:
1897 return wxFILE_KIND_DISK
;
1898 case FILE_TYPE_PIPE
:
1899 return wxFILE_KIND_PIPE
;
1902 return wxFILE_KIND_UNKNOWN
;
1904 #elif defined(__UNIX__)
1908 if (S_ISFIFO(st
.st_mode
))
1909 return wxFILE_KIND_PIPE
;
1910 if (!S_ISREG(st
.st_mode
))
1911 return wxFILE_KIND_UNKNOWN
;
1913 #if defined(__VMS__)
1914 if (st
.st_fab_rfm
!= FAB$C_STMLF
)
1915 return wxFILE_KIND_UNKNOWN
;
1918 return wxFILE_KIND_DISK
;
1921 if (lseek(fd
, 0, SEEK_CUR
) != -1)
1922 return wxFILE_KIND_DISK
;
1924 return wxFILE_KIND_UNKNOWN
;
1929 #pragma warning(default:4706) // assignment within conditional expression