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