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