]> git.saurik.com Git - wxWidgets.git/blame - include/wx/filefn.h
Added dependency checking and all that.
[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
45ea509a 9// Licence: wxWindows license
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _FILEFN_H_
13#define _FILEFN_H_
c801d85f
KB
14
15#ifdef __GNUG__
7af89395 16 #pragma interface "filefn.h"
c801d85f
KB
17#endif
18
e49f47aa
GL
19#include <wx/list.h>
20
45ea509a
VZ
21// ----------------------------------------------------------------------------
22// constants
23// ----------------------------------------------------------------------------
c801d85f 24
45ea509a 25// define off_t
17dff81c 26#ifndef __WXMAC__
7af89395 27 #include <sys/types.h>
17dff81c 28#else
7af89395 29 typedef long off_t;
17dff81c 30#endif
45ea509a 31
8be97d65 32#if defined(__VISUALC__) || ( defined(__MWERKS__) && defined( __INTEL__) )
3f4a0c5b
VZ
33 typedef _off_t off_t;
34#elif defined(__BORLANDC__) && defined(__WIN16__)
35 typedef long off_t;
36#elif defined(__SC__)
37 typedef long off_t;
8be97d65
SC
38#elif defined(__MWERKS__) && !defined(__INTEL__)
39 typedef long off_t;
2432b92d
JS
40#endif
41
1678ad78
GL
42const off_t wxInvalidOffset = (off_t)-1;
43
7af89395
VZ
44enum wxSeekMode
45{
45ea509a
VZ
46 wxFromStart,
47 wxFromCurrent,
48 wxFromEnd
7af89395 49};
45ea509a 50
9d2f3c71 51WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
cffee23b 52
45ea509a
VZ
53// ----------------------------------------------------------------------------
54// functions
55// ----------------------------------------------------------------------------
184b5d99 56WXDLLEXPORT bool wxFileExists(const wxString& filename);
c801d85f
KB
57#define FileExists wxFileExists
58
59// does the path exist? (may have or not '/' or '\\' at the end)
9d2f3c71 60WXDLLEXPORT bool wxPathExists(const wxChar *pszPathName);
c801d85f
KB
61
62#define wxDirExists wxPathExists
63#define DirExists wxDirExists
64
184b5d99 65WXDLLEXPORT bool wxIsAbsolutePath(const wxString& filename);
c801d85f
KB
66#define IsAbsolutePath wxIsAbsolutePath
67
68// Get filename
9d2f3c71 69WXDLLEXPORT wxChar* wxFileNameFromPath(wxChar *path);
184b5d99 70WXDLLEXPORT wxString wxFileNameFromPath(const wxString& path);
c801d85f
KB
71#define FileNameFromPath wxFileNameFromPath
72
73// Get directory
184b5d99 74WXDLLEXPORT wxString wxPathOnly(const wxString& path);
c801d85f
KB
75#define PathOnly wxPathOnly
76
77// wxString version
184b5d99 78WXDLLEXPORT wxString wxRealPath(const wxString& path);
c801d85f 79
9d2f3c71 80WXDLLEXPORT void wxDos2UnixFilename(wxChar *s);
c801d85f
KB
81#define Dos2UnixFilename wxDos2UnixFilename
82
9d2f3c71 83WXDLLEXPORT void wxUnix2DosFilename(wxChar *s);
c801d85f
KB
84#define Unix2DosFilename wxUnix2DosFilename
85
17dff81c 86#ifdef __WXMAC__
9d2f3c71
OK
87 WXDLLEXPORT void wxMacPathToFSSpec( const wxChar *path , FSSpec *spec ) ;
88 WXDLLEXPORT void wxMac2UnixFilename(wxChar *s);
89 WXDLLEXPORT void wxUnix2MacFilename(wxChar *s);
17dff81c 90#endif
7af89395 91
c801d85f 92// Strip the extension, in situ
9d2f3c71 93WXDLLEXPORT void wxStripExtension(wxChar *buffer);
184b5d99 94WXDLLEXPORT void wxStripExtension(wxString& buffer);
c801d85f
KB
95
96// Get a temporary filename, opening and closing the file.
9d2f3c71 97WXDLLEXPORT wxChar* wxGetTempFileName(const wxString& prefix, wxChar *buf = (wxChar *) NULL);
c801d85f
KB
98
99// Expand file name (~/ and ${OPENWINHOME}/ stuff)
9d2f3c71 100WXDLLEXPORT wxChar* wxExpandPath(wxChar *dest, const wxChar *path);
c801d85f
KB
101
102// Contract w.r.t environment (</usr/openwin/lib, OPENWHOME> -> ${OPENWINHOME}/lib)
103// and make (if under the home tree) relative to home
104// [caller must copy-- volatile]
9d2f3c71
OK
105WXDLLEXPORT wxChar* wxContractPath(const wxString& filename,
106 const wxString& envname = wxEmptyString,
107 const wxString& user = wxEmptyString);
c801d85f
KB
108
109// Destructive removal of /./ and /../ stuff
9d2f3c71 110WXDLLEXPORT wxChar* wxRealPath(wxChar *path);
c801d85f
KB
111
112// Allocate a copy of the full absolute path
9d2f3c71 113WXDLLEXPORT wxChar* wxCopyAbsolutePath(const wxString& path);
c801d85f
KB
114
115// Get first file name matching given wild card.
116// Flags are reserved for future use.
117#define wxFILE 1
118#define wxDIR 2
9d2f3c71 119WXDLLEXPORT wxString wxFindFirstFile(const wxChar *spec, int flags = wxFILE);
7af89395 120WXDLLEXPORT wxString wxFindNextFile();
c801d85f
KB
121
122// Does the pattern contain wildcards?
184b5d99 123WXDLLEXPORT bool wxIsWild(const wxString& pattern);
c801d85f
KB
124
125// Does the pattern match the text (usually a filename)?
126// If dot_special is TRUE, doesn't match * against . (eliminating
127// `hidden' dot files)
184b5d99 128WXDLLEXPORT bool wxMatchWild(const wxString& pattern, const wxString& text, bool dot_special = TRUE);
c801d85f
KB
129
130// Concatenate two files to form third
184b5d99 131WXDLLEXPORT bool wxConcatFiles(const wxString& file1, const wxString& file2, const wxString& file3);
c801d85f
KB
132
133// Copy file1 to file2
184b5d99 134WXDLLEXPORT bool wxCopyFile(const wxString& file1, const wxString& file2);
c801d85f
KB
135
136// Remove file
184b5d99 137WXDLLEXPORT bool wxRemoveFile(const wxString& file);
c801d85f
KB
138
139// Rename file
184b5d99 140WXDLLEXPORT bool wxRenameFile(const wxString& file1, const wxString& file2);
c801d85f
KB
141
142// Get current working directory.
143// If buf is NULL, allocates space using new, else
144// copies into buf.
145// IMPORTANT NOTE getcwd is know not to work under some releases
146// of Win32s 1.3, according to MS release notes!
9d2f3c71 147WXDLLEXPORT wxChar* wxGetWorkingDirectory(wxChar *buf = (wxChar *) NULL, int sz = 1000);
7af89395
VZ
148// new and preferred version of wxGetWorkingDirectory
149// NB: can't have the same name because of overloading ambiguity
150WXDLLEXPORT wxString wxGetCwd();
c801d85f
KB
151
152// Set working directory
184b5d99 153WXDLLEXPORT bool wxSetWorkingDirectory(const wxString& d);
c801d85f
KB
154
155// Make directory
1a33c3ba 156WXDLLEXPORT bool wxMkdir(const wxString& dir, int perm = 0777);
c801d85f
KB
157
158// Remove directory. Flags reserved for future use.
184b5d99 159WXDLLEXPORT bool wxRmdir(const wxString& dir, int flags = 0);
c801d85f
KB
160
161// separators in file names
9d2f3c71
OK
162#define wxFILE_SEP_EXT _T('.')
163#define wxFILE_SEP_DSK _T(':')
164#define wxFILE_SEP_PATH_DOS _T('\\')
165#define wxFILE_SEP_PATH_UNIX _T('/')
c801d85f
KB
166
167// separator in the path list (as in PATH environment variable)
168// NB: these are strings and not characters on purpose!
9d2f3c71
OK
169#define wxPATH_SEP_DOS _T(";")
170#define wxPATH_SEP_UNIX _T(":")
c801d85f
KB
171
172// platform independent versions
173#ifdef __UNIX__
7af89395
VZ
174 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_UNIX
175 #define wxPATH_SEP wxPATH_SEP_UNIX
1777b9bb 176#else // Windows and OS/2
7af89395
VZ
177 #define wxFILE_SEP_PATH wxFILE_SEP_PATH_DOS
178 #define wxPATH_SEP wxPATH_SEP_DOS
c801d85f
KB
179#endif // Unix/Windows
180
92abb45d
VZ
181// this is useful for wxString::IsSameAs(): to compare two file names use
182// filename1.IsSameAs(filename2, wxARE_FILENAMES_CASE_SENSITIVE)
183#ifdef __UNIX__
184 #define wxARE_FILENAMES_CASE_SENSITIVE TRUE
1777b9bb 185#else // Windows and OS/2
92abb45d
VZ
186 #define wxARE_FILENAMES_CASE_SENSITIVE FALSE
187#endif // Unix/Windows
188
c801d85f 189// is the char a path separator?
9d2f3c71 190inline bool wxIsPathSeparator(wxChar c)
7af89395 191 { return c == wxFILE_SEP_PATH_DOS || c == wxFILE_SEP_PATH_UNIX; }
c801d85f
KB
192
193// does the string ends with path separator?
9d2f3c71 194WXDLLEXPORT bool wxEndsWithPathSeparator(const wxChar *pszFileName);
c801d85f 195
92abb45d
VZ
196// split the full path into path (including drive for DOS), name and extension
197// (understands both '/' and '\\')
9d2f3c71 198WXDLLEXPORT void wxSplitPath(const wxChar *pszFileName,
92abb45d
VZ
199 wxString *pstrPath,
200 wxString *pstrName,
201 wxString *pstrExt);
202
c801d85f 203// find a file in a list of directories, returns false if not found
9d2f3c71 204WXDLLEXPORT bool wxFindFileInPath(wxString *pStr, const wxChar *pszPath, const wxChar *pszFile);
c801d85f 205
631f1bfe
JS
206// Get the OS directory if appropriate (such as the Windows directory).
207// On non-Windows platform, probably just return the empty string.
208WXDLLEXPORT wxString wxGetOSDirectory();
209
45ea509a
VZ
210// ----------------------------------------------------------------------------
211// classes
212// ----------------------------------------------------------------------------
213
c801d85f 214// Path searching
a6f6393c 215class WXDLLEXPORT wxPathList : public wxStringList
c801d85f 216{
a6f6393c 217public:
7af89395
VZ
218 // Adds all paths in environment variable
219 void AddEnvList(const wxString& envVariable);
c330a2cf 220
a6f6393c 221 void Add(const wxString& path);
c330a2cf 222 // Avoid compiler warning
9d2f3c71 223 wxNode *Add(const wxChar *s) { return wxStringList::Add(s); }
7af89395
VZ
224 // Find the first full path for which the file exists
225 wxString FindValidPath(const wxString& filename);
226 // Find the first full path for which the file exists; ensure it's an
227 // absolute path that gets returned.
228 wxString FindAbsoluteValidPath(const wxString& filename);
229 // Given full path and filename, add path to list
230 void EnsureFileAccessible(const wxString& path);
231 // Returns TRUE if the path is in the list
a6f6393c
VZ
232 bool Member(const wxString& path);
233
234private:
235 DECLARE_DYNAMIC_CLASS(wxPathList)
c801d85f
KB
236};
237
238#endif
34138703 239 // _WX_FILEFN_H_