]> git.saurik.com Git - wxWidgets.git/blame - include/wx/filefn.h
Added wxPrivateDropTarget
[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__
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
29typedef long off_t;
30#endif
45ea509a
VZ
31
32#ifdef _MSC_VER
33 #define off_t _off_t
34#endif
35
62448488
JS
36#if defined(__BORLANDC__) && defined(__WIN16__)
37typedef long off_t;
38#endif
39
2432b92d
JS
40#if defined(__SC__)
41typedef long off_t;
42#endif
43
1678ad78
GL
44const off_t wxInvalidOffset = (off_t)-1;
45
45ea509a
VZ
46typedef enum {
47 wxFromStart,
48 wxFromCurrent,
49 wxFromEnd
50} wxSeekMode;
51
cffee23b
RR
52WXDLLEXPORT_DATA(extern const char*) wxEmptyString;
53
45ea509a
VZ
54// ----------------------------------------------------------------------------
55// functions
56// ----------------------------------------------------------------------------
184b5d99 57WXDLLEXPORT bool wxFileExists(const wxString& filename);
c801d85f
KB
58#define FileExists wxFileExists
59
60// does the path exist? (may have or not '/' or '\\' at the end)
184b5d99 61WXDLLEXPORT bool wxPathExists(const char *pszPathName);
c801d85f
KB
62
63#define wxDirExists wxPathExists
64#define DirExists wxDirExists
65
184b5d99 66WXDLLEXPORT bool wxIsAbsolutePath(const wxString& filename);
c801d85f
KB
67#define IsAbsolutePath wxIsAbsolutePath
68
69// Get filename
184b5d99
JS
70WXDLLEXPORT char* wxFileNameFromPath(char *path);
71WXDLLEXPORT wxString wxFileNameFromPath(const wxString& path);
c801d85f
KB
72#define FileNameFromPath wxFileNameFromPath
73
74// Get directory
184b5d99
JS
75WXDLLEXPORT char* wxPathOnly(char *path);
76WXDLLEXPORT wxString wxPathOnly(const wxString& path);
c801d85f
KB
77#define PathOnly wxPathOnly
78
79// wxString version
184b5d99 80WXDLLEXPORT wxString wxRealPath(const wxString& path);
c801d85f 81
184b5d99 82WXDLLEXPORT void wxDos2UnixFilename(char *s);
c801d85f
KB
83#define Dos2UnixFilename wxDos2UnixFilename
84
184b5d99 85WXDLLEXPORT void wxUnix2DosFilename(char *s);
c801d85f
KB
86#define Unix2DosFilename wxUnix2DosFilename
87
17dff81c
SC
88#ifdef __WXMAC__
89 WXDLLEXPORT void wxMacPathToFSSpec( const char *path , FSSpec *spec ) ;
90 WXDLLEXPORT void wxMac2UnixFilename(char *s);
91 WXDLLEXPORT void wxUnix2MacFilename(char *s);
92#endif
c801d85f 93// Strip the extension, in situ
184b5d99
JS
94WXDLLEXPORT void wxStripExtension(char *buffer);
95WXDLLEXPORT void wxStripExtension(wxString& buffer);
c801d85f
KB
96
97// Get a temporary filename, opening and closing the file.
184b5d99 98WXDLLEXPORT char* wxGetTempFileName(const wxString& prefix, char *buf = (char *) NULL);
c801d85f
KB
99
100// Expand file name (~/ and ${OPENWINHOME}/ stuff)
184b5d99 101WXDLLEXPORT char* wxExpandPath(char *dest, const char *path);
c801d85f
KB
102
103// Contract w.r.t environment (</usr/openwin/lib, OPENWHOME> -> ${OPENWINHOME}/lib)
104// and make (if under the home tree) relative to home
105// [caller must copy-- volatile]
184b5d99 106WXDLLEXPORT char* wxContractPath (const wxString& filename,
62448488 107 const wxString& envname = wxEmptyString, const wxString& user = wxEmptyString);
c801d85f
KB
108
109// Destructive removal of /./ and /../ stuff
184b5d99 110WXDLLEXPORT char* wxRealPath(char *path);
c801d85f
KB
111
112// Allocate a copy of the full absolute path
184b5d99 113WXDLLEXPORT char* 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
184b5d99
JS
119WXDLLEXPORT char* wxFindFirstFile(const char *spec, int flags = wxFILE);
120WXDLLEXPORT char* wxFindNextFile(void);
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!
184b5d99 147WXDLLEXPORT char* wxGetWorkingDirectory(char *buf = (char *) NULL, int sz = 1000);
c801d85f
KB
148
149// Set working directory
184b5d99 150WXDLLEXPORT bool wxSetWorkingDirectory(const wxString& d);
c801d85f
KB
151
152// Make directory
184b5d99 153WXDLLEXPORT bool wxMkdir(const wxString& dir);
c801d85f
KB
154
155// Remove directory. Flags reserved for future use.
184b5d99 156WXDLLEXPORT bool wxRmdir(const wxString& dir, int flags = 0);
c801d85f
KB
157
158// separators in file names
159#define FILE_SEP_EXT '.'
160#define FILE_SEP_DSK ':'
161#define FILE_SEP_PATH_DOS '\\'
162#define FILE_SEP_PATH_UNIX '/'
163
164// separator in the path list (as in PATH environment variable)
165// NB: these are strings and not characters on purpose!
166#define PATH_SEP_DOS ";"
167#define PATH_SEP_UNIX ":"
168
169// platform independent versions
170#ifdef __UNIX__
171 #define FILE_SEP_PATH FILE_SEP_PATH_UNIX
172 #define PATH_SEP PATH_SEP_UNIX
173#else // Windows
174 #define FILE_SEP_PATH FILE_SEP_PATH_DOS
175 #define PATH_SEP PATH_SEP_DOS
176#endif // Unix/Windows
177
92abb45d
VZ
178// this is useful for wxString::IsSameAs(): to compare two file names use
179// filename1.IsSameAs(filename2, wxARE_FILENAMES_CASE_SENSITIVE)
180#ifdef __UNIX__
181 #define wxARE_FILENAMES_CASE_SENSITIVE TRUE
182#else // Windows
183 #define wxARE_FILENAMES_CASE_SENSITIVE FALSE
184#endif // Unix/Windows
185
c801d85f
KB
186// is the char a path separator?
187inline bool wxIsPathSeparator(char c)
188 { return c == FILE_SEP_PATH_DOS || c == FILE_SEP_PATH_UNIX; }
189
190// does the string ends with path separator?
184b5d99 191WXDLLEXPORT bool wxEndsWithPathSeparator(const char *pszFileName);
c801d85f 192
92abb45d
VZ
193// split the full path into path (including drive for DOS), name and extension
194// (understands both '/' and '\\')
184b5d99 195WXDLLEXPORT void wxSplitPath(const char *pszFileName,
92abb45d
VZ
196 wxString *pstrPath,
197 wxString *pstrName,
198 wxString *pstrExt);
199
c801d85f 200// find a file in a list of directories, returns false if not found
184b5d99 201WXDLLEXPORT bool wxFindFileInPath(wxString *pStr, const char *pszPath, const char *pszFile);
c801d85f 202
45ea509a
VZ
203// ----------------------------------------------------------------------------
204// classes
205// ----------------------------------------------------------------------------
206
c801d85f 207// Path searching
a6f6393c 208class WXDLLEXPORT wxPathList : public wxStringList
c801d85f 209{
a6f6393c
VZ
210public:
211 void AddEnvList(const wxString& envVariable); // Adds all paths in environment variable
212 void Add(const wxString& path);
213 wxString FindValidPath(const wxString& filename); // Find the first full path
214 // for which the file exists
215 wxString FindAbsoluteValidPath(const wxString& filename); // Find the first full path
216 // for which the file exists; ensure it's an absolute
217 // path that gets returned.
218 void EnsureFileAccessible(const wxString& path); // Given full path and filename,
219 // add path to list
220 bool Member(const wxString& path);
221
222private:
223 DECLARE_DYNAMIC_CLASS(wxPathList)
c801d85f
KB
224};
225
226#endif
34138703 227 // _WX_FILEFN_H_
c801d85f 228