]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/filefn.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: File- and directory-related functions
4 // Author: Julian Smart
8 // Copyright: (c) 1998 Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "filefn.h"
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
26 #include <sys/types.h>
38 // ----------------------------------------------------------------------------
40 // ----------------------------------------------------------------------------
41 bool WXDLLEXPORT
wxFileExists(const wxString
& filename
);
42 #define FileExists wxFileExists
44 // does the path exist? (may have or not '/' or '\\' at the end)
45 bool WXDLLEXPORT
wxPathExists(const char *pszPathName
);
47 #define wxDirExists wxPathExists
48 #define DirExists wxDirExists
50 bool WXDLLEXPORT
wxIsAbsolutePath(const wxString
& filename
);
51 #define IsAbsolutePath wxIsAbsolutePath
54 char* WXDLLEXPORT
wxFileNameFromPath(char *path
);
55 wxString WXDLLEXPORT
wxFileNameFromPath(const wxString
& path
);
56 #define FileNameFromPath wxFileNameFromPath
59 char* WXDLLEXPORT
wxPathOnly(char *path
);
60 wxString WXDLLEXPORT
wxPathOnly(const wxString
& path
);
61 #define PathOnly wxPathOnly
64 wxString WXDLLEXPORT
wxRealPath(const wxString
& path
);
66 void WXDLLEXPORT
wxDos2UnixFilename(char *s
);
67 #define Dos2UnixFilename wxDos2UnixFilename
69 void WXDLLEXPORT
wxUnix2DosFilename(char *s
);
70 #define Unix2DosFilename wxUnix2DosFilename
72 // Strip the extension, in situ
73 void WXDLLEXPORT
wxStripExtension(char *buffer
);
74 void WXDLLEXPORT
wxStripExtension(wxString
& buffer
);
76 // Get a temporary filename, opening and closing the file.
77 char* WXDLLEXPORT
wxGetTempFileName(const wxString
& prefix
, char *buf
= NULL
);
79 // Expand file name (~/ and ${OPENWINHOME}/ stuff)
80 char* WXDLLEXPORT
wxExpandPath(char *dest
, const char *path
);
82 // Contract w.r.t environment (</usr/openwin/lib, OPENWHOME> -> ${OPENWINHOME}/lib)
83 // and make (if under the home tree) relative to home
84 // [caller must copy-- volatile]
85 char* WXDLLEXPORT
wxContractPath (const wxString
& filename
,
86 const wxString
& envname
= "", const wxString
& user
= "");
88 // Destructive removal of /./ and /../ stuff
89 char* WXDLLEXPORT
wxRealPath(char *path
);
91 // Allocate a copy of the full absolute path
92 char* WXDLLEXPORT
wxCopyAbsolutePath(const wxString
& path
);
94 // Get first file name matching given wild card.
95 // Flags are reserved for future use.
98 char* WXDLLEXPORT
wxFindFirstFile(const char *spec
, int flags
= wxFILE
);
99 char* WXDLLEXPORT
wxFindNextFile(void);
101 // Does the pattern contain wildcards?
102 bool WXDLLEXPORT
wxIsWild(const wxString
& pattern
);
104 // Does the pattern match the text (usually a filename)?
105 // If dot_special is TRUE, doesn't match * against . (eliminating
106 // `hidden' dot files)
107 bool WXDLLEXPORT
wxMatchWild(const wxString
& pattern
, const wxString
& text
, bool dot_special
= TRUE
);
109 // Concatenate two files to form third
110 bool WXDLLEXPORT
wxConcatFiles(const wxString
& file1
, const wxString
& file2
, const wxString
& file3
);
112 // Copy file1 to file2
113 bool WXDLLEXPORT
wxCopyFile(const wxString
& file1
, const wxString
& file2
);
116 bool WXDLLEXPORT
wxRemoveFile(const wxString
& file
);
119 bool WXDLLEXPORT
wxRenameFile(const wxString
& file1
, const wxString
& file2
);
121 // Get current working directory.
122 // If buf is NULL, allocates space using new, else
124 // IMPORTANT NOTE getcwd is know not to work under some releases
125 // of Win32s 1.3, according to MS release notes!
126 char* WXDLLEXPORT
wxGetWorkingDirectory(char *buf
= NULL
, int sz
= 1000);
128 // Set working directory
129 bool WXDLLEXPORT
wxSetWorkingDirectory(const wxString
& d
);
132 bool WXDLLEXPORT
wxMkdir(const wxString
& dir
);
134 // Remove directory. Flags reserved for future use.
135 bool WXDLLEXPORT
wxRmdir(const wxString
& dir
, int flags
= 0);
137 // separators in file names
138 #define FILE_SEP_EXT '.'
139 #define FILE_SEP_DSK ':'
140 #define FILE_SEP_PATH_DOS '\\'
141 #define FILE_SEP_PATH_UNIX '/'
143 // separator in the path list (as in PATH environment variable)
144 // NB: these are strings and not characters on purpose!
145 #define PATH_SEP_DOS ";"
146 #define PATH_SEP_UNIX ":"
148 // platform independent versions
150 #define FILE_SEP_PATH FILE_SEP_PATH_UNIX
151 #define PATH_SEP PATH_SEP_UNIX
153 #define FILE_SEP_PATH FILE_SEP_PATH_DOS
154 #define PATH_SEP PATH_SEP_DOS
155 #endif // Unix/Windows
157 // this is useful for wxString::IsSameAs(): to compare two file names use
158 // filename1.IsSameAs(filename2, wxARE_FILENAMES_CASE_SENSITIVE)
160 #define wxARE_FILENAMES_CASE_SENSITIVE TRUE
162 #define wxARE_FILENAMES_CASE_SENSITIVE FALSE
163 #endif // Unix/Windows
165 // is the char a path separator?
166 inline bool wxIsPathSeparator(char c
)
167 { return c
== FILE_SEP_PATH_DOS
|| c
== FILE_SEP_PATH_UNIX
; }
169 // does the string ends with path separator?
170 bool WXDLLEXPORT
wxEndsWithPathSeparator(const char *pszFileName
);
172 // split the full path into path (including drive for DOS), name and extension
173 // (understands both '/' and '\\')
174 void WXDLLEXPORT
wxSplitPath(const char *pszFileName
,
179 // find a file in a list of directories, returns false if not found
180 bool WXDLLEXPORT
wxFindFileInPath(wxString
*pStr
, const char *pszPath
, const char *pszFile
);
182 // ----------------------------------------------------------------------------
184 // ----------------------------------------------------------------------------
187 class WXDLLEXPORT wxPathList
: public wxStringList
189 DECLARE_DYNAMIC_CLASS(wxPathList
)
192 void AddEnvList(const wxString
& envVariable
); // Adds all paths in environment variable
193 void Add(const wxString
& path
);
194 wxString
FindValidPath(const wxString
& filename
); // Find the first full path
195 // for which the file exists
196 wxString
FindAbsoluteValidPath(const wxString
& filename
); // Find the first full path
197 // for which the file exists; ensure it's an absolute
198 // path that gets returned.
199 void EnsureFileAccessible(const wxString
& path
); // Given full path and filename,
201 bool Member(const wxString
& path
);