1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-10-03 16:39:45 +00:00
|
|
|
// Name: wx/filefn.h
|
1998-05-20 14:01:55 +00:00
|
|
|
// Purpose: File- and directory-related functions
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 29/01/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998 Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _FILEFN_H_
|
|
|
|
#define _FILEFN_H_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-08-20 22:52:21 +00:00
|
|
|
#include "wx/list.h"
|
2004-06-20 09:14:18 +00:00
|
|
|
#include "wx/arrstr.h"
|
1998-07-15 18:40:37 +00:00
|
|
|
|
2007-12-15 01:25:56 +00:00
|
|
|
#ifndef __WXPALMOS5__
|
2004-09-25 22:44:19 +00:00
|
|
|
#ifdef __WXWINCE__
|
|
|
|
#include "wx/msw/wince/time.h"
|
|
|
|
#include "wx/msw/private.h"
|
|
|
|
#else
|
|
|
|
#include <time.h>
|
2002-12-07 15:41:13 +00:00
|
|
|
#endif
|
2000-01-19 01:00:25 +00:00
|
|
|
|
2004-09-25 22:44:19 +00:00
|
|
|
#ifdef __WXWINCE__
|
|
|
|
// Nothing
|
|
|
|
#elif !defined(__MWERKS__)
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#else
|
|
|
|
#ifdef __MACH__
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <utime.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#else
|
|
|
|
#include <stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <unix.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
2007-12-15 01:25:56 +00:00
|
|
|
#endif // !__WXPALMOS5__
|
2004-09-25 22:44:19 +00:00
|
|
|
|
|
|
|
#ifdef __OS2__
|
|
|
|
// need to check for __OS2__ first since currently both
|
|
|
|
// __OS2__ and __UNIX__ are defined.
|
|
|
|
#include <process.h>
|
|
|
|
#include "wx/os2/private.h"
|
2005-07-21 17:08:28 +00:00
|
|
|
#ifdef __WATCOMC__
|
|
|
|
#include <direct.h>
|
|
|
|
#endif
|
2004-09-25 22:44:19 +00:00
|
|
|
#include <io.h>
|
|
|
|
#ifdef __EMX__
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#elif defined(__UNIX__)
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
|
2007-12-31 10:05:00 +00:00
|
|
|
#if !defined( __GNUWIN32__ ) && !defined( __MWERKS__ ) && !defined(__WXWINCE__) && !defined(__CYGWIN__)
|
2004-09-25 22:44:19 +00:00
|
|
|
#include <direct.h>
|
|
|
|
#include <dos.h>
|
|
|
|
#include <io.h>
|
|
|
|
#endif // __WINDOWS__
|
|
|
|
#endif // native Win compiler
|
|
|
|
|
|
|
|
#if defined(__DOS__)
|
|
|
|
#ifdef __WATCOMC__
|
|
|
|
#include <direct.h>
|
|
|
|
#include <dos.h>
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
|
|
|
#ifdef __DJGPP__
|
|
|
|
#include <io.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
|
|
|
|
// this (3.1 I believe) and how to test for it.
|
|
|
|
// If this works for Borland 4.0 as well, then no worries.
|
|
|
|
#include <dir.h>
|
|
|
|
#endif
|
|
|
|
|
2007-12-15 01:25:56 +00:00
|
|
|
#ifndef __WXPALMOS5__
|
2004-09-25 22:44:19 +00:00
|
|
|
#ifndef __WXWINCE__
|
|
|
|
#include <fcntl.h> // O_RDONLY &c
|
|
|
|
#endif
|
2007-12-15 01:25:56 +00:00
|
|
|
#endif // !__WXPALMOS5__
|
1998-07-14 22:15:29 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2007-06-10 17:14:14 +00:00
|
|
|
#if defined(__VISUALC__) || defined(__DIGITALMARS__)
|
|
|
|
typedef int mode_t;
|
|
|
|
#endif
|
|
|
|
|
2002-12-07 15:41:13 +00:00
|
|
|
#ifdef __WXWINCE__
|
|
|
|
typedef long off_t;
|
|
|
|
#else
|
2004-09-25 22:44:19 +00:00
|
|
|
// define off_t
|
|
|
|
#if !defined(__WXMAC__) || defined(__UNIX__) || defined(__MACH__)
|
|
|
|
#include <sys/types.h>
|
|
|
|
#else
|
|
|
|
typedef long off_t;
|
|
|
|
#endif
|
1999-01-01 16:22:21 +00:00
|
|
|
#endif
|
1998-07-14 22:15:29 +00:00
|
|
|
|
2004-09-27 21:08:54 +00:00
|
|
|
#if (defined(__VISUALC__) && !defined(__WXWINCE__)) || ( defined(__MWERKS__) && defined( __INTEL__) )
|
1999-02-03 16:48:12 +00:00
|
|
|
typedef _off_t off_t;
|
2003-05-02 11:21:03 +00:00
|
|
|
#elif defined(__SYMANTEC__)
|
1999-02-03 16:48:12 +00:00
|
|
|
typedef long off_t;
|
2003-03-28 19:18:51 +00:00
|
|
|
#elif defined(__MWERKS__) && !defined(__INTEL__) && !defined(__MACH__)
|
1999-02-11 16:56:43 +00:00
|
|
|
typedef long off_t;
|
2007-12-15 01:25:56 +00:00
|
|
|
#elif defined(__WXPALMOS5__)
|
|
|
|
typedef long off_t;
|
1999-01-07 08:43:47 +00:00
|
|
|
#endif
|
|
|
|
|
1999-02-09 17:04:29 +00:00
|
|
|
enum wxSeekMode
|
|
|
|
{
|
1998-07-14 22:15:29 +00:00
|
|
|
wxFromStart,
|
|
|
|
wxFromCurrent,
|
|
|
|
wxFromEnd
|
1999-02-09 17:04:29 +00:00
|
|
|
};
|
1998-07-14 22:15:29 +00:00
|
|
|
|
2005-02-12 21:53:51 +00:00
|
|
|
enum wxFileKind
|
2005-02-11 12:39:03 +00:00
|
|
|
{
|
2005-02-12 21:53:51 +00:00
|
|
|
wxFILE_KIND_UNKNOWN,
|
|
|
|
wxFILE_KIND_DISK, // a file supporting seeking to arbitrary offsets
|
|
|
|
wxFILE_KIND_TERMINAL, // a tty
|
|
|
|
wxFILE_KIND_PIPE // a pipe
|
2005-02-11 12:39:03 +00:00
|
|
|
};
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// declare our versions of low level file functions: some compilers prepend
|
|
|
|
// underscores to the usual names, some also have Unicode versions of them
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2004-09-25 22:44:19 +00:00
|
|
|
// Wrappers around Win32 api functions like CreateFile, ReadFile and such
|
|
|
|
// Implemented in filefnwce.cpp
|
2004-09-28 07:45:37 +00:00
|
|
|
#if defined( __WXWINCE__)
|
2004-09-25 22:44:19 +00:00
|
|
|
typedef __int64 wxFileOffset;
|
|
|
|
#define wxFileOffsetFmtSpec _("I64")
|
2007-06-10 17:14:14 +00:00
|
|
|
WXDLLIMPEXP_BASE int wxCRT_Open(const wxChar *filename, int oflag, int WXUNUSED(pmode));
|
|
|
|
WXDLLIMPEXP_BASE int wxCRT_Access(const wxChar *name, int WXUNUSED(how));
|
2007-06-06 15:56:44 +00:00
|
|
|
WXDLLIMPEXP_BASE int wxClose(int fd);
|
|
|
|
WXDLLIMPEXP_BASE int wxFsync(int WXUNUSED(fd));
|
|
|
|
WXDLLIMPEXP_BASE int wxRead(int fd, void *buf, unsigned int count);
|
|
|
|
WXDLLIMPEXP_BASE int wxWrite(int fd, const void *buf, unsigned int count);
|
|
|
|
WXDLLIMPEXP_BASE int wxEof(int fd);
|
|
|
|
WXDLLIMPEXP_BASE wxFileOffset wxSeek(int fd, wxFileOffset offset, int origin);
|
2004-09-25 22:44:19 +00:00
|
|
|
#define wxLSeek wxSeek
|
2007-06-06 15:56:44 +00:00
|
|
|
WXDLLIMPEXP_BASE wxFileOffset wxTell(int fd);
|
2005-03-17 17:46:32 +00:00
|
|
|
|
2005-01-07 18:47:29 +00:00
|
|
|
// always Unicode under WinCE
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_MkDir _wmkdir
|
|
|
|
#define wxCRT_RmDir _wrmdir
|
|
|
|
#define wxCRT_Stat _wstat
|
2004-09-25 22:44:19 +00:00
|
|
|
#define wxStructStat struct _stat
|
2007-08-22 10:41:32 +00:00
|
|
|
#elif (defined(__WXMSW__) || defined(__OS2__)) && !defined(__WXPALMOS__) && \
|
2006-10-23 20:39:09 +00:00
|
|
|
( \
|
|
|
|
defined(__VISUALC__) || \
|
2008-08-30 12:52:47 +00:00
|
|
|
defined(__MINGW64__) || \
|
2006-10-23 20:39:09 +00:00
|
|
|
(defined(__MINGW32__) && !defined(__WINE__) && \
|
|
|
|
wxCHECK_W32API_VERSION(0, 5)) || \
|
|
|
|
defined(__MWERKS__) || \
|
|
|
|
defined(__DMC__) || \
|
|
|
|
defined(__WATCOMC__) || \
|
|
|
|
defined(__BORLANDC__) \
|
|
|
|
)
|
2004-09-26 13:18:46 +00:00
|
|
|
|
2004-10-08 00:20:07 +00:00
|
|
|
#undef wxHAS_HUGE_FILES
|
2006-10-23 20:39:09 +00:00
|
|
|
|
2006-10-27 11:27:38 +00:00
|
|
|
// detect compilers which have support for huge files
|
|
|
|
#if defined(__VISUALC__)
|
2006-10-28 00:20:47 +00:00
|
|
|
#define wxHAS_HUGE_FILES 1
|
2008-08-30 12:52:47 +00:00
|
|
|
#elif defined(__MINGW32__) || defined(__MINGW64__)
|
2004-10-08 00:20:07 +00:00
|
|
|
#define wxHAS_HUGE_FILES 1
|
2006-10-24 12:08:05 +00:00
|
|
|
#elif defined(_LARGE_FILES)
|
|
|
|
#define wxHAS_HUGE_FILES 1
|
2004-09-25 22:44:19 +00:00
|
|
|
#endif
|
|
|
|
|
2006-10-24 12:08:05 +00:00
|
|
|
// other Windows compilers (DMC, Watcom, Metrowerks and Borland) don't have
|
|
|
|
// huge file support (or at least not all functions needed for it by wx)
|
|
|
|
// currently
|
|
|
|
|
|
|
|
#ifdef wxHAS_HUGE_FILES
|
2004-09-25 22:44:19 +00:00
|
|
|
typedef wxLongLong_t wxFileOffset;
|
|
|
|
#define wxFileOffsetFmtSpec wxLongLongFmtSpec
|
|
|
|
#else
|
2004-09-26 13:18:46 +00:00
|
|
|
typedef off_t wxFileOffset;
|
2004-09-25 22:44:19 +00:00
|
|
|
#endif
|
|
|
|
|
2006-10-29 13:55:52 +00:00
|
|
|
|
|
|
|
// functions
|
|
|
|
|
|
|
|
// MSVC and compatible compilers prepend underscores to the POSIX function
|
|
|
|
// names, other compilers don't and even if their later versions usually do
|
|
|
|
// define the versions with underscores for MSVC compatibility, it's better
|
|
|
|
// to avoid using them as they're not present in earlier versions and
|
|
|
|
// always using the native functions spelling is easier than testing for
|
|
|
|
// the versions
|
2008-05-31 12:44:40 +00:00
|
|
|
#if defined(__BORLANDC__) || defined(__DMC__) || defined(__WATCOMC__) || defined(__MINGW64__)
|
2006-10-29 13:55:52 +00:00
|
|
|
#define wxPOSIX_IDENT(func) ::func
|
|
|
|
#else // by default assume MSVC-compatible names
|
|
|
|
#define wxPOSIX_IDENT(func) _ ## func
|
|
|
|
#define wxHAS_UNDERSCORES_IN_POSIX_IDENTS
|
|
|
|
#endif
|
|
|
|
|
2006-11-27 22:04:41 +00:00
|
|
|
// at least Borland 5.5 doesn't like "struct ::stat" so don't use the scope
|
|
|
|
// resolution operator present in wxPOSIX_IDENT for it
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#define wxPOSIX_STRUCT(s) struct s
|
|
|
|
#else
|
|
|
|
#define wxPOSIX_STRUCT(s) struct wxPOSIX_IDENT(s)
|
|
|
|
#endif
|
2006-10-29 13:55:52 +00:00
|
|
|
|
|
|
|
// first functions not working with strings, i.e. without ANSI/Unicode
|
|
|
|
// complications
|
|
|
|
#define wxClose wxPOSIX_IDENT(close)
|
2004-09-25 22:44:19 +00:00
|
|
|
|
|
|
|
#if defined(__MWERKS__)
|
|
|
|
#if __MSL__ >= 0x6000
|
2004-10-03 13:36:46 +00:00
|
|
|
#define wxRead(fd, buf, nCount) _read(fd, (void *)buf, nCount)
|
|
|
|
#define wxWrite(fd, buf, nCount) _write(fd, (void *)buf, nCount)
|
2004-09-25 22:44:19 +00:00
|
|
|
#else
|
2004-10-03 13:36:46 +00:00
|
|
|
#define wxRead(fd, buf, nCount)\
|
|
|
|
_read(fd, (const char *)buf, nCount)
|
|
|
|
#define wxWrite(fd, buf, nCount)\
|
|
|
|
_write(fd, (const char *)buf, nCount)
|
2004-09-25 22:44:19 +00:00
|
|
|
#endif
|
2006-10-29 13:55:52 +00:00
|
|
|
#else // __MWERKS__
|
|
|
|
#define wxRead wxPOSIX_IDENT(read)
|
|
|
|
#define wxWrite wxPOSIX_IDENT(write)
|
2004-09-25 22:44:19 +00:00
|
|
|
#endif
|
2006-10-29 13:55:52 +00:00
|
|
|
|
2006-10-24 12:08:05 +00:00
|
|
|
#ifdef wxHAS_HUGE_FILES
|
2008-05-31 12:44:40 +00:00
|
|
|
#ifndef __MINGW64__
|
|
|
|
#define wxSeek wxPOSIX_IDENT(lseeki64)
|
|
|
|
#define wxLseek wxPOSIX_IDENT(lseeki64)
|
|
|
|
#define wxTell wxPOSIX_IDENT(telli64)
|
|
|
|
#else
|
|
|
|
// unfortunately, mingw-W64 is somewhat inconsistent...
|
|
|
|
#define wxSeek _lseeki64
|
|
|
|
#define wxLseek _lseeki64
|
|
|
|
#define wxTell _telli64
|
|
|
|
#endif
|
2006-10-23 20:39:09 +00:00
|
|
|
#else // !wxHAS_HUGE_FILES
|
2006-10-29 13:55:52 +00:00
|
|
|
#define wxSeek wxPOSIX_IDENT(lseek)
|
|
|
|
#define wxLseek wxPOSIX_IDENT(lseek)
|
|
|
|
#define wxTell wxPOSIX_IDENT(tell)
|
2006-10-23 20:39:09 +00:00
|
|
|
#endif // wxHAS_HUGE_FILES/!wxHAS_HUGE_FILES
|
|
|
|
|
2006-10-29 13:55:52 +00:00
|
|
|
#ifndef __WATCOMC__
|
2008-02-13 22:39:32 +00:00
|
|
|
#if !defined(__BORLANDC__) || (__BORLANDC__ > 0x540)
|
|
|
|
// NB: this one is not POSIX and always has the underscore
|
|
|
|
#define wxFsync _commit
|
2006-10-23 20:39:09 +00:00
|
|
|
|
2008-02-13 22:39:32 +00:00
|
|
|
// could be already defined by configure (Cygwin)
|
|
|
|
#ifndef HAVE_FSYNC
|
|
|
|
#define HAVE_FSYNC
|
|
|
|
#endif
|
|
|
|
#endif // BORLANDC
|
2004-09-27 17:27:41 +00:00
|
|
|
#endif
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2006-10-29 13:55:52 +00:00
|
|
|
#define wxEof wxPOSIX_IDENT(eof)
|
|
|
|
|
|
|
|
// then the functions taking strings
|
2000-07-15 19:51:35 +00:00
|
|
|
#if wxUSE_UNICODE
|
2001-12-31 00:45:29 +00:00
|
|
|
#if wxUSE_UNICODE_MSLU
|
2006-10-26 19:06:51 +00:00
|
|
|
// implement the missing file functions in Win9x ourselves
|
|
|
|
#if defined( __VISUALC__ ) \
|
|
|
|
|| ( defined(__MINGW32__) && wxCHECK_W32API_VERSION( 0, 5 ) ) \
|
|
|
|
|| ( defined(__MWERKS__) && defined(__WXMSW__) ) \
|
|
|
|
|| ( defined(__BORLANDC__) && (__BORLANDC__ > 0x460) ) \
|
|
|
|
|| defined(__DMC__)
|
|
|
|
|
2006-10-29 13:55:52 +00:00
|
|
|
WXDLLIMPEXP_BASE int wxMSLU__wopen(const wxChar *name,
|
|
|
|
int flags, int mode);
|
|
|
|
WXDLLIMPEXP_BASE int wxMSLU__waccess(const wxChar *name,
|
|
|
|
int mode);
|
2006-10-26 19:06:51 +00:00
|
|
|
WXDLLIMPEXP_BASE int wxMSLU__wmkdir(const wxChar *name);
|
|
|
|
WXDLLIMPEXP_BASE int wxMSLU__wrmdir(const wxChar *name);
|
2006-10-29 13:55:52 +00:00
|
|
|
|
|
|
|
WXDLLIMPEXP_BASE int
|
2006-11-27 22:04:41 +00:00
|
|
|
wxMSLU__wstat(const wxChar *name, wxPOSIX_STRUCT(stat) *buffer);
|
2006-10-29 13:55:52 +00:00
|
|
|
WXDLLIMPEXP_BASE int
|
|
|
|
wxMSLU__wstati64(const wxChar *name,
|
2006-11-27 22:04:41 +00:00
|
|
|
wxPOSIX_STRUCT(stati64) *buffer);
|
2006-10-26 19:06:51 +00:00
|
|
|
#endif // Windows compilers with MSLU support
|
2006-10-25 11:27:24 +00:00
|
|
|
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Open wxMSLU__wopen
|
2004-09-14 12:08:28 +00:00
|
|
|
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Access wxMSLU__waccess
|
|
|
|
#define wxCRT_MkDir wxMSLU__wmkdir
|
|
|
|
#define wxCRT_RmDir wxMSLU__wrmdir
|
2006-10-24 12:08:05 +00:00
|
|
|
#ifdef wxHAS_HUGE_FILES
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Stat wxMSLU__wstati64
|
2004-09-25 22:44:19 +00:00
|
|
|
#else
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Stat wxMSLU__wstat
|
2004-09-25 22:44:19 +00:00
|
|
|
#endif
|
2006-10-29 13:55:52 +00:00
|
|
|
#else // !wxUSE_UNICODE_MSLU
|
2006-10-29 16:48:41 +00:00
|
|
|
#ifdef __BORLANDC__
|
2006-11-09 22:45:19 +00:00
|
|
|
#if __BORLANDC__ >= 0x550 && __BORLANDC__ <= 0x551
|
2007-06-10 17:14:14 +00:00
|
|
|
WXDLLIMPEXP_BASE int wxCRT_Open(const wxChar *pathname,
|
|
|
|
int flags, mode_t mode);
|
2006-11-09 22:45:19 +00:00
|
|
|
#else
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Open _wopen
|
2006-11-09 22:45:19 +00:00
|
|
|
#endif
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Access _waccess
|
|
|
|
#define wxCRT_MkDir _wmkdir
|
|
|
|
#define wxCRT_RmDir _wrmdir
|
2006-10-29 16:48:41 +00:00
|
|
|
#ifdef wxHAS_HUGE_FILES
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Stat _wstati64
|
2006-10-29 16:48:41 +00:00
|
|
|
#else
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Stat _wstat
|
2006-10-29 16:48:41 +00:00
|
|
|
#endif
|
2004-09-25 22:44:19 +00:00
|
|
|
#else
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Open _wopen
|
|
|
|
#define wxCRT_Access _waccess
|
|
|
|
#define wxCRT_MkDir _wmkdir
|
|
|
|
#define wxCRT_RmDir _wrmdir
|
2006-10-29 16:48:41 +00:00
|
|
|
#ifdef wxHAS_HUGE_FILES
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Stat _wstati64
|
2006-10-29 16:48:41 +00:00
|
|
|
#else
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Stat _wstat
|
2006-10-29 16:48:41 +00:00
|
|
|
#endif
|
2004-09-25 22:44:19 +00:00
|
|
|
#endif
|
2006-10-29 13:55:52 +00:00
|
|
|
#endif // wxUSE_UNICODE_MSLU/!wxUSE_UNICODE_MSLU
|
2000-07-15 19:51:35 +00:00
|
|
|
#else // !wxUSE_UNICODE
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Open wxPOSIX_IDENT(open)
|
|
|
|
#define wxCRT_Access wxPOSIX_IDENT(access)
|
|
|
|
#define wxCRT_MkDir wxPOSIX_IDENT(mkdir)
|
|
|
|
#define wxCRT_RmDir wxPOSIX_IDENT(rmdir)
|
2006-10-24 12:08:05 +00:00
|
|
|
#ifdef wxHAS_HUGE_FILES
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Stat wxPOSIX_IDENT(stati64)
|
2004-09-25 22:44:19 +00:00
|
|
|
#else
|
2007-10-28 18:52:46 +00:00
|
|
|
// Unfortunately Watcom is not consistent, so:-
|
|
|
|
#if defined(__OS2__) && defined(__WATCOMC__)
|
|
|
|
#define wxCRT_Stat _stat
|
|
|
|
#else
|
|
|
|
#define wxCRT_Stat wxPOSIX_IDENT(stat)
|
|
|
|
#endif
|
2004-09-25 22:44:19 +00:00
|
|
|
#endif
|
2006-10-23 20:39:09 +00:00
|
|
|
#endif // wxUSE_UNICODE/!wxUSE_UNICODE
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2005-11-09 21:04:54 +00:00
|
|
|
// Types: Notice that Watcom is the only compiler to have a wide char
|
|
|
|
// version of struct stat as well as a wide char stat function variant.
|
2008-05-30 18:59:55 +00:00
|
|
|
// This was dropped since OW 1.4 "for consistency across platforms".
|
|
|
|
//
|
|
|
|
// Borland is also special in that it uses _stat with Unicode functions
|
|
|
|
// (for MSVC compatibility?) but stat with ANSI ones
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#if wxUSE_UNICODE
|
|
|
|
#define wxStructStat struct _stat
|
2004-09-25 22:44:19 +00:00
|
|
|
#else
|
2008-05-30 18:59:55 +00:00
|
|
|
#define wxStructStat struct stat
|
2004-09-25 22:44:19 +00:00
|
|
|
#endif
|
2008-05-30 18:59:55 +00:00
|
|
|
#else // !__BORLANDC__
|
|
|
|
#ifdef wxHAS_HUGE_FILES
|
|
|
|
#if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4)
|
|
|
|
#define wxStructStat struct _wstati64
|
|
|
|
#else
|
|
|
|
#define wxStructStat struct _stati64
|
|
|
|
#endif
|
2004-09-25 22:44:19 +00:00
|
|
|
#else
|
2008-05-30 18:59:55 +00:00
|
|
|
#if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4)
|
|
|
|
#define wxStructStat struct _wstat
|
|
|
|
#else
|
|
|
|
#define wxStructStat struct _stat
|
|
|
|
#endif
|
2004-09-25 22:44:19 +00:00
|
|
|
#endif
|
2008-05-30 18:59:55 +00:00
|
|
|
#endif // __BORLANDC__/!__BORLANDC__
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
// constants (unless already defined by the user code)
|
2006-10-29 13:55:52 +00:00
|
|
|
#ifdef wxHAS_UNDERSCORES_IN_POSIX_IDENTS
|
2004-10-08 00:26:20 +00:00
|
|
|
#ifndef O_RDONLY
|
|
|
|
#define O_RDONLY _O_RDONLY
|
|
|
|
#define O_WRONLY _O_WRONLY
|
|
|
|
#define O_RDWR _O_RDWR
|
|
|
|
#define O_EXCL _O_EXCL
|
|
|
|
#define O_CREAT _O_CREAT
|
|
|
|
#define O_BINARY _O_BINARY
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef S_IFMT
|
|
|
|
#define S_IFMT _S_IFMT
|
|
|
|
#define S_IFDIR _S_IFDIR
|
|
|
|
#define S_IFREG _S_IFREG
|
|
|
|
#endif
|
2006-10-29 13:55:52 +00:00
|
|
|
#endif // wxHAS_UNDERSCORES_IN_POSIX_IDENTS
|
2004-09-25 22:44:19 +00:00
|
|
|
|
2006-10-24 12:08:05 +00:00
|
|
|
#ifdef wxHAS_HUGE_FILES
|
2006-10-23 12:51:00 +00:00
|
|
|
// wxFile is present and supports large files. Currently wxFFile
|
|
|
|
// doesn't have large file support with any Windows compiler (even
|
|
|
|
// Win64 ones).
|
|
|
|
#if wxUSE_FILE
|
2006-10-23 21:46:13 +00:00
|
|
|
#define wxHAS_LARGE_FILES
|
2006-10-23 12:51:00 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
2006-10-23 20:39:09 +00:00
|
|
|
|
|
|
|
// it's a private define, undefine it so that nobody gets tempted to use it
|
2004-10-08 00:20:07 +00:00
|
|
|
#undef wxHAS_HUGE_FILES
|
2008-03-02 00:43:06 +00:00
|
|
|
#elif defined (__WXPALMOS__)
|
|
|
|
typedef off_t wxFileOffset;
|
|
|
|
#ifdef _LARGE_FILES
|
|
|
|
#define wxFileOffsetFmtSpec wxLongLongFmtSpec
|
|
|
|
wxCOMPILE_TIME_ASSERT( sizeof(off_t) == sizeof(wxLongLong_t), BadFileSizeType );
|
|
|
|
// wxFile is present and supports large files
|
|
|
|
#ifdef wxUSE_FILE
|
|
|
|
#define wxHAS_LARGE_FILES
|
|
|
|
#endif
|
|
|
|
// wxFFile is present and supports large files
|
|
|
|
#if SIZEOF_LONG == 8 || defined HAVE_FSEEKO
|
|
|
|
#define wxHAS_LARGE_FFILES
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define wxFileOffsetFmtSpec _T("")
|
|
|
|
#endif
|
|
|
|
#define wxClose close
|
|
|
|
#define wxRead ::read
|
|
|
|
#define wxWrite ::write
|
|
|
|
#define wxLseek lseek
|
|
|
|
#define wxSeek lseek
|
|
|
|
#define wxFsync fsync
|
|
|
|
#define wxEof eof
|
|
|
|
|
|
|
|
#define wxCRT_MkDir mkdir
|
|
|
|
#define wxCRT_RmDir rmdir
|
|
|
|
|
|
|
|
#define wxTell(fd) lseek(fd, 0, SEEK_CUR)
|
|
|
|
|
|
|
|
#define wxStructStat struct stat
|
|
|
|
|
|
|
|
#define wxCRT_Open open
|
|
|
|
#define wxCRT_Stat svfs_stat
|
|
|
|
#define wxCRT_Lstat lstat
|
|
|
|
#define wxCRT_Access access
|
|
|
|
|
|
|
|
#define wxHAS_NATIVE_LSTAT
|
2006-10-23 20:39:09 +00:00
|
|
|
#else // Unix or Windows using unknown compiler, assume POSIX supported
|
2004-09-25 22:44:19 +00:00
|
|
|
typedef off_t wxFileOffset;
|
|
|
|
#ifdef _LARGE_FILES
|
|
|
|
#define wxFileOffsetFmtSpec wxLongLongFmtSpec
|
2004-10-15 00:23:32 +00:00
|
|
|
wxCOMPILE_TIME_ASSERT( sizeof(off_t) == sizeof(wxLongLong_t),
|
|
|
|
BadFileSizeType );
|
2006-10-23 12:51:00 +00:00
|
|
|
// wxFile is present and supports large files
|
|
|
|
#ifdef wxUSE_FILE
|
2006-10-23 21:46:13 +00:00
|
|
|
#define wxHAS_LARGE_FILES
|
2006-10-23 12:51:00 +00:00
|
|
|
#endif
|
|
|
|
// wxFFile is present and supports large files
|
|
|
|
#if SIZEOF_LONG == 8 || defined HAVE_FSEEKO
|
2006-10-23 21:46:13 +00:00
|
|
|
#define wxHAS_LARGE_FFILES
|
2006-10-23 12:51:00 +00:00
|
|
|
#endif
|
2004-09-25 22:44:19 +00:00
|
|
|
#else
|
|
|
|
#define wxFileOffsetFmtSpec _T("")
|
|
|
|
#endif
|
2000-07-15 19:51:35 +00:00
|
|
|
// functions
|
|
|
|
#define wxClose close
|
2004-09-25 22:44:19 +00:00
|
|
|
#define wxRead ::read
|
|
|
|
#define wxWrite ::write
|
2000-07-15 19:51:35 +00:00
|
|
|
#define wxLseek lseek
|
2004-09-25 22:44:19 +00:00
|
|
|
#define wxSeek lseek
|
2005-08-04 01:05:26 +00:00
|
|
|
#define wxFsync fsync
|
2000-07-15 19:51:35 +00:00
|
|
|
#define wxEof eof
|
|
|
|
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_MkDir mkdir
|
|
|
|
#define wxCRT_RmDir rmdir
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
#define wxTell(fd) lseek(fd, 0, SEEK_CUR)
|
|
|
|
|
|
|
|
#define wxStructStat struct stat
|
2004-09-14 12:08:28 +00:00
|
|
|
|
2007-06-10 17:14:14 +00:00
|
|
|
#define wxCRT_Open open
|
|
|
|
#define wxCRT_Stat stat
|
|
|
|
#define wxCRT_Lstat lstat
|
|
|
|
#define wxCRT_Access access
|
2006-10-21 14:45:40 +00:00
|
|
|
|
2006-10-23 20:39:09 +00:00
|
|
|
#define wxHAS_NATIVE_LSTAT
|
2004-09-27 14:33:51 +00:00
|
|
|
#endif // platforms
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2007-06-10 17:14:14 +00:00
|
|
|
// if the platform doesn't have symlinks, define wxCRT_Lstat to be the same as
|
|
|
|
// wxCRT_Stat to avoid #ifdefs in the code using it
|
|
|
|
#ifndef wxHAS_NATIVE_LSTAT
|
|
|
|
#define wxCRT_Lstat wxCRT_Stat
|
|
|
|
#endif
|
|
|
|
|
|
|
|
inline int wxAccess(const wxString& path, mode_t mode)
|
|
|
|
{ return wxCRT_Access(path.fn_str(), mode); }
|
|
|
|
inline int wxOpen(const wxString& path, int flags, mode_t mode)
|
|
|
|
{ return wxCRT_Open(path.fn_str(), flags, mode); }
|
2007-07-27 16:34:24 +00:00
|
|
|
|
|
|
|
// FIXME-CE: provide our own implementations of the missing CRT functions
|
|
|
|
#ifndef __WXWINCE__
|
|
|
|
inline int wxStat(const wxString& path, wxStructStat *buf)
|
|
|
|
{ return wxCRT_Stat(path.fn_str(), buf); }
|
|
|
|
inline int wxLstat(const wxString& path, wxStructStat *buf)
|
|
|
|
{ return wxCRT_Lstat(path.fn_str(), buf); }
|
2007-06-10 17:14:14 +00:00
|
|
|
inline int wxRmDir(const wxString& path)
|
|
|
|
{ return wxCRT_RmDir(path.fn_str()); }
|
2007-08-22 10:41:32 +00:00
|
|
|
#if defined(__WINDOWS__) || (defined(__OS2__) && defined(__WATCOMC__))
|
2007-06-10 17:14:14 +00:00
|
|
|
inline int wxMkDir(const wxString& path, mode_t WXUNUSED(mode) = 0)
|
|
|
|
{ return wxCRT_MkDir(path.fn_str()); }
|
|
|
|
#else
|
|
|
|
inline int wxMkDir(const wxString& path, mode_t mode)
|
|
|
|
{ return wxCRT_MkDir(path.fn_str(), mode); }
|
|
|
|
#endif
|
2007-07-27 16:34:24 +00:00
|
|
|
#endif // !__WXWINCE__
|
2007-06-10 17:14:14 +00:00
|
|
|
|
2006-10-23 12:51:00 +00:00
|
|
|
#ifdef O_BINARY
|
|
|
|
#define wxO_BINARY O_BINARY
|
|
|
|
#else
|
|
|
|
#define wxO_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
2004-09-27 14:33:51 +00:00
|
|
|
#if defined(__VISAGECPP__) && __IBMCPP__ >= 400
|
|
|
|
//
|
|
|
|
// VisualAge C++ V4.0 cannot have any external linkage const decs
|
|
|
|
// in headers included by more than one primary source
|
|
|
|
//
|
2004-11-10 21:02:58 +00:00
|
|
|
extern const int wxInvalidOffset;
|
2004-09-27 14:33:51 +00:00
|
|
|
#else
|
2004-11-10 21:02:58 +00:00
|
|
|
const int wxInvalidOffset = -1;
|
2004-09-27 14:33:51 +00:00
|
|
|
#endif
|
2000-07-15 19:51:35 +00:00
|
|
|
|
1998-07-14 22:15:29 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// functions
|
|
|
|
// ----------------------------------------------------------------------------
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxFileExists(const wxString& filename);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// does the path exist? (may have or not '/' or '\\' at the end)
|
2007-03-02 12:44:52 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxDirExists(const wxString& pathName);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxIsAbsolutePath(const wxString& filename);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Get filename
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxChar* wxFileNameFromPath(wxChar *path);
|
|
|
|
WXDLLIMPEXP_BASE wxString wxFileNameFromPath(const wxString& path);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Get directory
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxString wxPathOnly(const wxString& path);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2007-06-10 17:14:14 +00:00
|
|
|
WXDLLIMPEXP_BASE void wxDos2UnixFilename(char *s);
|
|
|
|
WXDLLIMPEXP_BASE void wxDos2UnixFilename(wchar_t *s);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2007-06-10 17:14:14 +00:00
|
|
|
WXDLLIMPEXP_BASE void wxUnix2DosFilename(char *s);
|
|
|
|
WXDLLIMPEXP_BASE void wxUnix2DosFilename(wchar_t *s);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Strip the extension, in situ
|
2007-06-10 17:14:14 +00:00
|
|
|
WXDLLIMPEXP_BASE void wxStripExtension(char *buffer);
|
|
|
|
WXDLLIMPEXP_BASE void wxStripExtension(wchar_t *buffer);
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE void wxStripExtension(wxString& buffer);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-01 17:18:11 +00:00
|
|
|
// Get a temporary filename
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxChar* wxGetTempFileName(const wxString& prefix, wxChar *buf = (wxChar *) NULL);
|
|
|
|
WXDLLIMPEXP_BASE bool wxGetTempFileName(const wxString& prefix, wxString& buf);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Expand file name (~/ and ${OPENWINHOME}/ stuff)
|
2007-06-10 17:14:14 +00:00
|
|
|
WXDLLIMPEXP_BASE char* wxExpandPath(char *dest, const wxString& path);
|
|
|
|
WXDLLIMPEXP_BASE wchar_t* wxExpandPath(wchar_t *dest, const wxString& path);
|
|
|
|
// FIXME-UTF8: add some wxString version
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Contract w.r.t environment (</usr/openwin/lib, OPENWHOME> -> ${OPENWINHOME}/lib)
|
|
|
|
// and make (if under the home tree) relative to home
|
|
|
|
// [caller must copy-- volatile]
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxChar* wxContractPath(const wxString& filename,
|
2001-12-01 17:18:11 +00:00
|
|
|
const wxString& envname = wxEmptyString,
|
|
|
|
const wxString& user = wxEmptyString);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Destructive removal of /./ and /../ stuff
|
2007-06-10 17:14:14 +00:00
|
|
|
// FIXME-UTF8: deprecate these two (and similar)
|
|
|
|
WXDLLIMPEXP_BASE char* wxRealPath(char *path);
|
|
|
|
WXDLLIMPEXP_BASE wchar_t* wxRealPath(wchar_t *path);
|
|
|
|
WXDLLIMPEXP_BASE wxString wxRealPath(const wxString& path);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Allocate a copy of the full absolute path
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxChar* wxCopyAbsolutePath(const wxString& path);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Get first file name matching given wild card.
|
|
|
|
// Flags are reserved for future use.
|
|
|
|
#define wxFILE 1
|
|
|
|
#define wxDIR 2
|
2007-06-10 17:14:14 +00:00
|
|
|
WXDLLIMPEXP_BASE wxString wxFindFirstFile(const wxString& spec, int flags = wxFILE);
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxString wxFindNextFile();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Does the pattern contain wildcards?
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxIsWild(const wxString& pattern);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Does the pattern match the text (usually a filename)?
|
2004-09-14 12:08:28 +00:00
|
|
|
// If dot_special is true, doesn't match * against . (eliminating
|
1998-05-20 14:01:55 +00:00
|
|
|
// `hidden' dot files)
|
2004-09-14 12:08:28 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxMatchWild(const wxString& pattern, const wxString& text, bool dot_special = true);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Concatenate two files to form third
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxConcatFiles(const wxString& file1, const wxString& file2, const wxString& file3);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Copy file1 to file2
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxCopyFile(const wxString& file1, const wxString& file2,
|
2004-09-14 12:08:28 +00:00
|
|
|
bool overwrite = true);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Remove file
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxRemoveFile(const wxString& file);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Rename file
|
2006-04-16 21:14:00 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxRenameFile(const wxString& file1, const wxString& file2, bool overwrite = true);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Get current working directory.
|
2008-07-05 19:06:06 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_6
|
|
|
|
// If buf is NULL, allocates space using new, else
|
|
|
|
// copies into buf.
|
|
|
|
// IMPORTANT NOTE getcwd is know not to work under some releases
|
|
|
|
// of Win32s 1.3, according to MS release notes!
|
|
|
|
wxDEPRECATED( WXDLLIMPEXP_BASE wxChar* wxGetWorkingDirectory(wxChar *buf = (wxChar *) NULL, int sz = 1000) );
|
|
|
|
// new and preferred version of wxGetWorkingDirectory
|
|
|
|
// NB: can't have the same name because of overloading ambiguity
|
|
|
|
#endif // WXWIN_COMPATIBILITY_2_6
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxString wxGetCwd();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Set working directory
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxSetWorkingDirectory(const wxString& d);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Make directory
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxMkdir(const wxString& dir, int perm = 0777);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Remove directory. Flags reserved for future use.
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxRmdir(const wxString& dir, int flags = 0);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2005-02-11 12:39:03 +00:00
|
|
|
// Return the type of an open file
|
2005-02-12 21:53:51 +00:00
|
|
|
WXDLLIMPEXP_BASE wxFileKind wxGetFileKind(int fd);
|
2005-03-05 23:24:17 +00:00
|
|
|
WXDLLIMPEXP_BASE wxFileKind wxGetFileKind(FILE *fp);
|
2005-02-11 12:39:03 +00:00
|
|
|
|
2008-07-05 19:06:06 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_6
|
|
|
|
// compatibility defines, don't use in new code
|
|
|
|
wxDEPRECATED( inline bool wxPathExists(const wxChar *pszPathName) );
|
|
|
|
inline bool wxPathExists(const wxChar *pszPathName)
|
|
|
|
{
|
|
|
|
return wxDirExists(pszPathName);
|
|
|
|
}
|
|
|
|
#endif //WXWIN_COMPATIBILITY_2_6
|
|
|
|
|
2006-10-05 17:28:31 +00:00
|
|
|
// permissions; these functions work both on files and directories:
|
|
|
|
WXDLLIMPEXP_BASE bool wxIsWritable(const wxString &path);
|
|
|
|
WXDLLIMPEXP_BASE bool wxIsReadable(const wxString &path);
|
|
|
|
WXDLLIMPEXP_BASE bool wxIsExecutable(const wxString &path);
|
|
|
|
|
2001-11-30 23:38:06 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
// separators in file names
|
2001-11-30 23:38:06 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// between file name and extension
|
1999-10-08 14:35:56 +00:00
|
|
|
#define wxFILE_SEP_EXT wxT('.')
|
2001-11-30 23:38:06 +00:00
|
|
|
|
|
|
|
// between drive/volume name and the path
|
1999-10-08 14:35:56 +00:00
|
|
|
#define wxFILE_SEP_DSK wxT(':')
|
2001-11-30 23:38:06 +00:00
|
|
|
|
|
|
|
// between the path components
|
1999-10-08 14:35:56 +00:00
|
|
|
#define wxFILE_SEP_PATH_DOS wxT('\\')
|
|
|
|
#define wxFILE_SEP_PATH_UNIX wxT('/')
|
2000-12-31 00:23:09 +00:00
|
|
|
#define wxFILE_SEP_PATH_MAC wxT(':')
|
2001-11-30 23:38:06 +00:00
|
|
|
#define wxFILE_SEP_PATH_VMS wxT('.') // VMS also uses '[' and ']'
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// separator in the path list (as in PATH environment variable)
|
2001-02-15 21:51:14 +00:00
|
|
|
// there is no PATH variable in Classic Mac OS so just use the
|
|
|
|
// semicolon (it must be different from the file name separator)
|
1998-05-20 14:01:55 +00:00
|
|
|
// NB: these are strings and not characters on purpose!
|
1999-10-08 14:35:56 +00:00
|
|
|
#define wxPATH_SEP_DOS wxT(";")
|
|
|
|
#define wxPATH_SEP_UNIX wxT(":")
|
2001-02-15 21:51:14 +00:00
|
|
|
#define wxPATH_SEP_MAC wxT(";")
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// platform independent versions
|
2004-07-25 11:33:34 +00:00
|
|
|
#if defined(__UNIX__) && !defined(__OS2__)
|
|
|
|
// CYGWIN also uses UNIX settings
|
1999-02-09 17:04:29 +00:00
|
|
|
#define wxFILE_SEP_PATH wxFILE_SEP_PATH_UNIX
|
|
|
|
#define wxPATH_SEP wxPATH_SEP_UNIX
|
2007-12-15 01:25:56 +00:00
|
|
|
#elif defined(__WXPALMOS__)
|
|
|
|
#define wxFILE_SEP_PATH wxFILE_SEP_PATH_UNIX
|
|
|
|
#define wxPATH_SEP wxPATH_SEP_UNIX
|
2000-12-31 00:23:09 +00:00
|
|
|
#elif defined(__MAC__)
|
2001-05-24 21:22:04 +00:00
|
|
|
#define wxFILE_SEP_PATH wxFILE_SEP_PATH_MAC
|
2001-10-14 08:21:22 +00:00
|
|
|
#define wxPATH_SEP wxPATH_SEP_MAC
|
1999-07-28 03:38:12 +00:00
|
|
|
#else // Windows and OS/2
|
1999-02-09 17:04:29 +00:00
|
|
|
#define wxFILE_SEP_PATH wxFILE_SEP_PATH_DOS
|
|
|
|
#define wxPATH_SEP wxPATH_SEP_DOS
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif // Unix/Windows
|
|
|
|
|
1998-07-14 21:55:17 +00:00
|
|
|
// this is useful for wxString::IsSameAs(): to compare two file names use
|
|
|
|
// filename1.IsSameAs(filename2, wxARE_FILENAMES_CASE_SENSITIVE)
|
2003-11-23 22:09:14 +00:00
|
|
|
#if defined(__UNIX__) && !defined(__DARWIN__) && !defined(__OS2__)
|
2004-09-14 12:08:28 +00:00
|
|
|
#define wxARE_FILENAMES_CASE_SENSITIVE true
|
2001-10-14 08:21:22 +00:00
|
|
|
#else // Windows, Mac OS and OS/2
|
2004-09-14 12:08:28 +00:00
|
|
|
#define wxARE_FILENAMES_CASE_SENSITIVE false
|
1998-07-14 21:55:17 +00:00
|
|
|
#endif // Unix/Windows
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// is the char a path separator?
|
1999-04-12 22:20:19 +00:00
|
|
|
inline bool wxIsPathSeparator(wxChar c)
|
2002-01-04 01:39:22 +00:00
|
|
|
{
|
|
|
|
// under DOS/Windows we should understand both Unix and DOS file separators
|
2004-09-14 12:08:28 +00:00
|
|
|
#if ( defined(__UNIX__) && !defined(__OS2__) )|| defined(__MAC__)
|
2002-01-04 01:39:22 +00:00
|
|
|
return c == wxFILE_SEP_PATH;
|
|
|
|
#else
|
|
|
|
return c == wxFILE_SEP_PATH_DOS || c == wxFILE_SEP_PATH_UNIX;
|
|
|
|
#endif
|
|
|
|
}
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// does the string ends with path separator?
|
2007-06-10 17:14:14 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxEndsWithPathSeparator(const wxString& filename);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-07-14 21:55:17 +00:00
|
|
|
// split the full path into path (including drive for DOS), name and extension
|
|
|
|
// (understands both '/' and '\\')
|
2007-06-10 17:14:14 +00:00
|
|
|
WXDLLIMPEXP_BASE void wxSplitPath(const wxString& fileName,
|
1998-07-14 21:55:17 +00:00
|
|
|
wxString *pstrPath,
|
|
|
|
wxString *pstrName,
|
|
|
|
wxString *pstrExt);
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// find a file in a list of directories, returns false if not found
|
2007-06-10 17:14:14 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxFindFileInPath(wxString *pStr, const wxString& szPath, const wxString& szFile);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-02-06 13:32:46 +00:00
|
|
|
// Get the OS directory if appropriate (such as the Windows directory).
|
|
|
|
// On non-Windows platform, probably just return the empty string.
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxString wxGetOSDirectory();
|
1999-02-06 13:32:46 +00:00
|
|
|
|
2006-07-31 12:03:22 +00:00
|
|
|
#if wxUSE_DATETIME
|
|
|
|
|
2000-01-19 01:00:25 +00:00
|
|
|
// Get file modification time
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE time_t wxFileModificationTime(const wxString& filename);
|
2000-01-19 01:00:25 +00:00
|
|
|
|
2006-07-31 12:03:22 +00:00
|
|
|
#endif // wxUSE_DATETIME
|
|
|
|
|
2004-06-15 15:25:33 +00:00
|
|
|
// Parses the wildCard, returning the number of filters.
|
|
|
|
// Returns 0 if none or if there's a problem,
|
|
|
|
// The arrays will contain an equal number of items found before the error.
|
|
|
|
// wildCard is in the form:
|
|
|
|
// "All files (*)|*|Image Files (*.jpeg *.png)|*.jpg;*.png"
|
2004-06-22 16:58:27 +00:00
|
|
|
WXDLLIMPEXP_BASE int wxParseCommonDialogsFilter(const wxString& wildCard, wxArrayString& descriptions, wxArrayString& filters);
|
2004-06-15 15:25:33 +00:00
|
|
|
|
1998-07-14 22:15:29 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2004-10-03 22:12:58 +00:00
|
|
|
#ifdef __UNIX__
|
|
|
|
|
|
|
|
// set umask to the given value in ctor and reset it to the old one in dtor
|
|
|
|
class WXDLLIMPEXP_BASE wxUmaskChanger
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// change the umask to the given one if it is not -1: this allows to write
|
|
|
|
// the same code whether you really want to change umask or not, as is in
|
|
|
|
// wxFileConfig::Flush() for example
|
|
|
|
wxUmaskChanger(int umaskNew)
|
|
|
|
{
|
2004-10-04 08:26:55 +00:00
|
|
|
m_umaskOld = umaskNew == -1 ? -1 : (int)umask((mode_t)umaskNew);
|
2004-10-03 22:12:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~wxUmaskChanger()
|
|
|
|
{
|
|
|
|
if ( m_umaskOld != -1 )
|
|
|
|
umask((mode_t)m_umaskOld);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_umaskOld;
|
|
|
|
};
|
|
|
|
|
|
|
|
// this macro expands to an "anonymous" wxUmaskChanger object under Unix and
|
|
|
|
// nothing elsewhere
|
|
|
|
#define wxCHANGE_UMASK(m) wxUmaskChanger wxMAKE_UNIQUE_NAME(umaskChanger_)(m)
|
|
|
|
|
|
|
|
#else // !__UNIX__
|
|
|
|
|
|
|
|
#define wxCHANGE_UMASK(m)
|
|
|
|
|
|
|
|
#endif // __UNIX__/!__UNIX__
|
|
|
|
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// Path searching
|
2006-07-25 00:16:55 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxPathList : public wxArrayString
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1998-11-29 22:21:32 +00:00
|
|
|
public:
|
2006-07-25 00:16:55 +00:00
|
|
|
wxPathList() {}
|
|
|
|
wxPathList(const wxArrayString &arr)
|
|
|
|
{ Add(arr); }
|
|
|
|
|
1999-02-09 17:04:29 +00:00
|
|
|
// Adds all paths in environment variable
|
|
|
|
void AddEnvList(const wxString& envVariable);
|
1999-01-26 11:51:12 +00:00
|
|
|
|
2006-07-25 00:16:55 +00:00
|
|
|
// Adds given path to this list
|
2006-10-27 17:59:32 +00:00
|
|
|
bool Add(const wxString& path);
|
2006-07-25 00:16:55 +00:00
|
|
|
void Add(const wxArrayString &paths);
|
|
|
|
|
1999-02-09 17:04:29 +00:00
|
|
|
// Find the first full path for which the file exists
|
2006-07-25 00:16:55 +00:00
|
|
|
wxString FindValidPath(const wxString& filename) const;
|
|
|
|
|
1999-02-09 17:04:29 +00:00
|
|
|
// Find the first full path for which the file exists; ensure it's an
|
|
|
|
// absolute path that gets returned.
|
2006-07-25 00:16:55 +00:00
|
|
|
wxString FindAbsoluteValidPath(const wxString& filename) const;
|
|
|
|
|
1999-02-09 17:04:29 +00:00
|
|
|
// Given full path and filename, add path to list
|
2006-10-27 17:59:32 +00:00
|
|
|
bool EnsureFileAccessible(const wxString& path);
|
2008-07-05 19:06:06 +00:00
|
|
|
|
|
|
|
#if WXWIN_COMPATIBILITY_2_6
|
|
|
|
// Returns true if the path is in the list
|
|
|
|
wxDEPRECATED( bool Member(const wxString& path) const );
|
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2006-07-25 00:16:55 +00:00
|
|
|
#endif // _WX_FILEFN_H_
|