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(__MINGW32__) && !defined(__WINE__) && \
167 wxCHECK_W32API_VERSION(0, 5)) || \
168 defined(__MWERKS__) || \
169 defined(__DMC__) || \
170 defined(__WATCOMC__) || \
171 defined(__BORLANDC__) \
174 #undef wxHAS_HUGE_FILES
176 // detect compilers which have support for huge files
177 #if defined(__VISUALC__)
178 #define wxHAS_HUGE_FILES 1
179 #elif defined(__MINGW32__)
180 #define wxHAS_HUGE_FILES 1
181 #elif defined(_LARGE_FILES)
182 #define wxHAS_HUGE_FILES 1
185 // other Windows compilers (DMC, Watcom, Metrowerks and Borland) don't have
186 // huge file support (or at least not all functions needed for it by wx)
189 #ifdef wxHAS_HUGE_FILES
190 typedef wxLongLong_t wxFileOffset
;
191 #define wxFileOffsetFmtSpec wxLongLongFmtSpec
193 typedef off_t wxFileOffset
;
199 // MSVC and compatible compilers prepend underscores to the POSIX function
200 // names, other compilers don't and even if their later versions usually do
201 // define the versions with underscores for MSVC compatibility, it's better
202 // to avoid using them as they're not present in earlier versions and
203 // always using the native functions spelling is easier than testing for
205 #if defined(__BORLANDC__) || defined(__DMC__) || defined(__WATCOMC__)
206 #define wxPOSIX_IDENT(func) ::func
207 #else // by default assume MSVC-compatible names
208 #define wxPOSIX_IDENT(func) _ ## func
209 #define wxHAS_UNDERSCORES_IN_POSIX_IDENTS
212 // at least Borland 5.5 doesn't like "struct ::stat" so don't use the scope
213 // resolution operator present in wxPOSIX_IDENT for it
215 #define wxPOSIX_STRUCT(s) struct s
217 #define wxPOSIX_STRUCT(s) struct wxPOSIX_IDENT(s)
220 // first functions not working with strings, i.e. without ANSI/Unicode
222 #define wxClose wxPOSIX_IDENT(close)
224 #if defined(__MWERKS__)
225 #if __MSL__ >= 0x6000
226 #define wxRead(fd, buf, nCount) _read(fd, (void *)buf, nCount)
227 #define wxWrite(fd, buf, nCount) _write(fd, (void *)buf, nCount)
229 #define wxRead(fd, buf, nCount)\
230 _read(fd, (const char *)buf, nCount)
231 #define wxWrite(fd, buf, nCount)\
232 _write(fd, (const char *)buf, nCount)
235 #define wxRead wxPOSIX_IDENT(read)
236 #define wxWrite wxPOSIX_IDENT(write)
239 #ifdef wxHAS_HUGE_FILES
240 #define wxSeek wxPOSIX_IDENT(lseeki64)
241 #define wxLseek wxPOSIX_IDENT(lseeki64)
242 #define wxTell wxPOSIX_IDENT(telli64)
243 #else // !wxHAS_HUGE_FILES
244 #define wxSeek wxPOSIX_IDENT(lseek)
245 #define wxLseek wxPOSIX_IDENT(lseek)
246 #define wxTell wxPOSIX_IDENT(tell)
247 #endif // wxHAS_HUGE_FILES/!wxHAS_HUGE_FILES
250 #if !defined(__BORLANDC__) || (__BORLANDC__ > 0x540)
251 // NB: this one is not POSIX and always has the underscore
252 #define wxFsync _commit
254 // could be already defined by configure (Cygwin)
261 #define wxEof wxPOSIX_IDENT(eof)
263 // then the functions taking strings
265 #if wxUSE_UNICODE_MSLU
266 // implement the missing file functions in Win9x ourselves
267 #if defined( __VISUALC__ ) \
268 || ( defined(__MINGW32__) && wxCHECK_W32API_VERSION( 0, 5 ) ) \
269 || ( defined(__MWERKS__) && defined(__WXMSW__) ) \
270 || ( defined(__BORLANDC__) && (__BORLANDC__ > 0x460) ) \
273 WXDLLIMPEXP_BASE
int wxMSLU__wopen(const wxChar
*name
,
274 int flags
, int mode
);
275 WXDLLIMPEXP_BASE
int wxMSLU__waccess(const wxChar
*name
,
277 WXDLLIMPEXP_BASE
int wxMSLU__wmkdir(const wxChar
*name
);
278 WXDLLIMPEXP_BASE
int wxMSLU__wrmdir(const wxChar
*name
);
281 wxMSLU__wstat(const wxChar
*name
, wxPOSIX_STRUCT(stat
) *buffer
);
283 wxMSLU__wstati64(const wxChar
*name
,
284 wxPOSIX_STRUCT(stati64
) *buffer
);
285 #endif // Windows compilers with MSLU support
287 #define wxCRT_Open wxMSLU__wopen
289 #define wxCRT_Access wxMSLU__waccess
290 #define wxCRT_MkDir wxMSLU__wmkdir
291 #define wxCRT_RmDir wxMSLU__wrmdir
292 #ifdef wxHAS_HUGE_FILES
293 #define wxCRT_Stat wxMSLU__wstati64
295 #define wxCRT_Stat wxMSLU__wstat
297 #else // !wxUSE_UNICODE_MSLU
299 #if __BORLANDC__ >= 0x550 && __BORLANDC__ <= 0x551
300 WXDLLIMPEXP_BASE
int wxCRT_Open(const wxChar
*pathname
,
301 int flags
, mode_t mode
);
303 #define wxCRT_Open _wopen
305 #define wxCRT_Access _waccess
306 #define wxCRT_MkDir _wmkdir
307 #define wxCRT_RmDir _wrmdir
308 #ifdef wxHAS_HUGE_FILES
309 #define wxCRT_Stat _wstati64
311 #define wxCRT_Stat _wstat
314 #define wxCRT_Open _wopen
315 #define wxCRT_Access _waccess
316 #define wxCRT_MkDir _wmkdir
317 #define wxCRT_RmDir _wrmdir
318 #ifdef wxHAS_HUGE_FILES
319 #define wxCRT_Stat _wstati64
321 #define wxCRT_Stat _wstat
324 #endif // wxUSE_UNICODE_MSLU/!wxUSE_UNICODE_MSLU
325 #else // !wxUSE_UNICODE
326 #define wxCRT_Open wxPOSIX_IDENT(open)
327 #define wxCRT_Access wxPOSIX_IDENT(access)
328 #define wxCRT_MkDir wxPOSIX_IDENT(mkdir)
329 #define wxCRT_RmDir wxPOSIX_IDENT(rmdir)
330 #ifdef wxHAS_HUGE_FILES
331 #define wxCRT_Stat wxPOSIX_IDENT(stati64)
333 // Unfortunately Watcom is not consistent, so:-
334 #if defined(__OS2__) && defined(__WATCOMC__)
335 #define wxCRT_Stat _stat
337 #define wxCRT_Stat wxPOSIX_IDENT(stat)
340 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
342 // Types: Notice that Watcom is the only compiler to have a wide char
343 // version of struct stat as well as a wide char stat function variant.
344 // This was droped since OW 1.4 "for consistency across platforms".
345 #ifdef wxHAS_HUGE_FILES
346 #if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4)
347 #define wxStructStat struct _wstati64
349 #define wxStructStat struct _stati64
352 #if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4)
353 #define wxStructStat struct _wstat
355 #define wxStructStat struct _stat
359 // constants (unless already defined by the user code)
360 #ifdef wxHAS_UNDERSCORES_IN_POSIX_IDENTS
362 #define O_RDONLY _O_RDONLY
363 #define O_WRONLY _O_WRONLY
364 #define O_RDWR _O_RDWR
365 #define O_EXCL _O_EXCL
366 #define O_CREAT _O_CREAT
367 #define O_BINARY _O_BINARY
371 #define S_IFMT _S_IFMT
372 #define S_IFDIR _S_IFDIR
373 #define S_IFREG _S_IFREG
375 #endif // wxHAS_UNDERSCORES_IN_POSIX_IDENTS
377 #ifdef wxHAS_HUGE_FILES
378 // wxFile is present and supports large files. Currently wxFFile
379 // doesn't have large file support with any Windows compiler (even
382 #define wxHAS_LARGE_FILES
386 // it's a private define, undefine it so that nobody gets tempted to use it
387 #undef wxHAS_HUGE_FILES
388 #else // Unix or Windows using unknown compiler, assume POSIX supported
389 typedef off_t wxFileOffset
;
391 #define wxFileOffsetFmtSpec wxLongLongFmtSpec
392 wxCOMPILE_TIME_ASSERT( sizeof(off_t
) == sizeof(wxLongLong_t
),
394 // wxFile is present and supports large files
396 #define wxHAS_LARGE_FILES
398 // wxFFile is present and supports large files
399 #if SIZEOF_LONG == 8 || defined HAVE_FSEEKO
400 #define wxHAS_LARGE_FFILES
403 #define wxFileOffsetFmtSpec _T("")
406 #define wxClose close
407 #define wxRead ::read
408 #define wxWrite ::write
409 #define wxLseek lseek
411 #define wxFsync fsync
414 #define wxCRT_MkDir mkdir
415 #define wxCRT_RmDir rmdir
417 #define wxTell(fd) lseek(fd, 0, SEEK_CUR)
419 #define wxStructStat struct stat
421 #define wxCRT_Open open
422 #define wxCRT_Stat stat
423 #define wxCRT_Lstat lstat
424 #define wxCRT_Access access
426 #define wxHAS_NATIVE_LSTAT
429 // if the platform doesn't have symlinks, define wxCRT_Lstat to be the same as
430 // wxCRT_Stat to avoid #ifdefs in the code using it
431 #ifndef wxHAS_NATIVE_LSTAT
432 #define wxCRT_Lstat wxCRT_Stat
435 inline int wxAccess(const wxString
& path
, mode_t mode
)
436 { return wxCRT_Access(path
.fn_str(), mode
); }
437 inline int wxOpen(const wxString
& path
, int flags
, mode_t mode
)
438 { return wxCRT_Open(path
.fn_str(), flags
, mode
); }
440 // FIXME-CE: provide our own implementations of the missing CRT functions
442 inline int wxStat(const wxString
& path
, wxStructStat
*buf
)
443 { return wxCRT_Stat(path
.fn_str(), buf
); }
444 inline int wxLstat(const wxString
& path
, wxStructStat
*buf
)
445 { return wxCRT_Lstat(path
.fn_str(), buf
); }
446 inline int wxRmDir(const wxString
& path
)
447 { return wxCRT_RmDir(path
.fn_str()); }
448 #if defined(__WINDOWS__) || (defined(__OS2__) && defined(__WATCOMC__))
449 inline int wxMkDir(const wxString
& path
, mode_t
WXUNUSED(mode
) = 0)
450 { return wxCRT_MkDir(path
.fn_str()); }
452 inline int wxMkDir(const wxString
& path
, mode_t mode
)
453 { return wxCRT_MkDir(path
.fn_str(), mode
); }
455 #endif // !__WXWINCE__
458 #define wxO_BINARY O_BINARY
463 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
465 // VisualAge C++ V4.0 cannot have any external linkage const decs
466 // in headers included by more than one primary source
468 extern const int wxInvalidOffset
;
470 const int wxInvalidOffset
= -1;
473 // ----------------------------------------------------------------------------
475 // ----------------------------------------------------------------------------
476 WXDLLIMPEXP_BASE
bool wxFileExists(const wxString
& filename
);
478 // does the path exist? (may have or not '/' or '\\' at the end)
479 WXDLLIMPEXP_BASE
bool wxDirExists(const wxString
& pathName
);
481 WXDLLIMPEXP_BASE
bool wxIsAbsolutePath(const wxString
& filename
);
484 WXDLLIMPEXP_BASE wxChar
* wxFileNameFromPath(wxChar
*path
);
485 WXDLLIMPEXP_BASE wxString
wxFileNameFromPath(const wxString
& path
);
488 WXDLLIMPEXP_BASE wxString
wxPathOnly(const wxString
& path
);
490 WXDLLIMPEXP_BASE
void wxDos2UnixFilename(char *s
);
491 WXDLLIMPEXP_BASE
void wxDos2UnixFilename(wchar_t *s
);
493 WXDLLIMPEXP_BASE
void wxUnix2DosFilename(char *s
);
494 WXDLLIMPEXP_BASE
void wxUnix2DosFilename(wchar_t *s
);
496 // Strip the extension, in situ
497 WXDLLIMPEXP_BASE
void wxStripExtension(char *buffer
);
498 WXDLLIMPEXP_BASE
void wxStripExtension(wchar_t *buffer
);
499 WXDLLIMPEXP_BASE
void wxStripExtension(wxString
& buffer
);
501 // Get a temporary filename
502 WXDLLIMPEXP_BASE wxChar
* wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
= (wxChar
*) NULL
);
503 WXDLLIMPEXP_BASE
bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
);
505 // Expand file name (~/ and ${OPENWINHOME}/ stuff)
506 WXDLLIMPEXP_BASE
char* wxExpandPath(char *dest
, const wxString
& path
);
507 WXDLLIMPEXP_BASE
wchar_t* wxExpandPath(wchar_t *dest
, const wxString
& path
);
508 // FIXME-UTF8: add some wxString version
510 // Contract w.r.t environment (</usr/openwin/lib, OPENWHOME> -> ${OPENWINHOME}/lib)
511 // and make (if under the home tree) relative to home
512 // [caller must copy-- volatile]
513 WXDLLIMPEXP_BASE wxChar
* wxContractPath(const wxString
& filename
,
514 const wxString
& envname
= wxEmptyString
,
515 const wxString
& user
= wxEmptyString
);
517 // Destructive removal of /./ and /../ stuff
518 // FIXME-UTF8: deprecate these two (and similar)
519 WXDLLIMPEXP_BASE
char* wxRealPath(char *path
);
520 WXDLLIMPEXP_BASE
wchar_t* wxRealPath(wchar_t *path
);
521 WXDLLIMPEXP_BASE wxString
wxRealPath(const wxString
& path
);
523 // Allocate a copy of the full absolute path
524 WXDLLIMPEXP_BASE wxChar
* wxCopyAbsolutePath(const wxString
& path
);
526 // Get first file name matching given wild card.
527 // Flags are reserved for future use.
530 WXDLLIMPEXP_BASE wxString
wxFindFirstFile(const wxString
& spec
, int flags
= wxFILE
);
531 WXDLLIMPEXP_BASE wxString
wxFindNextFile();
533 // Does the pattern contain wildcards?
534 WXDLLIMPEXP_BASE
bool wxIsWild(const wxString
& pattern
);
536 // Does the pattern match the text (usually a filename)?
537 // If dot_special is true, doesn't match * against . (eliminating
538 // `hidden' dot files)
539 WXDLLIMPEXP_BASE
bool wxMatchWild(const wxString
& pattern
, const wxString
& text
, bool dot_special
= true);
541 // Concatenate two files to form third
542 WXDLLIMPEXP_BASE
bool wxConcatFiles(const wxString
& file1
, const wxString
& file2
, const wxString
& file3
);
544 // Copy file1 to file2
545 WXDLLIMPEXP_BASE
bool wxCopyFile(const wxString
& file1
, const wxString
& file2
,
546 bool overwrite
= true);
549 WXDLLIMPEXP_BASE
bool wxRemoveFile(const wxString
& file
);
552 WXDLLIMPEXP_BASE
bool wxRenameFile(const wxString
& file1
, const wxString
& file2
, bool overwrite
= true);
554 // Get current working directory.
555 #if WXWIN_COMPATIBILITY_2_6
556 // If buf is NULL, allocates space using new, else
558 // IMPORTANT NOTE getcwd is know not to work under some releases
559 // of Win32s 1.3, according to MS release notes!
560 wxDEPRECATED( WXDLLIMPEXP_BASE wxChar
* wxGetWorkingDirectory(wxChar
*buf
= (wxChar
*) NULL
, int sz
= 1000) );
561 // new and preferred version of wxGetWorkingDirectory
562 // NB: can't have the same name because of overloading ambiguity
563 #endif // WXWIN_COMPATIBILITY_2_6
564 WXDLLIMPEXP_BASE wxString
wxGetCwd();
566 // Set working directory
567 WXDLLIMPEXP_BASE
bool wxSetWorkingDirectory(const wxString
& d
);
570 WXDLLIMPEXP_BASE
bool wxMkdir(const wxString
& dir
, int perm
= 0777);
572 // Remove directory. Flags reserved for future use.
573 WXDLLIMPEXP_BASE
bool wxRmdir(const wxString
& dir
, int flags
= 0);
575 // Return the type of an open file
576 WXDLLIMPEXP_BASE wxFileKind
wxGetFileKind(int fd
);
577 WXDLLIMPEXP_BASE wxFileKind
wxGetFileKind(FILE *fp
);
579 #if WXWIN_COMPATIBILITY_2_6
580 // compatibility defines, don't use in new code
581 wxDEPRECATED( inline bool wxPathExists(const wxChar
*pszPathName
) );
582 inline bool wxPathExists(const wxChar
*pszPathName
)
584 return wxDirExists(pszPathName
);
586 #endif //WXWIN_COMPATIBILITY_2_6
588 // permissions; these functions work both on files and directories:
589 WXDLLIMPEXP_BASE
bool wxIsWritable(const wxString
&path
);
590 WXDLLIMPEXP_BASE
bool wxIsReadable(const wxString
&path
);
591 WXDLLIMPEXP_BASE
bool wxIsExecutable(const wxString
&path
);
593 // ----------------------------------------------------------------------------
594 // separators in file names
595 // ----------------------------------------------------------------------------
597 // between file name and extension
598 #define wxFILE_SEP_EXT wxT('.')
600 // between drive/volume name and the path
601 #define wxFILE_SEP_DSK wxT(':')
603 // between the path components
604 #define wxFILE_SEP_PATH_DOS wxT('\\')
605 #define wxFILE_SEP_PATH_UNIX wxT('/')
606 #define wxFILE_SEP_PATH_MAC wxT(':')
607 #define wxFILE_SEP_PATH_VMS wxT('.') // VMS also uses '[' and ']'
609 // separator in the path list (as in PATH environment variable)
610 // there is no PATH variable in Classic Mac OS so just use the
611 // semicolon (it must be different from the file name separator)
612 // NB: these are strings and not characters on purpose!
613 #define wxPATH_SEP_DOS wxT(";")
614 #define wxPATH_SEP_UNIX wxT(":")
615 #define wxPATH_SEP_MAC wxT(";")
617 // platform independent versions
618 #if defined(__UNIX__) && !defined(__OS2__)
619 // CYGWIN also uses UNIX settings
620 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_UNIX
621 #define wxPATH_SEP wxPATH_SEP_UNIX
622 #elif defined(__WXPALMOS__)
623 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_UNIX
624 #define wxPATH_SEP wxPATH_SEP_UNIX
625 #elif defined(__MAC__)
626 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_MAC
627 #define wxPATH_SEP wxPATH_SEP_MAC
628 #else // Windows and OS/2
629 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_DOS
630 #define wxPATH_SEP wxPATH_SEP_DOS
631 #endif // Unix/Windows
633 // this is useful for wxString::IsSameAs(): to compare two file names use
634 // filename1.IsSameAs(filename2, wxARE_FILENAMES_CASE_SENSITIVE)
635 #if defined(__UNIX__) && !defined(__DARWIN__) && !defined(__OS2__)
636 #define wxARE_FILENAMES_CASE_SENSITIVE true
637 #else // Windows, Mac OS and OS/2
638 #define wxARE_FILENAMES_CASE_SENSITIVE false
639 #endif // Unix/Windows
641 // is the char a path separator?
642 inline bool wxIsPathSeparator(wxChar c
)
644 // under DOS/Windows we should understand both Unix and DOS file separators
645 #if ( defined(__UNIX__) && !defined(__OS2__) )|| defined(__MAC__)
646 return c
== wxFILE_SEP_PATH
;
648 return c
== wxFILE_SEP_PATH_DOS
|| c
== wxFILE_SEP_PATH_UNIX
;
652 // does the string ends with path separator?
653 WXDLLIMPEXP_BASE
bool wxEndsWithPathSeparator(const wxString
& filename
);
655 // split the full path into path (including drive for DOS), name and extension
656 // (understands both '/' and '\\')
657 WXDLLIMPEXP_BASE
void wxSplitPath(const wxString
& fileName
,
662 // find a file in a list of directories, returns false if not found
663 WXDLLIMPEXP_BASE
bool wxFindFileInPath(wxString
*pStr
, const wxString
& szPath
, const wxString
& szFile
);
665 // Get the OS directory if appropriate (such as the Windows directory).
666 // On non-Windows platform, probably just return the empty string.
667 WXDLLIMPEXP_BASE wxString
wxGetOSDirectory();
671 // Get file modification time
672 WXDLLIMPEXP_BASE
time_t wxFileModificationTime(const wxString
& filename
);
674 #endif // wxUSE_DATETIME
676 // Parses the wildCard, returning the number of filters.
677 // Returns 0 if none or if there's a problem,
678 // The arrays will contain an equal number of items found before the error.
679 // wildCard is in the form:
680 // "All files (*)|*|Image Files (*.jpeg *.png)|*.jpg;*.png"
681 WXDLLIMPEXP_BASE
int wxParseCommonDialogsFilter(const wxString
& wildCard
, wxArrayString
& descriptions
, wxArrayString
& filters
);
683 // ----------------------------------------------------------------------------
685 // ----------------------------------------------------------------------------
689 // set umask to the given value in ctor and reset it to the old one in dtor
690 class WXDLLIMPEXP_BASE wxUmaskChanger
693 // change the umask to the given one if it is not -1: this allows to write
694 // the same code whether you really want to change umask or not, as is in
695 // wxFileConfig::Flush() for example
696 wxUmaskChanger(int umaskNew
)
698 m_umaskOld
= umaskNew
== -1 ? -1 : (int)umask((mode_t
)umaskNew
);
703 if ( m_umaskOld
!= -1 )
704 umask((mode_t
)m_umaskOld
);
711 // this macro expands to an "anonymous" wxUmaskChanger object under Unix and
713 #define wxCHANGE_UMASK(m) wxUmaskChanger wxMAKE_UNIQUE_NAME(umaskChanger_)(m)
717 #define wxCHANGE_UMASK(m)
719 #endif // __UNIX__/!__UNIX__
723 class WXDLLIMPEXP_BASE wxPathList
: public wxArrayString
727 wxPathList(const wxArrayString
&arr
)
730 // Adds all paths in environment variable
731 void AddEnvList(const wxString
& envVariable
);
733 // Adds given path to this list
734 bool Add(const wxString
& path
);
735 void Add(const wxArrayString
&paths
);
737 // Find the first full path for which the file exists
738 wxString
FindValidPath(const wxString
& filename
) const;
740 // Find the first full path for which the file exists; ensure it's an
741 // absolute path that gets returned.
742 wxString
FindAbsoluteValidPath(const wxString
& filename
) const;
744 // Given full path and filename, add path to list
745 bool EnsureFileAccessible(const wxString
& path
);
747 #if WXWIN_COMPATIBILITY_2_6
748 // Returns true if the path is in the list
749 wxDEPRECATED( bool Member(const wxString
& path
) const );
753 #endif // _WX_FILEFN_H_