]> git.saurik.com Git - wxWidgets.git/blame - include/wx/filefn.h
Fix building wxSTC as a DLL using MinGW GCC 3.x.
[wxWidgets.git] / include / wx / filefn.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: filefn.h
3// Purpose: File- and directory-related functions
4// Author: Julian Smart
5// Modified by:
6// Created: 29/01/98
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Julian Smart
371a5b4e 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _FILEFN_H_
13#define _FILEFN_H_
c801d85f 14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
7af89395 16 #pragma interface "filefn.h"
c801d85f
KB
17#endif
18
ed58dbea 19#include "wx/list.h"
e49f47aa 20
0e0126c2 21#ifndef __WXWINCE__
a47ce4a7 22#include <time.h>
0e0126c2 23#endif
a47ce4a7 24
45ea509a
VZ
25// ----------------------------------------------------------------------------
26// constants
27// ----------------------------------------------------------------------------
c801d85f 28
0e0126c2
RR
29#ifdef __WXWINCE__
30 typedef long off_t;
31#else
32
45ea509a 33// define off_t
2d2ed20f 34#if !defined(__WXMAC__) || defined(__UNIX__) || defined(__MACH__)
7af89395 35 #include <sys/types.h>
17dff81c 36#else
7af89395 37 typedef long off_t;
17dff81c 38#endif
45ea509a 39
8be97d65 40#if defined(__VISUALC__) || ( defined(__MWERKS__) && defined( __INTEL__) )
3f4a0c5b
VZ
41 typedef _off_t off_t;
42#elif defined(__BORLANDC__) && defined(__WIN16__)
43 typedef long off_t;
2bdf7154 44#elif defined(__SYMANTEC__)
3f4a0c5b 45 typedef long off_t;
2d2ed20f 46#elif defined(__MWERKS__) && !defined(__INTEL__) && !defined(__MACH__)
8be97d65 47 typedef long off_t;
2432b92d
JS
48#endif
49
5d19b6ac
CE
50#endif
51
66b6b045
DW
52#if defined(__VISAGECPP__) && __IBMCPP__ >= 400
53//
70862fa8 54// VisualAge C++ V4.0 cannot have any external linkage const decs
66b6b045
DW
55// in headers included by more than one primary source
56//
70862fa8
DW
57extern const off_t wxInvalidOffset;
58#else
1678ad78 59const off_t wxInvalidOffset = (off_t)-1;
66b6b045 60#endif
1678ad78 61
7af89395
VZ
62enum wxSeekMode
63{
45ea509a
VZ
64 wxFromStart,
65 wxFromCurrent,
66 wxFromEnd
7af89395 67};
45ea509a 68
f6bcfd97
BP
69// ----------------------------------------------------------------------------
70// declare our versions of low level file functions: some compilers prepend
71// underscores to the usual names, some also have Unicode versions of them
72// ----------------------------------------------------------------------------
73
74// Microsoft compiler loves underscores, feed them to it
fbdb357e 75#if defined( __VISUALC__ ) \
5283098e 76 || ( defined(__MINGW32__) && !defined(__WINE__) && wxCHECK_W32API_VERSION( 0, 5 ) ) \
de85a884 77 || ( defined(__MWERKS__) && defined(__WXMSW__) )
f6bcfd97 78 // functions
a3bb1d14
CE
79#ifdef __BORLANDC__
80 #define _tell tell
81#endif
f6bcfd97
BP
82 #define wxClose _close
83 #define wxRead _read
84 #define wxWrite _write
85 #define wxLseek _lseek
86 #define wxFsync _commit
87 #define wxEof _eof
88
89 #define wxTell _tell
90
91 #if wxUSE_UNICODE
6de5b599 92 #if wxUSE_UNICODE_MSLU
3e6477f4
CE
93 #define wxOpen wxMSLU__wopen
94
3d5231db
VS
95 #define wxAccess wxMSLU__waccess
96 #define wxMkDir wxMSLU__wmkdir
97 #define wxRmDir wxMSLU__wrmdir
98 #define wxStat wxMSLU__wstat
6de5b599
VS
99 #else
100 #define wxOpen _wopen
3d5231db
VS
101 #define wxAccess _waccess
102 #define wxMkDir _wmkdir
103 #define wxRmDir _wrmdir
104 #define wxStat _wstat
6de5b599 105 #endif
f6bcfd97 106 #else // !wxUSE_UNICODE
3e6477f4
CE
107#ifdef __BORLANDC__
108 #define wxOpen open
109#else
f6bcfd97 110 #define wxOpen _open
3e6477f4 111#endif
f6bcfd97 112 #define wxAccess _access
f6bcfd97
BP
113 #define wxMkDir _mkdir
114 #define wxRmDir _rmdir
f6bcfd97
BP
115 #define wxStat _stat
116 #endif
117
118 // types
119 #define wxStructStat struct _stat
120
121 // constants (unless already defined by the user code)
a3bb1d14 122 #if !defined(O_RDONLY) && !defined(__BORLANDC__)
f6bcfd97
BP
123 #define O_RDONLY _O_RDONLY
124 #define O_WRONLY _O_WRONLY
125 #define O_RDWR _O_RDWR
126 #define O_EXCL _O_EXCL
127 #define O_CREAT _O_CREAT
128 #define O_BINARY _O_BINARY
a3bb1d14 129 #endif
f6bcfd97 130
a3bb1d14 131 #ifndef __BORLANDC__
f6bcfd97
BP
132 #define S_IFMT _S_IFMT
133 #define S_IFDIR _S_IFDIR
134 #define S_IFREG _S_IFREG
135 #endif // O_RDONLY
136#else
137 // functions
f6bcfd97
BP
138 #define wxClose close
139 #define wxRead read
140 #define wxWrite write
141 #define wxLseek lseek
142 #define wxFsync commit
f6bcfd97
BP
143 #define wxEof eof
144
145 #define wxMkDir mkdir
146 #define wxRmDir rmdir
147
148 #define wxTell(fd) lseek(fd, 0, SEEK_CUR)
149
f6bcfd97 150 #define wxStructStat struct stat
92980e90
RR
151
152#if wxUSE_UNICODE
153# define wxNEED_WX_UNISTD_H
c4e41ce3
SC
154#if defined(__MWERKS__) && defined(macintosh)
155 #include <sys/stat.h>
156#endif
bddd7a8d
VZ
157WXDLLIMPEXP_BASE int wxStat( const wxChar *file_name, wxStructStat *buf );
158WXDLLIMPEXP_BASE int wxAccess( const wxChar *pathname, int mode );
159WXDLLIMPEXP_BASE int wxOpen( const wxChar *pathname, int flags, mode_t mode );
43673450
SC
160#else
161#if defined(__WXMAC__) && !defined(__DARWIN__)
162#include <sys/stat.h>
163WXDLLIMPEXP_BASE int wxStat( const wxChar *file_name, wxStructStat *buf );
164WXDLLIMPEXP_BASE int wxAccess( const wxChar *pathname, int mode );
165WXDLLIMPEXP_BASE int wxOpen( const wxChar *pathname, int flags, mode_t mode );
92980e90
RR
166#else
167 #define wxOpen open
168 #define wxStat stat
169 #define wxAccess access
170#endif
43673450 171#endif
f6bcfd97
BP
172
173#endif // VC++
174
45ea509a
VZ
175// ----------------------------------------------------------------------------
176// functions
177// ----------------------------------------------------------------------------
bddd7a8d 178WXDLLIMPEXP_BASE bool wxFileExists(const wxString& filename);
c801d85f
KB
179
180// does the path exist? (may have or not '/' or '\\' at the end)
bddd7a8d 181WXDLLIMPEXP_BASE bool wxPathExists(const wxChar *pszPathName);
c801d85f 182
bddd7a8d 183WXDLLIMPEXP_BASE bool wxIsAbsolutePath(const wxString& filename);
c801d85f
KB
184
185// Get filename
bddd7a8d
VZ
186WXDLLIMPEXP_BASE wxChar* wxFileNameFromPath(wxChar *path);
187WXDLLIMPEXP_BASE wxString wxFileNameFromPath(const wxString& path);
c801d85f
KB
188
189// Get directory
bddd7a8d 190WXDLLIMPEXP_BASE wxString wxPathOnly(const wxString& path);
c801d85f
KB
191
192// wxString version
bddd7a8d 193WXDLLIMPEXP_BASE wxString wxRealPath(const wxString& path);
c801d85f 194
bddd7a8d 195WXDLLIMPEXP_BASE void wxDos2UnixFilename(wxChar *s);
c801d85f 196
bddd7a8d 197WXDLLIMPEXP_BASE void wxUnix2DosFilename(wxChar *s);
c801d85f
KB
198
199// Strip the extension, in situ
bddd7a8d
VZ
200WXDLLIMPEXP_BASE void wxStripExtension(wxChar *buffer);
201WXDLLIMPEXP_BASE void wxStripExtension(wxString& buffer);
c801d85f 202
ade35f11 203// Get a temporary filename
bddd7a8d
VZ
204WXDLLIMPEXP_BASE wxChar* wxGetTempFileName(const wxString& prefix, wxChar *buf = (wxChar *) NULL);
205WXDLLIMPEXP_BASE bool wxGetTempFileName(const wxString& prefix, wxString& buf);
c801d85f
KB
206
207// Expand file name (~/ and ${OPENWINHOME}/ stuff)
bddd7a8d
VZ
208WXDLLIMPEXP_BASE wxChar* wxExpandPath(wxChar *dest, const wxChar *path);
209WXDLLIMPEXP_BASE bool wxExpandPath(wxString& dest, const wxChar *path);
c801d85f
KB
210
211// Contract w.r.t environment (</usr/openwin/lib, OPENWHOME> -> ${OPENWINHOME}/lib)
212// and make (if under the home tree) relative to home
213// [caller must copy-- volatile]
bddd7a8d 214WXDLLIMPEXP_BASE wxChar* wxContractPath(const wxString& filename,
ade35f11
VZ
215 const wxString& envname = wxEmptyString,
216 const wxString& user = wxEmptyString);
c801d85f
KB
217
218// Destructive removal of /./ and /../ stuff
bddd7a8d 219WXDLLIMPEXP_BASE wxChar* wxRealPath(wxChar *path);
c801d85f
KB
220
221// Allocate a copy of the full absolute path
bddd7a8d 222WXDLLIMPEXP_BASE wxChar* wxCopyAbsolutePath(const wxString& path);
c801d85f
KB
223
224// Get first file name matching given wild card.
225// Flags are reserved for future use.
226#define wxFILE 1
227#define wxDIR 2
bddd7a8d
VZ
228WXDLLIMPEXP_BASE wxString wxFindFirstFile(const wxChar *spec, int flags = wxFILE);
229WXDLLIMPEXP_BASE wxString wxFindNextFile();
c801d85f
KB
230
231// Does the pattern contain wildcards?
bddd7a8d 232WXDLLIMPEXP_BASE bool wxIsWild(const wxString& pattern);
c801d85f
KB
233
234// Does the pattern match the text (usually a filename)?
235// If dot_special is TRUE, doesn't match * against . (eliminating
236// `hidden' dot files)
bddd7a8d 237WXDLLIMPEXP_BASE bool wxMatchWild(const wxString& pattern, const wxString& text, bool dot_special = TRUE);
c801d85f
KB
238
239// Concatenate two files to form third
bddd7a8d 240WXDLLIMPEXP_BASE bool wxConcatFiles(const wxString& file1, const wxString& file2, const wxString& file3);
c801d85f
KB
241
242// Copy file1 to file2
bddd7a8d 243WXDLLIMPEXP_BASE bool wxCopyFile(const wxString& file1, const wxString& file2,
4658c44e 244 bool overwrite = TRUE);
c801d85f
KB
245
246// Remove file
bddd7a8d 247WXDLLIMPEXP_BASE bool wxRemoveFile(const wxString& file);
c801d85f
KB
248
249// Rename file
bddd7a8d 250WXDLLIMPEXP_BASE bool wxRenameFile(const wxString& file1, const wxString& file2);
c801d85f
KB
251
252// Get current working directory.
253// If buf is NULL, allocates space using new, else
254// copies into buf.
255// IMPORTANT NOTE getcwd is know not to work under some releases
256// of Win32s 1.3, according to MS release notes!
bddd7a8d 257WXDLLIMPEXP_BASE wxChar* wxGetWorkingDirectory(wxChar *buf = (wxChar *) NULL, int sz = 1000);
7af89395
VZ
258// new and preferred version of wxGetWorkingDirectory
259// NB: can't have the same name because of overloading ambiguity
bddd7a8d 260WXDLLIMPEXP_BASE wxString wxGetCwd();
c801d85f
KB
261
262// Set working directory
bddd7a8d 263WXDLLIMPEXP_BASE bool wxSetWorkingDirectory(const wxString& d);
c801d85f
KB
264
265// Make directory
bddd7a8d 266WXDLLIMPEXP_BASE bool wxMkdir(const wxString& dir, int perm = 0777);
c801d85f
KB
267
268// Remove directory. Flags reserved for future use.
bddd7a8d 269WXDLLIMPEXP_BASE bool wxRmdir(const wxString& dir, int flags = 0);
c801d85f 270
2b5f62a0
VZ
271// compatibility defines, don't use in new code
272#define wxDirExists wxPathExists
273
ff69a290 274// ----------------------------------------------------------------------------
c801d85f 275// separators in file names
ff69a290
VZ
276// ----------------------------------------------------------------------------
277
278// between file name and extension
223d09f6 279#define wxFILE_SEP_EXT wxT('.')
ff69a290
VZ
280
281// between drive/volume name and the path
223d09f6 282#define wxFILE_SEP_DSK wxT(':')
ff69a290
VZ
283
284// between the path components
223d09f6
KB
285#define wxFILE_SEP_PATH_DOS wxT('\\')
286#define wxFILE_SEP_PATH_UNIX wxT('/')
844f90fb 287#define wxFILE_SEP_PATH_MAC wxT(':')
ff69a290 288#define wxFILE_SEP_PATH_VMS wxT('.') // VMS also uses '[' and ']'
c801d85f
KB
289
290// separator in the path list (as in PATH environment variable)
03e11df5
GD
291// there is no PATH variable in Classic Mac OS so just use the
292// semicolon (it must be different from the file name separator)
c801d85f 293// NB: these are strings and not characters on purpose!
223d09f6
KB
294#define wxPATH_SEP_DOS wxT(";")
295#define wxPATH_SEP_UNIX wxT(":")
03e11df5 296#define wxPATH_SEP_MAC wxT(";")
c801d85f
KB
297
298// platform independent versions
e02e8816 299#if defined(__UNIX__) && !defined(__CYGWIN__)
7af89395
VZ
300 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_UNIX
301 #define wxPATH_SEP wxPATH_SEP_UNIX
844f90fb 302#elif defined(__MAC__)
bedaf53e 303 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_MAC
3369df87 304 #define wxPATH_SEP wxPATH_SEP_MAC
e02e8816 305#elif defined(__CYGWIN__) // Cygwin
3ffbc733
VZ
306 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_DOS
307 #define wxPATH_SEP wxPATH_SEP_UNIX
1777b9bb 308#else // Windows and OS/2
7af89395
VZ
309 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_DOS
310 #define wxPATH_SEP wxPATH_SEP_DOS
c801d85f
KB
311#endif // Unix/Windows
312
92abb45d
VZ
313// this is useful for wxString::IsSameAs(): to compare two file names use
314// filename1.IsSameAs(filename2, wxARE_FILENAMES_CASE_SENSITIVE)
3369df87 315#if defined(__UNIX__) && !defined(__DARWIN__)
92abb45d 316 #define wxARE_FILENAMES_CASE_SENSITIVE TRUE
3369df87 317#else // Windows, Mac OS and OS/2
92abb45d
VZ
318 #define wxARE_FILENAMES_CASE_SENSITIVE FALSE
319#endif // Unix/Windows
320
c801d85f 321// is the char a path separator?
9d2f3c71 322inline bool wxIsPathSeparator(wxChar c)
903b61cc
VZ
323{
324 // under DOS/Windows we should understand both Unix and DOS file separators
325#if defined(__UNIX__) || defined(__MAC__)
326 return c == wxFILE_SEP_PATH;
327#else
328 return c == wxFILE_SEP_PATH_DOS || c == wxFILE_SEP_PATH_UNIX;
329#endif
330}
c801d85f
KB
331
332// does the string ends with path separator?
bddd7a8d 333WXDLLIMPEXP_BASE bool wxEndsWithPathSeparator(const wxChar *pszFileName);
c801d85f 334
92abb45d
VZ
335// split the full path into path (including drive for DOS), name and extension
336// (understands both '/' and '\\')
bddd7a8d 337WXDLLIMPEXP_BASE void wxSplitPath(const wxChar *pszFileName,
92abb45d
VZ
338 wxString *pstrPath,
339 wxString *pstrName,
340 wxString *pstrExt);
341
c801d85f 342// find a file in a list of directories, returns false if not found
bddd7a8d 343WXDLLIMPEXP_BASE bool wxFindFileInPath(wxString *pStr, const wxChar *pszPath, const wxChar *pszFile);
c801d85f 344
631f1bfe
JS
345// Get the OS directory if appropriate (such as the Windows directory).
346// On non-Windows platform, probably just return the empty string.
bddd7a8d 347WXDLLIMPEXP_BASE wxString wxGetOSDirectory();
631f1bfe 348
a47ce4a7 349// Get file modification time
bddd7a8d 350WXDLLIMPEXP_BASE time_t wxFileModificationTime(const wxString& filename);
a47ce4a7 351
45ea509a
VZ
352// ----------------------------------------------------------------------------
353// classes
354// ----------------------------------------------------------------------------
355
c801d85f 356// Path searching
bddd7a8d 357class WXDLLIMPEXP_BASE wxPathList : public wxStringList
c801d85f 358{
a6f6393c 359public:
df5168c4
MB
360 // avoid GCC warning about virtual functions w/o virtual dtor
361 virtual ~wxPathList() {}
362
7af89395
VZ
363 // Adds all paths in environment variable
364 void AddEnvList(const wxString& envVariable);
c330a2cf 365
a6f6393c 366 void Add(const wxString& path);
7af89395
VZ
367 // Find the first full path for which the file exists
368 wxString FindValidPath(const wxString& filename);
369 // Find the first full path for which the file exists; ensure it's an
370 // absolute path that gets returned.
371 wxString FindAbsoluteValidPath(const wxString& filename);
372 // Given full path and filename, add path to list
373 void EnsureFileAccessible(const wxString& path);
374 // Returns TRUE if the path is in the list
a6f6393c
VZ
375 bool Member(const wxString& path);
376
377private:
df5168c4 378 // DECLARE_DYNAMIC_CLASS(wxPathList)
c801d85f
KB
379};
380
381#endif
34138703 382 // _WX_FILEFN_H_