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 // ----------------------------------------------------------------------------
102 #if !defined(__WXMAC__) || defined(__UNIX__) || defined(__MACH__)
103 #include <sys/types.h>
109 #if (defined(__VISUALC__) && !defined(__WXWINCE__)) || ( defined(__MWERKS__) && defined( __INTEL__) )
110 typedef _off_t off_t
;
111 #elif defined(__SYMANTEC__)
113 #elif defined(__MWERKS__) && !defined(__INTEL__) && !defined(__MACH__)
127 wxFILE_KIND_DISK
, // a file supporting seeking to arbitrary offsets
128 wxFILE_KIND_TERMINAL
, // a tty
129 wxFILE_KIND_PIPE
// a pipe
132 // ----------------------------------------------------------------------------
133 // declare our versions of low level file functions: some compilers prepend
134 // underscores to the usual names, some also have Unicode versions of them
135 // ----------------------------------------------------------------------------
137 // Wrappers around Win32 api functions like CreateFile, ReadFile and such
138 // Implemented in filefnwce.cpp
139 #if defined( __WXWINCE__)
140 typedef __int64 wxFileOffset
;
141 #define wxFileOffsetFmtSpec _("I64")
142 int wxOpen(const wxChar
*filename
, int oflag
, int WXUNUSED(pmode
));
143 int wxAccess(const wxChar
*name
, int WXUNUSED(how
));
145 int wxFsync(int WXUNUSED(fd
));
146 int wxRead(int fd
, void *buf
, unsigned int count
);
147 int wxWrite(int fd
, const void *buf
, unsigned int count
);
149 wxFileOffset
wxSeek(int fd
, wxFileOffset offset
, int origin
);
150 #define wxLSeek wxSeek
151 wxFileOffset
wxTell(int fd
);
153 // always Unicode under WinCE
154 #define wxMkDir _wmkdir
155 #define wxRmDir _wrmdir
156 #define wxStat _wstat
157 #define wxStructStat struct _stat
158 #elif defined(__WXMSW__) && !defined(__WXPALMOS__) && \
160 defined(__VISUALC__) || \
161 (defined(__MINGW32__) && !defined(__WINE__) && \
162 wxCHECK_W32API_VERSION(0, 5)) || \
163 defined(__MWERKS__) || \
164 defined(__DMC__) || \
165 defined(__WATCOMC__) || \
166 defined(__BORLANDC__) \
169 #undef wxHAS_HUGE_FILES
171 // detect compilers which have support for huge files
172 #if defined(__VISUALC__)
173 #define wxHAS_HUGE_FILES 1
174 #elif defined(__MINGW32__)
175 #define wxHAS_HUGE_FILES 1
176 #elif defined(_LARGE_FILES)
177 #define wxHAS_HUGE_FILES 1
180 // other Windows compilers (DMC, Watcom, Metrowerks and Borland) don't have
181 // huge file support (or at least not all functions needed for it by wx)
184 #ifdef wxHAS_HUGE_FILES
185 typedef wxLongLong_t wxFileOffset
;
186 #define wxFileOffsetFmtSpec wxLongLongFmtSpec
188 typedef off_t wxFileOffset
;
194 // MSVC and compatible compilers prepend underscores to the POSIX function
195 // names, other compilers don't and even if their later versions usually do
196 // define the versions with underscores for MSVC compatibility, it's better
197 // to avoid using them as they're not present in earlier versions and
198 // always using the native functions spelling is easier than testing for
200 #if defined(__BORLANDC__) || defined(__DMC__) || defined(__WATCOMC__)
201 #define wxPOSIX_IDENT(func) ::func
202 #else // by default assume MSVC-compatible names
203 #define wxPOSIX_IDENT(func) _ ## func
204 #define wxHAS_UNDERSCORES_IN_POSIX_IDENTS
207 // at least Borland 5.5 doesn't like "struct ::stat" so don't use the scope
208 // resolution operator present in wxPOSIX_IDENT for it
210 #define wxPOSIX_STRUCT(s) struct s
212 #define wxPOSIX_STRUCT(s) struct wxPOSIX_IDENT(s)
215 // first functions not working with strings, i.e. without ANSI/Unicode
217 #define wxClose wxPOSIX_IDENT(close)
219 #if defined(__MWERKS__)
220 #if __MSL__ >= 0x6000
221 #define wxRead(fd, buf, nCount) _read(fd, (void *)buf, nCount)
222 #define wxWrite(fd, buf, nCount) _write(fd, (void *)buf, nCount)
224 #define wxRead(fd, buf, nCount)\
225 _read(fd, (const char *)buf, nCount)
226 #define wxWrite(fd, buf, nCount)\
227 _write(fd, (const char *)buf, nCount)
230 #define wxRead wxPOSIX_IDENT(read)
231 #define wxWrite wxPOSIX_IDENT(write)
234 #ifdef wxHAS_HUGE_FILES
235 #define wxSeek wxPOSIX_IDENT(lseeki64)
236 #define wxLseek wxPOSIX_IDENT(lseeki64)
237 #define wxTell wxPOSIX_IDENT(telli64)
238 #else // !wxHAS_HUGE_FILES
239 #define wxSeek wxPOSIX_IDENT(lseek)
240 #define wxLseek wxPOSIX_IDENT(lseek)
241 #define wxTell wxPOSIX_IDENT(tell)
242 #endif // wxHAS_HUGE_FILES/!wxHAS_HUGE_FILES
245 #if !defined(__BORLANDC__) || (__BORLANDC__ > 0x540)
246 // NB: this one is not POSIX and always has the underscore
247 #define wxFsync _commit
253 #define wxEof wxPOSIX_IDENT(eof)
255 // then the functions taking strings
257 #if wxUSE_UNICODE_MSLU
258 // implement the missing file functions in Win9x ourselves
259 #if defined( __VISUALC__ ) \
260 || ( defined(__MINGW32__) && wxCHECK_W32API_VERSION( 0, 5 ) ) \
261 || ( defined(__MWERKS__) && defined(__WXMSW__) ) \
262 || ( defined(__BORLANDC__) && (__BORLANDC__ > 0x460) ) \
265 WXDLLIMPEXP_BASE
int wxMSLU__wopen(const wxChar
*name
,
266 int flags
, int mode
);
267 WXDLLIMPEXP_BASE
int wxMSLU__waccess(const wxChar
*name
,
269 WXDLLIMPEXP_BASE
int wxMSLU__wmkdir(const wxChar
*name
);
270 WXDLLIMPEXP_BASE
int wxMSLU__wrmdir(const wxChar
*name
);
273 wxMSLU__wstat(const wxChar
*name
, wxPOSIX_STRUCT(stat
) *buffer
);
275 wxMSLU__wstati64(const wxChar
*name
,
276 wxPOSIX_STRUCT(stati64
) *buffer
);
277 #endif // Windows compilers with MSLU support
279 #define wxOpen wxMSLU__wopen
281 #define wxAccess wxMSLU__waccess
282 #define wxMkDir wxMSLU__wmkdir
283 #define wxRmDir wxMSLU__wrmdir
284 #ifdef wxHAS_HUGE_FILES
285 #define wxStat wxMSLU__wstati64
287 #define wxStat wxMSLU__wstat
289 #else // !wxUSE_UNICODE_MSLU
291 #if __BORLANDC__ >= 0x550 && __BORLANDC__ <= 0x551
292 WXDLLIMPEXP_BASE
int wxOpen(const wxChar
*pathname
,
293 int flags
, mode_t mode
);
295 #define wxOpen _wopen
297 #define wxAccess _waccess
298 #define wxMkDir _wmkdir
299 #define wxRmDir _wrmdir
300 #ifdef wxHAS_HUGE_FILES
301 #define wxStat _wstati64
303 #define wxStat _wstat
306 #define wxOpen _wopen
307 #define wxAccess _waccess
308 #define wxMkDir _wmkdir
309 #define wxRmDir _wrmdir
310 #ifdef wxHAS_HUGE_FILES
311 #define wxStat _wstati64
313 #define wxStat _wstat
316 #endif // wxUSE_UNICODE_MSLU/!wxUSE_UNICODE_MSLU
317 #else // !wxUSE_UNICODE
318 #define wxOpen wxPOSIX_IDENT(open)
319 #define wxAccess wxPOSIX_IDENT(access)
320 #define wxMkDir wxPOSIX_IDENT(mkdir)
321 #define wxRmDir wxPOSIX_IDENT(rmdir)
322 #ifdef wxHAS_HUGE_FILES
323 #define wxStat wxPOSIX_IDENT(stati64)
325 #define wxStat wxPOSIX_IDENT(stat)
327 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
329 // Types: Notice that Watcom is the only compiler to have a wide char
330 // version of struct stat as well as a wide char stat function variant.
331 // This was droped since OW 1.4 "for consistency across platforms".
332 #ifdef wxHAS_HUGE_FILES
333 #if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4)
334 #define wxStructStat struct _wstati64
336 #define wxStructStat struct _stati64
339 #if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4)
340 #define wxStructStat struct _wstat
342 #define wxStructStat struct _stat
346 // constants (unless already defined by the user code)
347 #ifdef wxHAS_UNDERSCORES_IN_POSIX_IDENTS
349 #define O_RDONLY _O_RDONLY
350 #define O_WRONLY _O_WRONLY
351 #define O_RDWR _O_RDWR
352 #define O_EXCL _O_EXCL
353 #define O_CREAT _O_CREAT
354 #define O_BINARY _O_BINARY
358 #define S_IFMT _S_IFMT
359 #define S_IFDIR _S_IFDIR
360 #define S_IFREG _S_IFREG
362 #endif // wxHAS_UNDERSCORES_IN_POSIX_IDENTS
364 #ifdef wxHAS_HUGE_FILES
365 // wxFile is present and supports large files. Currently wxFFile
366 // doesn't have large file support with any Windows compiler (even
369 #define wxHAS_LARGE_FILES
373 // it's a private define, undefine it so that nobody gets tempted to use it
374 #undef wxHAS_HUGE_FILES
375 #else // Unix or Windows using unknown compiler, assume POSIX supported
376 typedef off_t wxFileOffset
;
378 #define wxFileOffsetFmtSpec wxLongLongFmtSpec
379 wxCOMPILE_TIME_ASSERT( sizeof(off_t
) == sizeof(wxLongLong_t
),
381 // wxFile is present and supports large files
383 #define wxHAS_LARGE_FILES
385 // wxFFile is present and supports large files
386 #if SIZEOF_LONG == 8 || defined HAVE_FSEEKO
387 #define wxHAS_LARGE_FFILES
390 #define wxFileOffsetFmtSpec _T("")
393 #define wxClose close
394 #define wxRead ::read
395 #define wxWrite ::write
396 #define wxLseek lseek
398 #define wxFsync fsync
401 #define wxMkDir mkdir
402 #define wxRmDir rmdir
404 #define wxTell(fd) lseek(fd, 0, SEEK_CUR)
406 #define wxStructStat struct stat
409 #define wxNEED_WX_UNISTD_H
411 typedef unsigned long mode_t
;
413 WXDLLIMPEXP_BASE
int wxStat( const wxChar
*file_name
, wxStructStat
*buf
);
414 WXDLLIMPEXP_BASE
int wxLstat( const wxChar
*file_name
, wxStructStat
*buf
);
415 WXDLLIMPEXP_BASE
int wxAccess( const wxChar
*pathname
, int mode
);
416 WXDLLIMPEXP_BASE
int wxOpen( const wxChar
*pathname
, int flags
, mode_t mode
);
420 #define wxLstat lstat
421 #define wxAccess access
424 #define wxHAS_NATIVE_LSTAT
428 #define wxO_BINARY O_BINARY
433 // if the platform doesn't have symlinks, define wxLstat to be the same as
434 // wxStat to avoid #ifdefs in the code using it
435 #ifndef wxHAS_NATIVE_LSTAT
436 #define wxLstat wxStat
439 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
441 // VisualAge C++ V4.0 cannot have any external linkage const decs
442 // in headers included by more than one primary source
444 extern const int wxInvalidOffset
;
446 const int wxInvalidOffset
= -1;
449 // ----------------------------------------------------------------------------
451 // ----------------------------------------------------------------------------
452 WXDLLIMPEXP_BASE
bool wxFileExists(const wxString
& filename
);
454 // does the path exist? (may have or not '/' or '\\' at the end)
455 WXDLLIMPEXP_BASE
bool wxDirExists(const wxString
& pathName
);
457 WXDLLIMPEXP_BASE
bool wxIsAbsolutePath(const wxString
& filename
);
460 WXDLLIMPEXP_BASE wxChar
* wxFileNameFromPath(wxChar
*path
);
461 WXDLLIMPEXP_BASE wxString
wxFileNameFromPath(const wxString
& path
);
464 WXDLLIMPEXP_BASE wxString
wxPathOnly(const wxString
& path
);
467 WXDLLIMPEXP_BASE wxString
wxRealPath(const wxString
& path
);
469 WXDLLIMPEXP_BASE
void wxDos2UnixFilename(wxChar
*s
);
471 WXDLLIMPEXP_BASE
void wxUnix2DosFilename(wxChar
*s
);
473 // Strip the extension, in situ
474 WXDLLIMPEXP_BASE
void wxStripExtension(wxChar
*buffer
);
475 WXDLLIMPEXP_BASE
void wxStripExtension(wxString
& buffer
);
477 // Get a temporary filename
478 WXDLLIMPEXP_BASE wxChar
* wxGetTempFileName(const wxString
& prefix
, wxChar
*buf
= (wxChar
*) NULL
);
479 WXDLLIMPEXP_BASE
bool wxGetTempFileName(const wxString
& prefix
, wxString
& buf
);
481 // Expand file name (~/ and ${OPENWINHOME}/ stuff)
482 WXDLLIMPEXP_BASE wxChar
* wxExpandPath(wxChar
*dest
, const wxChar
*path
);
483 WXDLLIMPEXP_BASE
bool wxExpandPath(wxString
& dest
, const wxChar
*path
);
485 // Contract w.r.t environment (</usr/openwin/lib, OPENWHOME> -> ${OPENWINHOME}/lib)
486 // and make (if under the home tree) relative to home
487 // [caller must copy-- volatile]
488 WXDLLIMPEXP_BASE wxChar
* wxContractPath(const wxString
& filename
,
489 const wxString
& envname
= wxEmptyString
,
490 const wxString
& user
= wxEmptyString
);
492 // Destructive removal of /./ and /../ stuff
493 WXDLLIMPEXP_BASE wxChar
* wxRealPath(wxChar
*path
);
495 // Allocate a copy of the full absolute path
496 WXDLLIMPEXP_BASE wxChar
* wxCopyAbsolutePath(const wxString
& path
);
498 // Get first file name matching given wild card.
499 // Flags are reserved for future use.
502 WXDLLIMPEXP_BASE wxString
wxFindFirstFile(const wxChar
*spec
, int flags
= wxFILE
);
503 WXDLLIMPEXP_BASE wxString
wxFindNextFile();
505 // Does the pattern contain wildcards?
506 WXDLLIMPEXP_BASE
bool wxIsWild(const wxString
& pattern
);
508 // Does the pattern match the text (usually a filename)?
509 // If dot_special is true, doesn't match * against . (eliminating
510 // `hidden' dot files)
511 WXDLLIMPEXP_BASE
bool wxMatchWild(const wxString
& pattern
, const wxString
& text
, bool dot_special
= true);
513 // Concatenate two files to form third
514 WXDLLIMPEXP_BASE
bool wxConcatFiles(const wxString
& file1
, const wxString
& file2
, const wxString
& file3
);
516 // Copy file1 to file2
517 WXDLLIMPEXP_BASE
bool wxCopyFile(const wxString
& file1
, const wxString
& file2
,
518 bool overwrite
= true);
521 WXDLLIMPEXP_BASE
bool wxRemoveFile(const wxString
& file
);
524 WXDLLIMPEXP_BASE
bool wxRenameFile(const wxString
& file1
, const wxString
& file2
, bool overwrite
= true);
526 // Get current working directory.
527 #if WXWIN_COMPATIBILITY_2_6
528 // If buf is NULL, allocates space using new, else
530 // IMPORTANT NOTE getcwd is know not to work under some releases
531 // of Win32s 1.3, according to MS release notes!
532 wxDEPRECATED( WXDLLIMPEXP_BASE wxChar
* wxGetWorkingDirectory(wxChar
*buf
= (wxChar
*) NULL
, int sz
= 1000) );
533 // new and preferred version of wxGetWorkingDirectory
534 // NB: can't have the same name because of overloading ambiguity
535 #endif // WXWIN_COMPATIBILITY_2_6
536 WXDLLIMPEXP_BASE wxString
wxGetCwd();
538 // Set working directory
539 WXDLLIMPEXP_BASE
bool wxSetWorkingDirectory(const wxString
& d
);
542 WXDLLIMPEXP_BASE
bool wxMkdir(const wxString
& dir
, int perm
= 0777);
544 // Remove directory. Flags reserved for future use.
545 WXDLLIMPEXP_BASE
bool wxRmdir(const wxString
& dir
, int flags
= 0);
547 // Return the type of an open file
548 WXDLLIMPEXP_BASE wxFileKind
wxGetFileKind(int fd
);
549 WXDLLIMPEXP_BASE wxFileKind
wxGetFileKind(FILE *fp
);
551 #if WXWIN_COMPATIBILITY_2_6
552 // compatibility defines, don't use in new code
553 wxDEPRECATED( inline bool wxPathExists(const wxChar
*pszPathName
) );
554 inline bool wxPathExists(const wxChar
*pszPathName
)
556 return wxDirExists(pszPathName
);
558 #endif //WXWIN_COMPATIBILITY_2_6
560 // permissions; these functions work both on files and directories:
561 WXDLLIMPEXP_BASE
bool wxIsWritable(const wxString
&path
);
562 WXDLLIMPEXP_BASE
bool wxIsReadable(const wxString
&path
);
563 WXDLLIMPEXP_BASE
bool wxIsExecutable(const wxString
&path
);
565 // ----------------------------------------------------------------------------
566 // separators in file names
567 // ----------------------------------------------------------------------------
569 // between file name and extension
570 #define wxFILE_SEP_EXT wxT('.')
572 // between drive/volume name and the path
573 #define wxFILE_SEP_DSK wxT(':')
575 // between the path components
576 #define wxFILE_SEP_PATH_DOS wxT('\\')
577 #define wxFILE_SEP_PATH_UNIX wxT('/')
578 #define wxFILE_SEP_PATH_MAC wxT(':')
579 #define wxFILE_SEP_PATH_VMS wxT('.') // VMS also uses '[' and ']'
581 // separator in the path list (as in PATH environment variable)
582 // there is no PATH variable in Classic Mac OS so just use the
583 // semicolon (it must be different from the file name separator)
584 // NB: these are strings and not characters on purpose!
585 #define wxPATH_SEP_DOS wxT(";")
586 #define wxPATH_SEP_UNIX wxT(":")
587 #define wxPATH_SEP_MAC wxT(";")
589 // platform independent versions
590 #if defined(__UNIX__) && !defined(__OS2__)
591 // CYGWIN also uses UNIX settings
592 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_UNIX
593 #define wxPATH_SEP wxPATH_SEP_UNIX
594 #elif defined(__MAC__)
595 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_MAC
596 #define wxPATH_SEP wxPATH_SEP_MAC
597 #else // Windows and OS/2
598 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_DOS
599 #define wxPATH_SEP wxPATH_SEP_DOS
600 #endif // Unix/Windows
602 // this is useful for wxString::IsSameAs(): to compare two file names use
603 // filename1.IsSameAs(filename2, wxARE_FILENAMES_CASE_SENSITIVE)
604 #if defined(__UNIX__) && !defined(__DARWIN__) && !defined(__OS2__)
605 #define wxARE_FILENAMES_CASE_SENSITIVE true
606 #else // Windows, Mac OS and OS/2
607 #define wxARE_FILENAMES_CASE_SENSITIVE false
608 #endif // Unix/Windows
610 // is the char a path separator?
611 inline bool wxIsPathSeparator(wxChar c
)
613 // under DOS/Windows we should understand both Unix and DOS file separators
614 #if ( defined(__UNIX__) && !defined(__OS2__) )|| defined(__MAC__)
615 return c
== wxFILE_SEP_PATH
;
617 return c
== wxFILE_SEP_PATH_DOS
|| c
== wxFILE_SEP_PATH_UNIX
;
621 // does the string ends with path separator?
622 WXDLLIMPEXP_BASE
bool wxEndsWithPathSeparator(const wxChar
*pszFileName
);
624 // split the full path into path (including drive for DOS), name and extension
625 // (understands both '/' and '\\')
626 WXDLLIMPEXP_BASE
void wxSplitPath(const wxChar
*pszFileName
,
631 // find a file in a list of directories, returns false if not found
632 WXDLLIMPEXP_BASE
bool wxFindFileInPath(wxString
*pStr
, const wxChar
*pszPath
, const wxChar
*pszFile
);
634 // Get the OS directory if appropriate (such as the Windows directory).
635 // On non-Windows platform, probably just return the empty string.
636 WXDLLIMPEXP_BASE wxString
wxGetOSDirectory();
640 // Get file modification time
641 WXDLLIMPEXP_BASE
time_t wxFileModificationTime(const wxString
& filename
);
643 #endif // wxUSE_DATETIME
645 // Parses the wildCard, returning the number of filters.
646 // Returns 0 if none or if there's a problem,
647 // The arrays will contain an equal number of items found before the error.
648 // wildCard is in the form:
649 // "All files (*)|*|Image Files (*.jpeg *.png)|*.jpg;*.png"
650 WXDLLIMPEXP_BASE
int wxParseCommonDialogsFilter(const wxString
& wildCard
, wxArrayString
& descriptions
, wxArrayString
& filters
);
652 // ----------------------------------------------------------------------------
654 // ----------------------------------------------------------------------------
658 // set umask to the given value in ctor and reset it to the old one in dtor
659 class WXDLLIMPEXP_BASE wxUmaskChanger
662 // change the umask to the given one if it is not -1: this allows to write
663 // the same code whether you really want to change umask or not, as is in
664 // wxFileConfig::Flush() for example
665 wxUmaskChanger(int umaskNew
)
667 m_umaskOld
= umaskNew
== -1 ? -1 : (int)umask((mode_t
)umaskNew
);
672 if ( m_umaskOld
!= -1 )
673 umask((mode_t
)m_umaskOld
);
680 // this macro expands to an "anonymous" wxUmaskChanger object under Unix and
682 #define wxCHANGE_UMASK(m) wxUmaskChanger wxMAKE_UNIQUE_NAME(umaskChanger_)(m)
686 #define wxCHANGE_UMASK(m)
688 #endif // __UNIX__/!__UNIX__
692 class WXDLLIMPEXP_BASE wxPathList
: public wxArrayString
696 wxPathList(const wxArrayString
&arr
)
699 // Adds all paths in environment variable
700 void AddEnvList(const wxString
& envVariable
);
702 // Adds given path to this list
703 bool Add(const wxString
& path
);
704 void Add(const wxArrayString
&paths
);
706 // Find the first full path for which the file exists
707 wxString
FindValidPath(const wxString
& filename
) const;
709 // Find the first full path for which the file exists; ensure it's an
710 // absolute path that gets returned.
711 wxString
FindAbsoluteValidPath(const wxString
& filename
) const;
713 // Given full path and filename, add path to list
714 bool EnsureFileAccessible(const wxString
& path
);
716 #if WXWIN_COMPATIBILITY_2_6
717 // Returns true if the path is in the list
718 wxDEPRECATED( bool Member(const wxString
& path
) const );
722 #endif // _WX_FILEFN_H_