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"
19 #include "wx/msw/wince/time.h"
20 #include "wx/msw/private.h"
27 #elif !defined(__MWERKS__)
28 #include <sys/types.h>
32 #include <sys/types.h>
44 // need to check for __OS2__ first since currently both
45 // __OS2__ and __UNIX__ are defined.
47 #include "wx/os2/private.h"
55 #elif defined(__UNIX__)
60 #if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
61 #if !defined( __GNUWIN32__ ) && !defined( __MWERKS__ ) && !defined(__SALFORDC__) && !defined(__WXWINCE__) && !defined(__CYGWIN__)
66 #endif // native Win compiler
80 #ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
81 // this (3.1 I believe) and how to test for it.
82 // If this works for Borland 4.0 as well, then no worries.
92 #include <fcntl.h> // O_RDONLY &c
94 // ----------------------------------------------------------------------------
96 // ----------------------------------------------------------------------------
98 #if defined(__VISUALC__) || defined(__DIGITALMARS__)
106 #if !defined(__WXMAC__) || defined(__UNIX__) || defined(__MACH__)
107 #include <sys/types.h>
113 #if (defined(__VISUALC__) && !defined(__WXWINCE__)) || ( defined(__MWERKS__) && defined( __INTEL__) )
114 typedef _off_t off_t
;
115 #elif defined(__SYMANTEC__)
117 #elif defined(__MWERKS__) && !defined(__INTEL__) && !defined(__MACH__)
131 wxFILE_KIND_DISK
, // a file supporting seeking to arbitrary offsets
132 wxFILE_KIND_TERMINAL
, // a tty
133 wxFILE_KIND_PIPE
// a pipe
136 // ----------------------------------------------------------------------------
137 // declare our versions of low level file functions: some compilers prepend
138 // underscores to the usual names, some also have Unicode versions of them
139 // ----------------------------------------------------------------------------
141 // Wrappers around Win32 api functions like CreateFile, ReadFile and such
142 // Implemented in filefnwce.cpp
143 #if defined( __WXWINCE__)
144 typedef __int64 wxFileOffset
;
145 #define wxFileOffsetFmtSpec _("I64")
146 WXDLLIMPEXP_BASE
int wxCRT_Open(const wxChar
*filename
, int oflag
, int WXUNUSED(pmode
));
147 WXDLLIMPEXP_BASE
int wxCRT_Access(const wxChar
*name
, int WXUNUSED(how
));
148 WXDLLIMPEXP_BASE
int wxClose(int fd
);
149 WXDLLIMPEXP_BASE
int wxFsync(int WXUNUSED(fd
));
150 WXDLLIMPEXP_BASE
int wxRead(int fd
, void *buf
, unsigned int count
);
151 WXDLLIMPEXP_BASE
int wxWrite(int fd
, const void *buf
, unsigned int count
);
152 WXDLLIMPEXP_BASE
int wxEof(int fd
);
153 WXDLLIMPEXP_BASE wxFileOffset
wxSeek(int fd
, wxFileOffset offset
, int origin
);
154 #define wxLSeek wxSeek
155 WXDLLIMPEXP_BASE wxFileOffset
wxTell(int fd
);
157 // always Unicode under WinCE
158 #define wxCRT_MkDir _wmkdir
159 #define wxCRT_RmDir _wrmdir
160 #define wxCRT_Stat _wstat
161 #define wxStructStat struct _stat
162 #elif (defined(__WXMSW__) || defined(__OS2__)) && !defined(__WXPALMOS__) && \
164 defined(__VISUALC__) || \
165 (defined(__MINGW32__) && !defined(__WINE__) && \
166 wxCHECK_W32API_VERSION(0, 5)) || \
167 defined(__MWERKS__) || \
168 defined(__DMC__) || \
169 defined(__WATCOMC__) || \
170 defined(__BORLANDC__) \
173 #undef wxHAS_HUGE_FILES
175 // detect compilers which have support for huge files
176 #if defined(__VISUALC__)
177 #define wxHAS_HUGE_FILES 1
178 #elif defined(__MINGW32__)
179 #define wxHAS_HUGE_FILES 1
180 #elif defined(_LARGE_FILES)
181 #define wxHAS_HUGE_FILES 1
184 // other Windows compilers (DMC, Watcom, Metrowerks and Borland) don't have
185 // huge file support (or at least not all functions needed for it by wx)
188 #ifdef wxHAS_HUGE_FILES
189 typedef wxLongLong_t wxFileOffset
;
190 #define wxFileOffsetFmtSpec wxLongLongFmtSpec
192 typedef off_t wxFileOffset
;
198 // MSVC and compatible compilers prepend underscores to the POSIX function
199 // names, other compilers don't and even if their later versions usually do
200 // define the versions with underscores for MSVC compatibility, it's better
201 // to avoid using them as they're not present in earlier versions and
202 // always using the native functions spelling is easier than testing for
204 #if defined(__BORLANDC__) || defined(__DMC__) || defined(__WATCOMC__)
205 #define wxPOSIX_IDENT(func) ::func
206 #else // by default assume MSVC-compatible names
207 #define wxPOSIX_IDENT(func) _ ## func
208 #define wxHAS_UNDERSCORES_IN_POSIX_IDENTS
211 // at least Borland 5.5 doesn't like "struct ::stat" so don't use the scope
212 // resolution operator present in wxPOSIX_IDENT for it
214 #define wxPOSIX_STRUCT(s) struct s
216 #define wxPOSIX_STRUCT(s) struct wxPOSIX_IDENT(s)
219 // first functions not working with strings, i.e. without ANSI/Unicode
221 #define wxClose wxPOSIX_IDENT(close)
223 #if defined(__MWERKS__)
224 #if __MSL__ >= 0x6000
225 #define wxRead(fd, buf, nCount) _read(fd, (void *)buf, nCount)
226 #define wxWrite(fd, buf, nCount) _write(fd, (void *)buf, nCount)
228 #define wxRead(fd, buf, nCount)\
229 _read(fd, (const char *)buf, nCount)
230 #define wxWrite(fd, buf, nCount)\
231 _write(fd, (const char *)buf, nCount)
234 #define wxRead wxPOSIX_IDENT(read)
235 #define wxWrite wxPOSIX_IDENT(write)
238 #ifdef wxHAS_HUGE_FILES
239 #define wxSeek wxPOSIX_IDENT(lseeki64)
240 #define wxLseek wxPOSIX_IDENT(lseeki64)
241 #define wxTell wxPOSIX_IDENT(telli64)
242 #else // !wxHAS_HUGE_FILES
243 #define wxSeek wxPOSIX_IDENT(lseek)
244 #define wxLseek wxPOSIX_IDENT(lseek)
245 #define wxTell wxPOSIX_IDENT(tell)
246 #endif // wxHAS_HUGE_FILES/!wxHAS_HUGE_FILES
249 #if !defined(__BORLANDC__) || (__BORLANDC__ > 0x540)
250 // NB: this one is not POSIX and always has the underscore
251 #define wxFsync _commit
257 #define wxEof wxPOSIX_IDENT(eof)
259 // then the functions taking strings
261 #if wxUSE_UNICODE_MSLU
262 // implement the missing file functions in Win9x ourselves
263 #if defined( __VISUALC__ ) \
264 || ( defined(__MINGW32__) && wxCHECK_W32API_VERSION( 0, 5 ) ) \
265 || ( defined(__MWERKS__) && defined(__WXMSW__) ) \
266 || ( defined(__BORLANDC__) && (__BORLANDC__ > 0x460) ) \
269 WXDLLIMPEXP_BASE
int wxMSLU__wopen(const wxChar
*name
,
270 int flags
, int mode
);
271 WXDLLIMPEXP_BASE
int wxMSLU__waccess(const wxChar
*name
,
273 WXDLLIMPEXP_BASE
int wxMSLU__wmkdir(const wxChar
*name
);
274 WXDLLIMPEXP_BASE
int wxMSLU__wrmdir(const wxChar
*name
);
277 wxMSLU__wstat(const wxChar
*name
, wxPOSIX_STRUCT(stat
) *buffer
);
279 wxMSLU__wstati64(const wxChar
*name
,
280 wxPOSIX_STRUCT(stati64
) *buffer
);
281 #endif // Windows compilers with MSLU support
283 #define wxCRT_Open wxMSLU__wopen
285 #define wxCRT_Access wxMSLU__waccess
286 #define wxCRT_MkDir wxMSLU__wmkdir
287 #define wxCRT_RmDir wxMSLU__wrmdir
288 #ifdef wxHAS_HUGE_FILES
289 #define wxCRT_Stat wxMSLU__wstati64
291 #define wxCRT_Stat wxMSLU__wstat
293 #else // !wxUSE_UNICODE_MSLU
295 #if __BORLANDC__ >= 0x550 && __BORLANDC__ <= 0x551
296 WXDLLIMPEXP_BASE
int wxCRT_Open(const wxChar
*pathname
,
297 int flags
, mode_t mode
);
299 #define wxCRT_Open _wopen
301 #define wxCRT_Access _waccess
302 #define wxCRT_MkDir _wmkdir
303 #define wxCRT_RmDir _wrmdir
304 #ifdef wxHAS_HUGE_FILES
305 #define wxCRT_Stat _wstati64
307 #define wxCRT_Stat _wstat
310 #define wxCRT_Open _wopen
311 #define wxCRT_Access _waccess
312 #define wxCRT_MkDir _wmkdir
313 #define wxCRT_RmDir _wrmdir
314 #ifdef wxHAS_HUGE_FILES
315 #define wxCRT_Stat _wstati64
317 #define wxCRT_Stat _wstat
320 #endif // wxUSE_UNICODE_MSLU/!wxUSE_UNICODE_MSLU
321 #else // !wxUSE_UNICODE
322 #define wxCRT_Open wxPOSIX_IDENT(open)
323 #define wxCRT_Access wxPOSIX_IDENT(access)
324 #define wxCRT_MkDir wxPOSIX_IDENT(mkdir)
325 #define wxCRT_RmDir wxPOSIX_IDENT(rmdir)
326 #ifdef wxHAS_HUGE_FILES
327 #define wxCRT_Stat wxPOSIX_IDENT(stati64)
329 #define wxCRT_Stat wxPOSIX_IDENT(stat)
331 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
333 // Types: Notice that Watcom is the only compiler to have a wide char
334 // version of struct stat as well as a wide char stat function variant.
335 // This was droped since OW 1.4 "for consistency across platforms".
336 #ifdef wxHAS_HUGE_FILES
337 #if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4)
338 #define wxStructStat struct _wstati64
340 #define wxStructStat struct _stati64
343 #if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4)
344 #define wxStructStat struct _wstat
346 #define wxStructStat struct _stat
350 // constants (unless already defined by the user code)
351 #ifdef wxHAS_UNDERSCORES_IN_POSIX_IDENTS
353 #define O_RDONLY _O_RDONLY
354 #define O_WRONLY _O_WRONLY
355 #define O_RDWR _O_RDWR
356 #define O_EXCL _O_EXCL
357 #define O_CREAT _O_CREAT
358 #define O_BINARY _O_BINARY
362 #define S_IFMT _S_IFMT
363 #define S_IFDIR _S_IFDIR
364 #define S_IFREG _S_IFREG
366 #endif // wxHAS_UNDERSCORES_IN_POSIX_IDENTS
368 #ifdef wxHAS_HUGE_FILES
369 // wxFile is present and supports large files. Currently wxFFile
370 // doesn't have large file support with any Windows compiler (even
373 #define wxHAS_LARGE_FILES
377 // it's a private define, undefine it so that nobody gets tempted to use it
378 #undef wxHAS_HUGE_FILES
379 #else // Unix or Windows using unknown compiler, assume POSIX supported
380 typedef off_t wxFileOffset
;
382 #define wxFileOffsetFmtSpec wxLongLongFmtSpec
383 wxCOMPILE_TIME_ASSERT( sizeof(off_t
) == sizeof(wxLongLong_t
),
385 // wxFile is present and supports large files
387 #define wxHAS_LARGE_FILES
389 // wxFFile is present and supports large files
390 #if SIZEOF_LONG == 8 || defined HAVE_FSEEKO
391 #define wxHAS_LARGE_FFILES
394 #define wxFileOffsetFmtSpec _T("")
397 #define wxClose close
398 #define wxRead ::read
399 #define wxWrite ::write
400 #define wxLseek lseek
402 #define wxFsync fsync
405 #define wxCRT_MkDir mkdir
406 #define wxCRT_RmDir rmdir
408 #define wxTell(fd) lseek(fd, 0, SEEK_CUR)
410 #define wxStructStat struct stat
412 #define wxCRT_Open open
413 #define wxCRT_Stat stat
414 #define wxCRT_Lstat lstat
415 #define wxCRT_Access access
417 #define wxHAS_NATIVE_LSTAT
420 // if the platform doesn't have symlinks, define wxCRT_Lstat to be the same as
421 // wxCRT_Stat to avoid #ifdefs in the code using it
422 #ifndef wxHAS_NATIVE_LSTAT
423 #define wxCRT_Lstat wxCRT_Stat
426 inline int wxAccess(const wxString
& path
, mode_t mode
)
427 { return wxCRT_Access(path
.fn_str(), mode
); }
428 inline int wxOpen(const wxString
& path
, int flags
, mode_t mode
)
429 { return wxCRT_Open(path
.fn_str(), flags
, mode
); }
431 // FIXME-CE: provide our own implementations of the missing CRT functions
433 inline int wxStat(const wxString
& path
, wxStructStat
*buf
)
434 { return wxCRT_Stat(path
.fn_str(), buf
); }
435 inline int wxLstat(const wxString
& path
, wxStructStat
*buf
)
436 { return wxCRT_Lstat(path
.fn_str(), buf
); }
437 inline int wxRmDir(const wxString
& path
)
438 { return wxCRT_RmDir(path
.fn_str()); }
439 #if defined(__WINDOWS__) || (defined(__OS2__) && defined(__WATCOMC__))
440 inline int wxMkDir(const wxString
& path
, mode_t
WXUNUSED(mode
) = 0)
441 { return wxCRT_MkDir(path
.fn_str()); }
443 inline int wxMkDir(const wxString
& path
, mode_t mode
)
444 { return wxCRT_MkDir(path
.fn_str(), mode
); }
446 #endif // !__WXWINCE__
449 #define wxO_BINARY O_BINARY
454 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
456 // VisualAge C++ V4.0 cannot have any external linkage const decs
457 // in headers included by more than one primary source
459 extern const int wxInvalidOffset
;
461 const int wxInvalidOffset
= -1;
464 // ----------------------------------------------------------------------------
466 // ----------------------------------------------------------------------------
467 WXDLLIMPEXP_BASE
bool wxFileExists(const wxString
& filename
);
469 // does the path exist? (may have or not '/' or '\\' at the end)
470 WXDLLIMPEXP_BASE
bool wxDirExists(const wxString
& pathName
);
472 WXDLLIMPEXP_BASE
bool wxIsAbsolutePath(const wxString
& filename
);
475 WXDLLIMPEXP_BASE wxChar
* wxFileNameFromPath(wxChar
*path
);
476 WXDLLIMPEXP_BASE wxString
wxFileNameFromPath(const wxString
& path
);
479 WXDLLIMPEXP_BASE wxString
wxPathOnly(const wxString
& path
);
481 WXDLLIMPEXP_BASE
void wxDos2UnixFilename(char *s
);
482 WXDLLIMPEXP_BASE
void wxDos2UnixFilename(wchar_t *s
);
484 WXDLLIMPEXP_BASE
void wxUnix2DosFilename(char *s
);
485 WXDLLIMPEXP_BASE
void wxUnix2DosFilename(wchar_t *s
);
487 // Strip the extension, in situ
488 WXDLLIMPEXP_BASE
void wxStripExtension(char *buffer
);
489 WXDLLIMPEXP_BASE
void wxStripExtension(wchar_t *buffer
);
490 WXDLLIMPEXP_BASE
void wxStripExtension(wxString
& buffer
);
492 // Get a temporary filename
493 WXDLLIMPEXP_BASE wxChar
* wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
= (wxChar
*) NULL
);
494 WXDLLIMPEXP_BASE
bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
);
496 // Expand file name (~/ and ${OPENWINHOME}/ stuff)
497 WXDLLIMPEXP_BASE
char* wxExpandPath(char *dest
, const wxString
& path
);
498 WXDLLIMPEXP_BASE
wchar_t* wxExpandPath(wchar_t *dest
, const wxString
& path
);
499 // FIXME-UTF8: add some wxString version
501 // Contract w.r.t environment (</usr/openwin/lib, OPENWHOME> -> ${OPENWINHOME}/lib)
502 // and make (if under the home tree) relative to home
503 // [caller must copy-- volatile]
504 WXDLLIMPEXP_BASE wxChar
* wxContractPath(const wxString
& filename
,
505 const wxString
& envname
= wxEmptyString
,
506 const wxString
& user
= wxEmptyString
);
508 // Destructive removal of /./ and /../ stuff
509 // FIXME-UTF8: deprecate these two (and similar)
510 WXDLLIMPEXP_BASE
char* wxRealPath(char *path
);
511 WXDLLIMPEXP_BASE
wchar_t* wxRealPath(wchar_t *path
);
512 WXDLLIMPEXP_BASE wxString
wxRealPath(const wxString
& path
);
514 // Allocate a copy of the full absolute path
515 WXDLLIMPEXP_BASE wxChar
* wxCopyAbsolutePath(const wxString
& path
);
517 // Get first file name matching given wild card.
518 // Flags are reserved for future use.
521 WXDLLIMPEXP_BASE wxString
wxFindFirstFile(const wxString
& spec
, int flags
= wxFILE
);
522 WXDLLIMPEXP_BASE wxString
wxFindNextFile();
524 // Does the pattern contain wildcards?
525 WXDLLIMPEXP_BASE
bool wxIsWild(const wxString
& pattern
);
527 // Does the pattern match the text (usually a filename)?
528 // If dot_special is true, doesn't match * against . (eliminating
529 // `hidden' dot files)
530 WXDLLIMPEXP_BASE
bool wxMatchWild(const wxString
& pattern
, const wxString
& text
, bool dot_special
= true);
532 // Concatenate two files to form third
533 WXDLLIMPEXP_BASE
bool wxConcatFiles(const wxString
& file1
, const wxString
& file2
, const wxString
& file3
);
535 // Copy file1 to file2
536 WXDLLIMPEXP_BASE
bool wxCopyFile(const wxString
& file1
, const wxString
& file2
,
537 bool overwrite
= true);
540 WXDLLIMPEXP_BASE
bool wxRemoveFile(const wxString
& file
);
543 WXDLLIMPEXP_BASE
bool wxRenameFile(const wxString
& file1
, const wxString
& file2
, bool overwrite
= true);
545 // Get current working directory.
546 #if WXWIN_COMPATIBILITY_2_6
547 // If buf is NULL, allocates space using new, else
549 // IMPORTANT NOTE getcwd is know not to work under some releases
550 // of Win32s 1.3, according to MS release notes!
551 wxDEPRECATED( WXDLLIMPEXP_BASE wxChar
* wxGetWorkingDirectory(wxChar
*buf
= (wxChar
*) NULL
, int sz
= 1000) );
552 // new and preferred version of wxGetWorkingDirectory
553 // NB: can't have the same name because of overloading ambiguity
554 #endif // WXWIN_COMPATIBILITY_2_6
555 WXDLLIMPEXP_BASE wxString
wxGetCwd();
557 // Set working directory
558 WXDLLIMPEXP_BASE
bool wxSetWorkingDirectory(const wxString
& d
);
561 WXDLLIMPEXP_BASE
bool wxMkdir(const wxString
& dir
, int perm
= 0777);
563 // Remove directory. Flags reserved for future use.
564 WXDLLIMPEXP_BASE
bool wxRmdir(const wxString
& dir
, int flags
= 0);
566 // Return the type of an open file
567 WXDLLIMPEXP_BASE wxFileKind
wxGetFileKind(int fd
);
568 WXDLLIMPEXP_BASE wxFileKind
wxGetFileKind(FILE *fp
);
570 #if WXWIN_COMPATIBILITY_2_6
571 // compatibility defines, don't use in new code
572 wxDEPRECATED( inline bool wxPathExists(const wxChar
*pszPathName
) );
573 inline bool wxPathExists(const wxChar
*pszPathName
)
575 return wxDirExists(pszPathName
);
577 #endif //WXWIN_COMPATIBILITY_2_6
579 // permissions; these functions work both on files and directories:
580 WXDLLIMPEXP_BASE
bool wxIsWritable(const wxString
&path
);
581 WXDLLIMPEXP_BASE
bool wxIsReadable(const wxString
&path
);
582 WXDLLIMPEXP_BASE
bool wxIsExecutable(const wxString
&path
);
584 // ----------------------------------------------------------------------------
585 // separators in file names
586 // ----------------------------------------------------------------------------
588 // between file name and extension
589 #define wxFILE_SEP_EXT wxT('.')
591 // between drive/volume name and the path
592 #define wxFILE_SEP_DSK wxT(':')
594 // between the path components
595 #define wxFILE_SEP_PATH_DOS wxT('\\')
596 #define wxFILE_SEP_PATH_UNIX wxT('/')
597 #define wxFILE_SEP_PATH_MAC wxT(':')
598 #define wxFILE_SEP_PATH_VMS wxT('.') // VMS also uses '[' and ']'
600 // separator in the path list (as in PATH environment variable)
601 // there is no PATH variable in Classic Mac OS so just use the
602 // semicolon (it must be different from the file name separator)
603 // NB: these are strings and not characters on purpose!
604 #define wxPATH_SEP_DOS wxT(";")
605 #define wxPATH_SEP_UNIX wxT(":")
606 #define wxPATH_SEP_MAC wxT(";")
608 // platform independent versions
609 #if defined(__UNIX__) && !defined(__OS2__)
610 // CYGWIN also uses UNIX settings
611 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_UNIX
612 #define wxPATH_SEP wxPATH_SEP_UNIX
613 #elif defined(__MAC__)
614 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_MAC
615 #define wxPATH_SEP wxPATH_SEP_MAC
616 #else // Windows and OS/2
617 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_DOS
618 #define wxPATH_SEP wxPATH_SEP_DOS
619 #endif // Unix/Windows
621 // this is useful for wxString::IsSameAs(): to compare two file names use
622 // filename1.IsSameAs(filename2, wxARE_FILENAMES_CASE_SENSITIVE)
623 #if defined(__UNIX__) && !defined(__DARWIN__) && !defined(__OS2__)
624 #define wxARE_FILENAMES_CASE_SENSITIVE true
625 #else // Windows, Mac OS and OS/2
626 #define wxARE_FILENAMES_CASE_SENSITIVE false
627 #endif // Unix/Windows
629 // is the char a path separator?
630 inline bool wxIsPathSeparator(wxChar c
)
632 // under DOS/Windows we should understand both Unix and DOS file separators
633 #if ( defined(__UNIX__) && !defined(__OS2__) )|| defined(__MAC__)
634 return c
== wxFILE_SEP_PATH
;
636 return c
== wxFILE_SEP_PATH_DOS
|| c
== wxFILE_SEP_PATH_UNIX
;
640 // does the string ends with path separator?
641 WXDLLIMPEXP_BASE
bool wxEndsWithPathSeparator(const wxString
& filename
);
643 // split the full path into path (including drive for DOS), name and extension
644 // (understands both '/' and '\\')
645 WXDLLIMPEXP_BASE
void wxSplitPath(const wxString
& fileName
,
650 // find a file in a list of directories, returns false if not found
651 WXDLLIMPEXP_BASE
bool wxFindFileInPath(wxString
*pStr
, const wxString
& szPath
, const wxString
& szFile
);
653 // Get the OS directory if appropriate (such as the Windows directory).
654 // On non-Windows platform, probably just return the empty string.
655 WXDLLIMPEXP_BASE wxString
wxGetOSDirectory();
659 // Get file modification time
660 WXDLLIMPEXP_BASE
time_t wxFileModificationTime(const wxString
& filename
);
662 #endif // wxUSE_DATETIME
664 // Parses the wildCard, returning the number of filters.
665 // Returns 0 if none or if there's a problem,
666 // The arrays will contain an equal number of items found before the error.
667 // wildCard is in the form:
668 // "All files (*)|*|Image Files (*.jpeg *.png)|*.jpg;*.png"
669 WXDLLIMPEXP_BASE
int wxParseCommonDialogsFilter(const wxString
& wildCard
, wxArrayString
& descriptions
, wxArrayString
& filters
);
671 // ----------------------------------------------------------------------------
673 // ----------------------------------------------------------------------------
677 // set umask to the given value in ctor and reset it to the old one in dtor
678 class WXDLLIMPEXP_BASE wxUmaskChanger
681 // change the umask to the given one if it is not -1: this allows to write
682 // the same code whether you really want to change umask or not, as is in
683 // wxFileConfig::Flush() for example
684 wxUmaskChanger(int umaskNew
)
686 m_umaskOld
= umaskNew
== -1 ? -1 : (int)umask((mode_t
)umaskNew
);
691 if ( m_umaskOld
!= -1 )
692 umask((mode_t
)m_umaskOld
);
699 // this macro expands to an "anonymous" wxUmaskChanger object under Unix and
701 #define wxCHANGE_UMASK(m) wxUmaskChanger wxMAKE_UNIQUE_NAME(umaskChanger_)(m)
705 #define wxCHANGE_UMASK(m)
707 #endif // __UNIX__/!__UNIX__
711 class WXDLLIMPEXP_BASE wxPathList
: public wxArrayString
715 wxPathList(const wxArrayString
&arr
)
718 // Adds all paths in environment variable
719 void AddEnvList(const wxString
& envVariable
);
721 // Adds given path to this list
722 bool Add(const wxString
& path
);
723 void Add(const wxArrayString
&paths
);
725 // Find the first full path for which the file exists
726 wxString
FindValidPath(const wxString
& filename
) const;
728 // Find the first full path for which the file exists; ensure it's an
729 // absolute path that gets returned.
730 wxString
FindAbsoluteValidPath(const wxString
& filename
) const;
732 // Given full path and filename, add path to list
733 bool EnsureFileAccessible(const wxString
& path
);
735 #if WXWIN_COMPATIBILITY_2_6
736 // Returns true if the path is in the list
737 wxDEPRECATED( bool Member(const wxString
& path
) const );
741 #endif // _WX_FILEFN_H_