1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: File- and directory-related functions
4 // Author: Julian Smart
8 // Copyright: (c) 1998 Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #include "wx/arrstr.h"
20 #include "wx/msw/wince/time.h"
21 #include "wx/msw/private.h"
28 #elif !defined(__MWERKS__)
29 #include <sys/types.h>
33 #include <sys/types.h>
43 #endif // !__WXPALMOS5__
46 // need to check for __OS2__ first since currently both
47 // __OS2__ and __UNIX__ are defined.
49 #include "wx/os2/private.h"
57 #elif defined(__UNIX__)
62 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
63 #if !defined( __GNUWIN32__ ) && !defined( __MWERKS__ ) && !defined(__WXWINCE__) && !defined(__CYGWIN__)
68 #endif // native Win compiler
82 #ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
83 // this (3.1 I believe) and how to test for it.
84 // If this works for Borland 4.0 as well, then no worries.
90 #include <fcntl.h> // O_RDONLY &c
92 #endif // !__WXPALMOS5__
93 // ----------------------------------------------------------------------------
95 // ----------------------------------------------------------------------------
97 #if defined(__VISUALC__) || defined(__DIGITALMARS__)
105 #if !defined(__WXMAC__) || defined(__UNIX__) || defined(__MACH__)
106 #include <sys/types.h>
112 #if (defined(__VISUALC__) && !defined(__WXWINCE__)) || ( defined(__MWERKS__) && defined( __INTEL__) )
113 typedef _off_t off_t
;
114 #elif defined(__SYMANTEC__)
116 #elif defined(__MWERKS__) && !defined(__INTEL__) && !defined(__MACH__)
118 #elif defined(__WXPALMOS5__)
132 wxFILE_KIND_DISK
, // a file supporting seeking to arbitrary offsets
133 wxFILE_KIND_TERMINAL
, // a tty
134 wxFILE_KIND_PIPE
// a pipe
137 // ----------------------------------------------------------------------------
138 // declare our versions of low level file functions: some compilers prepend
139 // underscores to the usual names, some also have Unicode versions of them
140 // ----------------------------------------------------------------------------
142 // Wrappers around Win32 api functions like CreateFile, ReadFile and such
143 // Implemented in filefnwce.cpp
144 #if defined( __WXWINCE__)
145 typedef __int64 wxFileOffset
;
146 #define wxFileOffsetFmtSpec _("I64")
147 WXDLLIMPEXP_BASE
int wxCRT_Open(const wxChar
*filename
, int oflag
, int WXUNUSED(pmode
));
148 WXDLLIMPEXP_BASE
int wxCRT_Access(const wxChar
*name
, int WXUNUSED(how
));
149 WXDLLIMPEXP_BASE
int wxClose(int fd
);
150 WXDLLIMPEXP_BASE
int wxFsync(int WXUNUSED(fd
));
151 WXDLLIMPEXP_BASE
int wxRead(int fd
, void *buf
, unsigned int count
);
152 WXDLLIMPEXP_BASE
int wxWrite(int fd
, const void *buf
, unsigned int count
);
153 WXDLLIMPEXP_BASE
int wxEof(int fd
);
154 WXDLLIMPEXP_BASE wxFileOffset
wxSeek(int fd
, wxFileOffset offset
, int origin
);
155 #define wxLSeek wxSeek
156 WXDLLIMPEXP_BASE wxFileOffset
wxTell(int fd
);
158 // always Unicode under WinCE
159 #define wxCRT_MkDir _wmkdir
160 #define wxCRT_RmDir _wrmdir
161 #define wxCRT_Stat _wstat
162 #define wxStructStat struct _stat
163 #elif (defined(__WXMSW__) || defined(__OS2__)) && !defined(__WXPALMOS__) && \
165 defined(__VISUALC__) || \
166 defined(__MINGW64__) || \
167 (defined(__MINGW32__) && !defined(__WINE__) && \
168 wxCHECK_W32API_VERSION(0, 5)) || \
169 defined(__MWERKS__) || \
170 defined(__DMC__) || \
171 defined(__WATCOMC__) || \
172 defined(__BORLANDC__) \
175 #undef wxHAS_HUGE_FILES
177 // detect compilers which have support for huge files
178 #if defined(__VISUALC__)
179 #define wxHAS_HUGE_FILES 1
180 #elif defined(__MINGW32__) || defined(__MINGW64__)
181 #define wxHAS_HUGE_FILES 1
182 #elif defined(_LARGE_FILES)
183 #define wxHAS_HUGE_FILES 1
186 // other Windows compilers (DMC, Watcom, Metrowerks and Borland) don't have
187 // huge file support (or at least not all functions needed for it by wx)
192 #ifdef wxHAS_HUGE_FILES
193 typedef wxLongLong_t wxFileOffset
;
194 #define wxFileOffsetFmtSpec wxLongLongFmtSpec
196 typedef off_t wxFileOffset
;
199 // at least Borland 5.5 doesn't like "struct ::stat" so don't use the scope
200 // resolution operator present in wxPOSIX_IDENT for it
202 #define wxPOSIX_STRUCT(s) struct s
204 #define wxPOSIX_STRUCT(s) struct wxPOSIX_IDENT(s)
207 // Notice that Watcom is the only compiler to have a wide char
208 // version of struct stat as well as a wide char stat function variant.
209 // This was dropped since OW 1.4 "for consistency across platforms".
211 // Borland is also special in that it uses _stat with Unicode functions
212 // (for MSVC compatibility?) but stat with ANSI ones
215 #define wxStructStat struct stati64
218 #define wxStructStat struct _stat
220 #define wxStructStat struct stat
223 #else // !__BORLANDC__
224 #ifdef wxHAS_HUGE_FILES
225 #if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4)
226 #define wxStructStat struct _wstati64
228 #define wxStructStat struct _stati64
231 #if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4)
232 #define wxStructStat struct _wstat
234 #define wxStructStat struct _stat
237 #endif // __BORLANDC__/!__BORLANDC__
242 // MSVC and compatible compilers prepend underscores to the POSIX function
243 // names, other compilers don't and even if their later versions usually do
244 // define the versions with underscores for MSVC compatibility, it's better
245 // to avoid using them as they're not present in earlier versions and
246 // always using the native functions spelling is easier than testing for
248 #if defined(__BORLANDC__) || defined(__DMC__) || defined(__WATCOMC__) || defined(__MINGW64__)
249 #define wxPOSIX_IDENT(func) ::func
250 #else // by default assume MSVC-compatible names
251 #define wxPOSIX_IDENT(func) _ ## func
252 #define wxHAS_UNDERSCORES_IN_POSIX_IDENTS
255 // first functions not working with strings, i.e. without ANSI/Unicode
257 #define wxClose wxPOSIX_IDENT(close)
259 #if defined(__MWERKS__)
260 #if __MSL__ >= 0x6000
261 #define wxRead(fd, buf, nCount) _read(fd, (void *)buf, nCount)
262 #define wxWrite(fd, buf, nCount) _write(fd, (void *)buf, nCount)
264 #define wxRead(fd, buf, nCount)\
265 _read(fd, (const char *)buf, nCount)
266 #define wxWrite(fd, buf, nCount)\
267 _write(fd, (const char *)buf, nCount)
270 #define wxRead wxPOSIX_IDENT(read)
271 #define wxWrite wxPOSIX_IDENT(write)
274 #ifdef wxHAS_HUGE_FILES
276 #define wxSeek wxPOSIX_IDENT(lseeki64)
277 #define wxLseek wxPOSIX_IDENT(lseeki64)
278 #define wxTell wxPOSIX_IDENT(telli64)
280 // unfortunately, mingw-W64 is somewhat inconsistent...
281 #define wxSeek _lseeki64
282 #define wxLseek _lseeki64
283 #define wxTell _telli64
285 #else // !wxHAS_HUGE_FILES
286 #define wxSeek wxPOSIX_IDENT(lseek)
287 #define wxLseek wxPOSIX_IDENT(lseek)
288 #define wxTell wxPOSIX_IDENT(tell)
289 #endif // wxHAS_HUGE_FILES/!wxHAS_HUGE_FILES
292 #if !defined(__BORLANDC__) || (__BORLANDC__ > 0x540)
293 // NB: this one is not POSIX and always has the underscore
294 #define wxFsync _commit
296 // could be already defined by configure (Cygwin)
303 #define wxEof wxPOSIX_IDENT(eof)
305 // then the functions taking strings
307 // first the ANSI versions
308 #define wxCRT_OpenA wxPOSIX_IDENT(open)
309 #define wxCRT_AccessA wxPOSIX_IDENT(access)
310 #define wxCRT_MkDirA wxPOSIX_IDENT(mkdir)
311 #define wxCRT_RmDirA wxPOSIX_IDENT(rmdir)
312 #ifdef wxHAS_HUGE_FILES
313 #define wxCRT_StatA wxPOSIX_IDENT(stati64)
315 // Unfortunately Watcom is not consistent
316 #if defined(__OS2__) && defined(__WATCOMC__)
317 #define wxCRT_StatA _stat
319 #define wxCRT_StatA wxPOSIX_IDENT(stat)
323 // then wide char ones
325 // special workaround for buggy wopen() in bcc 5.5
326 #if defined(__BORLANDC__) && \
327 (__BORLANDC__ >= 0x550 && __BORLANDC__ <= 0x551)
328 WXDLLIMPEXP_BASE
int wxCRT_OpenW(const wxChar
*pathname
,
329 int flags
, mode_t mode
);
331 #define wxCRT_OpenW _wopen
334 #define wxCRT_AccessW _waccess
335 #define wxCRT_MkDirW _wmkdir
336 #define wxCRT_RmDirW _wrmdir
337 #ifdef wxHAS_HUGE_FILES
338 #define wxCRT_StatW _wstati64
340 #define wxCRT_StatW _wstat
342 #endif // wxUSE_UNICODE
345 // finally the default char-type versions
347 #if wxUSE_UNICODE_MSLU
348 // implement the missing file functions in Win9x ourselves
349 WXDLLIMPEXP_BASE
int wxMSLU__wopen(const wxChar
*name
,
350 int flags
, int mode
);
351 WXDLLIMPEXP_BASE
int wxMSLU__waccess(const wxChar
*name
,
353 WXDLLIMPEXP_BASE
int wxMSLU__wmkdir(const wxChar
*name
);
354 WXDLLIMPEXP_BASE
int wxMSLU__wrmdir(const wxChar
*name
);
357 wxMSLU__wstat(const wxChar
*name
, wxStructStat
*buffer
);
359 #define wxCRT_Open wxMSLU__wopen
361 #define wxCRT_Access wxMSLU__waccess
362 #define wxCRT_MkDir wxMSLU__wmkdir
363 #define wxCRT_RmDir wxMSLU__wrmdir
364 #define wxCRT_Stat wxMSLU__wstat
365 #else // !wxUSE_UNICODE_MSLU
366 #define wxCRT_Open wxCRT_OpenW
367 #define wxCRT_Access wxCRT_AccessW
368 #define wxCRT_MkDir wxCRT_MkDirW
369 #define wxCRT_RmDir wxCRT_RmDirW
370 #define wxCRT_Stat wxCRT_StatW
371 #endif // wxUSE_UNICODE_MSLU/!wxUSE_UNICODE_MSLU
372 #else // !wxUSE_UNICODE
373 #define wxCRT_Open wxCRT_OpenA
374 #define wxCRT_Access wxCRT_AccessA
375 #define wxCRT_MkDir wxCRT_MkDirA
376 #define wxCRT_RmDir wxCRT_RmDirA
377 #define wxCRT_Stat wxCRT_StatA
378 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
381 // constants (unless already defined by the user code)
382 #ifdef wxHAS_UNDERSCORES_IN_POSIX_IDENTS
384 #define O_RDONLY _O_RDONLY
385 #define O_WRONLY _O_WRONLY
386 #define O_RDWR _O_RDWR
387 #define O_EXCL _O_EXCL
388 #define O_CREAT _O_CREAT
389 #define O_BINARY _O_BINARY
393 #define S_IFMT _S_IFMT
394 #define S_IFDIR _S_IFDIR
395 #define S_IFREG _S_IFREG
397 #endif // wxHAS_UNDERSCORES_IN_POSIX_IDENTS
399 #ifdef wxHAS_HUGE_FILES
400 // wxFile is present and supports large files. Currently wxFFile
401 // doesn't have large file support with any Windows compiler (even
404 #define wxHAS_LARGE_FILES
408 // it's a private define, undefine it so that nobody gets tempted to use it
409 #undef wxHAS_HUGE_FILES
410 #elif defined (__WXPALMOS__)
411 typedef off_t wxFileOffset
;
413 #define wxFileOffsetFmtSpec wxLongLongFmtSpec
414 wxCOMPILE_TIME_ASSERT( sizeof(off_t
) == sizeof(wxLongLong_t
), BadFileSizeType
);
415 // wxFile is present and supports large files
417 #define wxHAS_LARGE_FILES
419 // wxFFile is present and supports large files
420 #if SIZEOF_LONG == 8 || defined HAVE_FSEEKO
421 #define wxHAS_LARGE_FFILES
424 #define wxFileOffsetFmtSpec wxT("")
426 #define wxClose close
427 #define wxRead ::read
428 #define wxWrite ::write
429 #define wxLseek lseek
431 #define wxFsync fsync
434 #define wxCRT_MkDir mkdir
435 #define wxCRT_RmDir rmdir
437 #define wxTell(fd) lseek(fd, 0, SEEK_CUR)
439 #define wxStructStat struct stat
441 #define wxCRT_Open open
442 #define wxCRT_Stat svfs_stat
443 #define wxCRT_Lstat lstat
444 #define wxCRT_Access access
446 #define wxHAS_NATIVE_LSTAT
447 #else // Unix or Windows using unknown compiler, assume POSIX supported
448 typedef off_t wxFileOffset
;
449 #ifdef HAVE_LARGEFILE_SUPPORT
450 #define wxFileOffsetFmtSpec wxLongLongFmtSpec
451 wxCOMPILE_TIME_ASSERT( sizeof(off_t
) == sizeof(wxLongLong_t
),
453 // wxFile is present and supports large files
455 #define wxHAS_LARGE_FILES
457 // wxFFile is present and supports large files
458 #if wxUSE_FFILE && (SIZEOF_LONG == 8 || defined HAVE_FSEEKO)
459 #define wxHAS_LARGE_FFILES
462 #define wxFileOffsetFmtSpec wxT("")
465 #define wxClose close
466 #define wxRead ::read
467 #define wxWrite ::write
468 #define wxLseek lseek
470 #define wxFsync fsync
473 #define wxCRT_MkDir mkdir
474 #define wxCRT_RmDir rmdir
476 #define wxTell(fd) lseek(fd, 0, SEEK_CUR)
478 #define wxStructStat struct stat
480 #define wxCRT_Open open
481 #define wxCRT_Stat stat
482 #define wxCRT_Lstat lstat
483 #define wxCRT_Access access
485 #define wxHAS_NATIVE_LSTAT
488 // if the platform doesn't have symlinks, define wxCRT_Lstat to be the same as
489 // wxCRT_Stat to avoid #ifdefs in the code using it
490 #ifndef wxHAS_NATIVE_LSTAT
491 #define wxCRT_Lstat wxCRT_Stat
494 inline int wxAccess(const wxString
& path
, mode_t mode
)
495 { return wxCRT_Access(path
.fn_str(), mode
); }
496 inline int wxOpen(const wxString
& path
, int flags
, mode_t mode
)
497 { return wxCRT_Open(path
.fn_str(), flags
, mode
); }
499 // FIXME-CE: provide our own implementations of the missing CRT functions
501 inline int wxStat(const wxString
& path
, wxStructStat
*buf
)
502 { return wxCRT_Stat(path
.fn_str(), buf
); }
503 inline int wxLstat(const wxString
& path
, wxStructStat
*buf
)
504 { return wxCRT_Lstat(path
.fn_str(), buf
); }
505 inline int wxRmDir(const wxString
& path
)
506 { return wxCRT_RmDir(path
.fn_str()); }
507 #if defined(__WINDOWS__) || (defined(__OS2__) && defined(__WATCOMC__))
508 inline int wxMkDir(const wxString
& path
, mode_t
WXUNUSED(mode
) = 0)
509 { return wxCRT_MkDir(path
.fn_str()); }
511 inline int wxMkDir(const wxString
& path
, mode_t mode
)
512 { return wxCRT_MkDir(path
.fn_str(), mode
); }
514 #endif // !__WXWINCE__
517 #define wxO_BINARY O_BINARY
522 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
524 // VisualAge C++ V4.0 cannot have any external linkage const decs
525 // in headers included by more than one primary source
527 extern const int wxInvalidOffset
;
529 const int wxInvalidOffset
= -1;
532 // ----------------------------------------------------------------------------
534 // ----------------------------------------------------------------------------
535 WXDLLIMPEXP_BASE
bool wxFileExists(const wxString
& filename
);
537 // does the path exist? (may have or not '/' or '\\' at the end)
538 WXDLLIMPEXP_BASE
bool wxDirExists(const wxString
& pathName
);
540 WXDLLIMPEXP_BASE
bool wxIsAbsolutePath(const wxString
& filename
);
543 WXDLLIMPEXP_BASE wxChar
* wxFileNameFromPath(wxChar
*path
);
544 WXDLLIMPEXP_BASE wxString
wxFileNameFromPath(const wxString
& path
);
547 WXDLLIMPEXP_BASE wxString
wxPathOnly(const wxString
& path
);
549 // all deprecated functions below are deprecated in favour of wxFileName's methods
550 #if WXWIN_COMPATIBILITY_2_8
552 wxDEPRECATED( WXDLLIMPEXP_BASE
void wxDos2UnixFilename(char *s
) );
553 wxDEPRECATED( WXDLLIMPEXP_BASE
void wxDos2UnixFilename(wchar_t *s
) );
555 wxDEPRECATED_BUT_USED_INTERNALLY(
556 WXDLLIMPEXP_BASE
void wxUnix2DosFilename(char *s
) );
557 wxDEPRECATED_BUT_USED_INTERNALLY(
558 WXDLLIMPEXP_BASE
void wxUnix2DosFilename(wchar_t *s
) );
560 // Strip the extension, in situ
561 // Deprecated in favour of wxFileName::StripExtension() but notice that their
562 // behaviour is slightly different, see the manual
563 wxDEPRECATED( WXDLLIMPEXP_BASE
void wxStripExtension(char *buffer
) );
564 wxDEPRECATED( WXDLLIMPEXP_BASE
void wxStripExtension(wchar_t *buffer
) );
565 wxDEPRECATED( WXDLLIMPEXP_BASE
void wxStripExtension(wxString
& buffer
) );
567 // Get a temporary filename
568 wxDEPRECATED_BUT_USED_INTERNALLY( WXDLLIMPEXP_BASE wxChar
* wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
= NULL
) );
569 wxDEPRECATED_BUT_USED_INTERNALLY( WXDLLIMPEXP_BASE
bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
) );
571 // Expand file name (~/ and ${OPENWINHOME}/ stuff)
572 wxDEPRECATED_BUT_USED_INTERNALLY( WXDLLIMPEXP_BASE
char* wxExpandPath(char *dest
, const wxString
& path
) );
573 wxDEPRECATED_BUT_USED_INTERNALLY( WXDLLIMPEXP_BASE
wchar_t* wxExpandPath(wchar_t *dest
, const wxString
& path
) );
574 // DEPRECATED: use wxFileName::Normalize(wxPATH_NORM_ENV_VARS)
576 // Contract w.r.t environment (</usr/openwin/lib, OPENWHOME> -> ${OPENWINHOME}/lib)
577 // and make (if under the home tree) relative to home
578 // [caller must copy-- volatile]
580 WXDLLIMPEXP_BASE wxChar
* wxContractPath(const wxString
& filename
,
581 const wxString
& envname
= wxEmptyString
,
582 const wxString
& user
= wxEmptyString
) );
583 // DEPRECATED: use wxFileName::ReplaceEnvVariable and wxFileName::ReplaceHomeDir
585 // Destructive removal of /./ and /../ stuff
586 wxDEPRECATED_BUT_USED_INTERNALLY( WXDLLIMPEXP_BASE
char* wxRealPath(char *path
) );
587 wxDEPRECATED_BUT_USED_INTERNALLY( WXDLLIMPEXP_BASE
wchar_t* wxRealPath(wchar_t *path
) );
588 wxDEPRECATED_BUT_USED_INTERNALLY( WXDLLIMPEXP_BASE wxString
wxRealPath(const wxString
& path
) );
589 // DEPRECATED: use wxFileName::Normalize instead
591 // Allocate a copy of the full absolute path
592 wxDEPRECATED( WXDLLIMPEXP_BASE wxChar
* wxCopyAbsolutePath(const wxString
& path
) );
593 // DEPRECATED: use wxFileName::MakeAbsolute instead
596 // Get first file name matching given wild card.
597 // Flags are reserved for future use.
600 WXDLLIMPEXP_BASE wxString
wxFindFirstFile(const wxString
& spec
, int flags
= wxFILE
);
601 WXDLLIMPEXP_BASE wxString
wxFindNextFile();
603 // Does the pattern contain wildcards?
604 WXDLLIMPEXP_BASE
bool wxIsWild(const wxString
& pattern
);
606 // Does the pattern match the text (usually a filename)?
607 // If dot_special is true, doesn't match * against . (eliminating
608 // `hidden' dot files)
609 WXDLLIMPEXP_BASE
bool wxMatchWild(const wxString
& pattern
, const wxString
& text
, bool dot_special
= true);
611 // Concatenate two files to form third
612 WXDLLIMPEXP_BASE
bool wxConcatFiles(const wxString
& file1
, const wxString
& file2
, const wxString
& file3
);
614 // Copy file1 to file2
615 WXDLLIMPEXP_BASE
bool wxCopyFile(const wxString
& file1
, const wxString
& file2
,
616 bool overwrite
= true);
619 WXDLLIMPEXP_BASE
bool wxRemoveFile(const wxString
& file
);
622 WXDLLIMPEXP_BASE
bool wxRenameFile(const wxString
& file1
, const wxString
& file2
, bool overwrite
= true);
624 // Get current working directory.
625 #if WXWIN_COMPATIBILITY_2_6
626 // If buf is NULL, allocates space using new, else
628 // IMPORTANT NOTE getcwd is know not to work under some releases
629 // of Win32s 1.3, according to MS release notes!
630 wxDEPRECATED( WXDLLIMPEXP_BASE wxChar
* wxGetWorkingDirectory(wxChar
*buf
= NULL
, int sz
= 1000) );
631 // new and preferred version of wxGetWorkingDirectory
632 // NB: can't have the same name because of overloading ambiguity
633 #endif // WXWIN_COMPATIBILITY_2_6
634 WXDLLIMPEXP_BASE wxString
wxGetCwd();
636 // Set working directory
637 WXDLLIMPEXP_BASE
bool wxSetWorkingDirectory(const wxString
& d
);
640 WXDLLIMPEXP_BASE
bool wxMkdir(const wxString
& dir
, int perm
= 0777);
642 // Remove directory. Flags reserved for future use.
643 WXDLLIMPEXP_BASE
bool wxRmdir(const wxString
& dir
, int flags
= 0);
645 // Return the type of an open file
646 WXDLLIMPEXP_BASE wxFileKind
wxGetFileKind(int fd
);
647 WXDLLIMPEXP_BASE wxFileKind
wxGetFileKind(FILE *fp
);
649 #if WXWIN_COMPATIBILITY_2_6
650 // compatibility defines, don't use in new code
651 wxDEPRECATED( inline bool wxPathExists(const wxChar
*pszPathName
) );
652 inline bool wxPathExists(const wxChar
*pszPathName
)
654 return wxDirExists(pszPathName
);
656 #endif //WXWIN_COMPATIBILITY_2_6
658 // permissions; these functions work both on files and directories:
659 WXDLLIMPEXP_BASE
bool wxIsWritable(const wxString
&path
);
660 WXDLLIMPEXP_BASE
bool wxIsReadable(const wxString
&path
);
661 WXDLLIMPEXP_BASE
bool wxIsExecutable(const wxString
&path
);
663 // ----------------------------------------------------------------------------
664 // separators in file names
665 // ----------------------------------------------------------------------------
667 // between file name and extension
668 #define wxFILE_SEP_EXT wxT('.')
670 // between drive/volume name and the path
671 #define wxFILE_SEP_DSK wxT(':')
673 // between the path components
674 #define wxFILE_SEP_PATH_DOS wxT('\\')
675 #define wxFILE_SEP_PATH_UNIX wxT('/')
676 #define wxFILE_SEP_PATH_MAC wxT(':')
677 #define wxFILE_SEP_PATH_VMS wxT('.') // VMS also uses '[' and ']'
679 // separator in the path list (as in PATH environment variable)
680 // there is no PATH variable in Classic Mac OS so just use the
681 // semicolon (it must be different from the file name separator)
682 // NB: these are strings and not characters on purpose!
683 #define wxPATH_SEP_DOS wxT(";")
684 #define wxPATH_SEP_UNIX wxT(":")
685 #define wxPATH_SEP_MAC wxT(";")
687 // platform independent versions
688 #if defined(__UNIX__) && !defined(__OS2__)
689 // CYGWIN also uses UNIX settings
690 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_UNIX
691 #define wxPATH_SEP wxPATH_SEP_UNIX
692 #elif defined(__WXPALMOS__)
693 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_UNIX
694 #define wxPATH_SEP wxPATH_SEP_UNIX
695 #elif defined(__MAC__)
696 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_MAC
697 #define wxPATH_SEP wxPATH_SEP_MAC
698 #else // Windows and OS/2
699 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_DOS
700 #define wxPATH_SEP wxPATH_SEP_DOS
701 #endif // Unix/Windows
703 // this is useful for wxString::IsSameAs(): to compare two file names use
704 // filename1.IsSameAs(filename2, wxARE_FILENAMES_CASE_SENSITIVE)
705 #if defined(__UNIX__) && !defined(__DARWIN__) && !defined(__OS2__)
706 #define wxARE_FILENAMES_CASE_SENSITIVE true
707 #else // Windows, Mac OS and OS/2
708 #define wxARE_FILENAMES_CASE_SENSITIVE false
709 #endif // Unix/Windows
711 // is the char a path separator?
712 inline bool wxIsPathSeparator(wxChar c
)
714 // under DOS/Windows we should understand both Unix and DOS file separators
715 #if ( defined(__UNIX__) && !defined(__OS2__) )|| defined(__MAC__)
716 return c
== wxFILE_SEP_PATH
;
718 return c
== wxFILE_SEP_PATH_DOS
|| c
== wxFILE_SEP_PATH_UNIX
;
722 // does the string ends with path separator?
723 WXDLLIMPEXP_BASE
bool wxEndsWithPathSeparator(const wxString
& filename
);
725 #if WXWIN_COMPATIBILITY_2_8
726 // split the full path into path (including drive for DOS), name and extension
727 // (understands both '/' and '\\')
728 // Deprecated in favour of wxFileName::SplitPath
729 wxDEPRECATED( WXDLLIMPEXP_BASE
void wxSplitPath(const wxString
& fileName
,
732 wxString
*pstrExt
) );
735 // find a file in a list of directories, returns false if not found
736 WXDLLIMPEXP_BASE
bool wxFindFileInPath(wxString
*pStr
, const wxString
& szPath
, const wxString
& szFile
);
738 // Get the OS directory if appropriate (such as the Windows directory).
739 // On non-Windows platform, probably just return the empty string.
740 WXDLLIMPEXP_BASE wxString
wxGetOSDirectory();
744 // Get file modification time
745 WXDLLIMPEXP_BASE
time_t wxFileModificationTime(const wxString
& filename
);
747 #endif // wxUSE_DATETIME
749 // Parses the wildCard, returning the number of filters.
750 // Returns 0 if none or if there's a problem,
751 // The arrays will contain an equal number of items found before the error.
752 // wildCard is in the form:
753 // "All files (*)|*|Image Files (*.jpeg *.png)|*.jpg;*.png"
754 WXDLLIMPEXP_BASE
int wxParseCommonDialogsFilter(const wxString
& wildCard
, wxArrayString
& descriptions
, wxArrayString
& filters
);
756 // ----------------------------------------------------------------------------
758 // ----------------------------------------------------------------------------
762 // set umask to the given value in ctor and reset it to the old one in dtor
763 class WXDLLIMPEXP_BASE wxUmaskChanger
766 // change the umask to the given one if it is not -1: this allows to write
767 // the same code whether you really want to change umask or not, as is in
768 // wxFileConfig::Flush() for example
769 wxUmaskChanger(int umaskNew
)
771 m_umaskOld
= umaskNew
== -1 ? -1 : (int)umask((mode_t
)umaskNew
);
776 if ( m_umaskOld
!= -1 )
777 umask((mode_t
)m_umaskOld
);
784 // this macro expands to an "anonymous" wxUmaskChanger object under Unix and
786 #define wxCHANGE_UMASK(m) wxUmaskChanger wxMAKE_UNIQUE_NAME(umaskChanger_)(m)
790 #define wxCHANGE_UMASK(m)
792 #endif // __UNIX__/!__UNIX__
796 class WXDLLIMPEXP_BASE wxPathList
: public wxArrayString
800 wxPathList(const wxArrayString
&arr
)
803 // Adds all paths in environment variable
804 void AddEnvList(const wxString
& envVariable
);
806 // Adds given path to this list
807 bool Add(const wxString
& path
);
808 void Add(const wxArrayString
&paths
);
810 // Find the first full path for which the file exists
811 wxString
FindValidPath(const wxString
& filename
) const;
813 // Find the first full path for which the file exists; ensure it's an
814 // absolute path that gets returned.
815 wxString
FindAbsoluteValidPath(const wxString
& filename
) const;
817 // Given full path and filename, add path to list
818 bool EnsureFileAccessible(const wxString
& path
);
820 #if WXWIN_COMPATIBILITY_2_6
821 // Returns true if the path is in the list
822 wxDEPRECATED( bool Member(const wxString
& path
) const );
826 #endif // _WX_FILEFN_H_