]> git.saurik.com Git - wxWidgets.git/blame - src/common/filefn.cpp
More tests in erase sample.
[wxWidgets.git] / src / common / filefn.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: filefn.cpp
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
3f4a0c5b 9// Licence: wxWindows license
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
e90c1d2a
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
c801d85f 20#ifdef __GNUG__
7af89395 21 #pragma implementation "filefn.h"
c801d85f
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26#include "wx/defs.h"
27
28#ifdef __BORLANDC__
7af89395 29 #pragma hdrstop
c801d85f
KB
30#endif
31
c801d85f 32#include "wx/utils.h"
3096bd2f 33#include "wx/intl.h"
32f31043 34#include "wx/file.h"
9e8d8607 35#include "wx/filename.h"
8ff12342 36#include "wx/dir.h"
c801d85f 37
fd3f686c 38// there are just too many of those...
3f4a0c5b 39#ifdef __VISUALC__
fd3f686c
VZ
40 #pragma warning(disable:4706) // assignment within conditional expression
41#endif // VC++
42
c801d85f
KB
43#include <ctype.h>
44#include <stdio.h>
45#include <stdlib.h>
46#include <string.h>
47#if !defined(__WATCOMC__)
3f4a0c5b
VZ
48 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
49 #include <errno.h>
50 #endif
c801d85f 51#endif
3f4a0c5b 52
76a5e5d2
SC
53#if defined(__WXMAC__)
54 #include "wx/mac/private.h" // includes mac headers
55#endif
56
c801d85f 57#include <time.h>
3f4a0c5b 58
469e1e5c 59#ifndef __MWERKS__
7af89395
VZ
60 #include <sys/types.h>
61 #include <sys/stat.h>
469e1e5c 62#else
7af89395
VZ
63 #include <stat.h>
64 #include <unistd.h>
5b781a67 65 #include <unix.h>
469e1e5c 66#endif
c801d85f 67
aad5220b 68#ifdef __UNIX__
7af89395
VZ
69 #include <unistd.h>
70 #include <dirent.h>
aad5220b 71#endif
c801d85f 72
f6bcfd97 73#ifdef __WXPM__
c2ff79b1 74 #include <process.h>
f6bcfd97 75 #include "wx/os2/private.h"
c2ff79b1 76#endif
c67d6888 77#if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
a3ef5bf5 78#if !defined( __GNUWIN32__ ) && !defined( __MWERKS__ ) && !defined(__SALFORDC__)
7af89395
VZ
79 #include <direct.h>
80 #include <dos.h>
32f31043 81 #include <io.h>
7af89395
VZ
82#endif // __WINDOWS__
83#endif // native Win compiler
c801d85f 84
b916f809
VS
85#if defined(__DOS__)
86 #ifdef __WATCOMC__
87 #include <direct.h>
88 #include <dos.h>
89 #include <io.h>
90 #endif
91 #ifdef __DJGPP__
92 #include <unistd.h>
93 #endif
f48fa475
VS
94#endif
95
c801d85f
KB
96#ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
97 // this (3.1 I believe) and how to test for it.
98 // If this works for Borland 4.0 as well, then no worries.
7af89395 99 #include <dir.h>
c801d85f
KB
100#endif
101
a3ef5bf5 102#ifdef __SALFORDC__
7af89395
VZ
103 #include <dir.h>
104 #include <unix.h>
a3ef5bf5
JS
105#endif
106
dfcb1ae0 107#include "wx/setup.h"
f5abe911 108#include "wx/log.h"
99cc00ed 109
7be1f0d9
JS
110// No, Cygwin doesn't appear to have fnmatch.h after all.
111#if defined(HAVE_FNMATCH_H)
7af89395 112 #include "fnmatch.h"
dfcb1ae0
KB
113#endif
114
34138703 115#ifdef __WINDOWS__
659d096c 116 #include <windows.h>
3d5231db
VS
117 #include "wx/msw/mslu.h"
118
3ffbc733
VZ
119 // sys/cygwin.h is needed for cygwin_conv_to_full_win32_path()
120 //
121 // note that it must be included after <windows.h>
122 #ifdef __GNUWIN32__
e02e8816
MB
123 #ifdef __CYGWIN__
124 #include <sys/cygwin.h>
125 #endif
3ffbc733
VZ
126 #include <wchar.h>
127 #ifndef __TWIN32__
128 #include <sys/unistd.h>
129 #endif
130 #endif // __GNUWIN32__
131#endif // __WINDOWS__
c801d85f 132
13b1f8a7
VZ
133// TODO: Borland probably has _wgetcwd as well?
134#ifdef _MSC_VER
135 #define HAVE_WGETCWD
136#endif
137
e90c1d2a
VZ
138// ----------------------------------------------------------------------------
139// constants
140// ----------------------------------------------------------------------------
141
13b1f8a7
VZ
142#ifndef _MAXPATHLEN
143 #define _MAXPATHLEN 1024
144#endif
c801d85f 145
da2b4b7a
GD
146#ifdef __WXMAC__
147# include "MoreFiles.h"
148# include "MoreFilesExtras.h"
149# include "FullPath.h"
150# include "FSpCompat.h"
17dff81c 151#endif
c801d85f 152
a339970a 153IMPLEMENT_DYNAMIC_CLASS(wxPathList, wxStringList)
8a0a092b 154
e90c1d2a
VZ
155// ----------------------------------------------------------------------------
156// private globals
157// ----------------------------------------------------------------------------
158
159static wxChar wxFileFunctionsBuffer[4*_MAXPATHLEN];
160
5d33ed2c
DW
161#if defined(__VISAGECPP__) && __IBMCPP__ >= 400
162//
32e768ae 163// VisualAge C++ V4.0 cannot have any external linkage const decs
5d33ed2c
DW
164// in headers included by more than one primary source
165//
166const off_t wxInvalidOffset = (off_t)-1;
167#endif
168
a339970a
VZ
169// ----------------------------------------------------------------------------
170// macros
171// ----------------------------------------------------------------------------
172
173// we need to translate Mac filenames before passing them to OS functions
334d2448 174#define OS_FILENAME(s) (s.fn_str())
a339970a 175
e90c1d2a
VZ
176// ============================================================================
177// implementation
178// ============================================================================
179
c801d85f
KB
180void wxPathList::Add (const wxString& path)
181{
50920146 182 wxStringList::Add (WXSTRINGCAST path);
c801d85f
KB
183}
184
185// Add paths e.g. from the PATH environment variable
186void wxPathList::AddEnvList (const wxString& envVariable)
187{
50920146 188 static const wxChar PATH_TOKS[] =
34138703 189#ifdef __WINDOWS__
223d09f6 190 wxT(" ;"); // Don't seperate with colon in DOS (used for drive)
c801d85f 191#else
223d09f6 192 wxT(" :;");
c801d85f
KB
193#endif
194
50920146 195 wxChar *val = wxGetenv (WXSTRINGCAST envVariable);
c801d85f
KB
196 if (val && *val)
197 {
50920146
OK
198 wxChar *s = copystring (val);
199 wxChar *save_ptr, *token = wxStrtok (s, PATH_TOKS, &save_ptr);
c801d85f
KB
200
201 if (token)
a17e237f 202 {
3f4a0c5b
VZ
203 Add (copystring (token));
204 while (token)
a17e237f 205 {
50920146 206 if ((token = wxStrtok ((wxChar *) NULL, PATH_TOKS, &save_ptr)) != NULL)
a17e237f
VZ
207 Add (wxString(token));
208 }
209 }
210
211 // suppress warning about unused variable save_ptr when wxStrtok() is a
212 // macro which throws away its third argument
213 save_ptr = token;
214
215 delete [] s;
c801d85f
KB
216 }
217}
218
219// Given a full filename (with path), ensure that that file can
220// be accessed again USING FILENAME ONLY by adding the path
221// to the list if not already there.
222void wxPathList::EnsureFileAccessible (const wxString& path)
223{
7af89395
VZ
224 wxString path_only(wxPathOnly(path));
225 if ( !path_only.IsEmpty() )
226 {
227 if ( !Member(path_only) )
228 Add(path_only);
229 }
c801d85f
KB
230}
231
232bool wxPathList::Member (const wxString& path)
233{
234 for (wxNode * node = First (); node != NULL; node = node->Next ())
235 {
50920146 236 wxString path2((wxChar *) node->Data ());
c801d85f 237 if (
17dff81c 238#if defined(__WINDOWS__) || defined(__VMS__) || defined (__WXMAC__)
c801d85f 239 // Case INDEPENDENT
3f4a0c5b 240 path.CompareTo (path2, wxString::ignoreCase) == 0
c801d85f 241#else
3f4a0c5b
VZ
242 // Case sensitive File System
243 path.CompareTo (path2) == 0
c801d85f 244#endif
3f4a0c5b
VZ
245 )
246 return TRUE;
c801d85f
KB
247 }
248 return FALSE;
249}
250
251wxString wxPathList::FindValidPath (const wxString& file)
252{
e90c1d2a
VZ
253 if (wxFileExists (wxExpandPath(wxFileFunctionsBuffer, file)))
254 return wxString(wxFileFunctionsBuffer);
c801d85f 255
50920146 256 wxChar buf[_MAXPATHLEN];
e90c1d2a 257 wxStrcpy(buf, wxFileFunctionsBuffer);
c801d85f 258
50920146
OK
259 wxChar *filename = (wxChar*) NULL; /* shut up buggy egcs warning */
260 filename = IsAbsolutePath (buf) ? wxFileNameFromPath (buf) : (wxChar *)buf;
c801d85f
KB
261
262 for (wxNode * node = First (); node; node = node->Next ())
263 {
50920146 264 wxChar *path = (wxChar *) node->Data ();
e90c1d2a
VZ
265 wxStrcpy (wxFileFunctionsBuffer, path);
266 wxChar ch = wxFileFunctionsBuffer[wxStrlen(wxFileFunctionsBuffer)-1];
223d09f6
KB
267 if (ch != wxT('\\') && ch != wxT('/'))
268 wxStrcat (wxFileFunctionsBuffer, wxT("/"));
e90c1d2a 269 wxStrcat (wxFileFunctionsBuffer, filename);
34138703 270#ifdef __WINDOWS__
e90c1d2a 271 Unix2DosFilename (wxFileFunctionsBuffer);
c801d85f 272#endif
e90c1d2a 273 if (wxFileExists (wxFileFunctionsBuffer))
c801d85f 274 {
e90c1d2a 275 return wxString(wxFileFunctionsBuffer); // Found!
c801d85f 276 }
3f4a0c5b 277 } // for()
c801d85f 278
223d09f6 279 return wxString(wxT("")); // Not found
c801d85f
KB
280}
281
282wxString wxPathList::FindAbsoluteValidPath (const wxString& file)
283{
e90c1d2a
VZ
284 wxString f = FindValidPath(file);
285 if ( wxIsAbsolutePath(f) )
286 return f;
287
288 wxString buf;
13b1f8a7
VZ
289 wxGetWorkingDirectory(wxStringBuffer(buf, _MAXPATHLEN), _MAXPATHLEN);
290
e90c1d2a 291 if ( !wxEndsWithPathSeparator(buf) )
c801d85f 292 {
e90c1d2a 293 buf += wxFILE_SEP_PATH;
c801d85f 294 }
e90c1d2a
VZ
295 buf += f;
296
297 return buf;
c801d85f
KB
298}
299
3f4a0c5b 300bool
c801d85f
KB
301wxFileExists (const wxString& filename)
302{
2db300c6 303#if defined(__WIN32__) && !defined(__WXMICROWIN__)
e32d659d 304 // GetFileAttributes can copy with network paths unlike stat()
2db300c6 305 DWORD ret = ::GetFileAttributes(filename);
2db300c6 306
a28ae409 307 return (ret != (DWORD)-1) && !(ret & FILE_ATTRIBUTE_DIRECTORY);
6b037754 308#else
a339970a
VZ
309 wxStructStat stbuf;
310 if ( !filename.empty() && wxStat (OS_FILENAME(filename), &stbuf) == 0 )
311 return TRUE;
a3ef5bf5 312
a339970a 313 return FALSE;
6b037754 314#endif
c801d85f
KB
315}
316
3f4a0c5b 317bool
c801d85f
KB
318wxIsAbsolutePath (const wxString& filename)
319{
2985ad5d
RR
320 if (filename != wxT(""))
321 {
e8e1d09e
GD
322#if defined(__WXMAC__) && !defined(__DARWIN__)
323 // Classic or Carbon CodeWarrior like
324 // Carbon with Apple DevTools is Unix like
2db300c6 325
2985ad5d
RR
326 // This seems wrong to me, but there is no fix. since
327 // "MacOS:MyText.txt" is absolute whereas "MyDir:MyText.txt"
328 // is not. Or maybe ":MyDir:MyText.txt" has to be used? RR.
2985ad5d
RR
329 if (filename.Find(':') != wxNOT_FOUND && filename[0] != ':')
330 return TRUE ;
cd378f94 331#else
e8e1d09e
GD
332 // Unix like or Windows
333 if (filename[0] == wxT('/'))
334 return TRUE;
335#endif
c801d85f 336#ifdef __VMS__
e8e1d09e
GD
337 if ((filename[0] == wxT('[') && filename[1] != wxT('.')))
338 return TRUE;
c801d85f 339#endif
34138703 340#ifdef __WINDOWS__
e8e1d09e
GD
341 // MSDOS like
342 if (filename[0] == wxT('\\') || (wxIsalpha (filename[0]) && filename[1] == wxT(':')))
343 return TRUE;
c801d85f 344#endif
c801d85f 345 }
e8e1d09e 346 return FALSE ;
c801d85f
KB
347}
348
349/*
350 * Strip off any extension (dot something) from end of file,
351 * IF one exists. Inserts zero into buffer.
352 *
353 */
3f4a0c5b 354
50920146 355void wxStripExtension(wxChar *buffer)
c801d85f 356{
50920146 357 int len = wxStrlen(buffer);
c801d85f
KB
358 int i = len-1;
359 while (i > 0)
360 {
223d09f6 361 if (buffer[i] == wxT('.'))
c801d85f
KB
362 {
363 buffer[i] = 0;
364 break;
365 }
366 i --;
367 }
368}
369
47fa7969
JS
370void wxStripExtension(wxString& buffer)
371{
372 size_t len = buffer.Length();
373 size_t i = len-1;
374 while (i > 0)
375 {
223d09f6 376 if (buffer.GetChar(i) == wxT('.'))
47fa7969
JS
377 {
378 buffer = buffer.Left(i);
379 break;
380 }
381 i --;
382 }
383}
384
c801d85f 385// Destructive removal of /./ and /../ stuff
50920146 386wxChar *wxRealPath (wxChar *path)
c801d85f 387{
2049ba38 388#ifdef __WXMSW__
223d09f6 389 static const wxChar SEP = wxT('\\');
c801d85f
KB
390 Unix2DosFilename(path);
391#else
223d09f6 392 static const wxChar SEP = wxT('/');
c801d85f
KB
393#endif
394 if (path[0] && path[1]) {
395 /* MATTHEW: special case "/./x" */
50920146 396 wxChar *p;
223d09f6 397 if (path[2] == SEP && path[1] == wxT('.'))
c801d85f
KB
398 p = &path[0];
399 else
400 p = &path[2];
401 for (; *p; p++)
402 {
3f4a0c5b
VZ
403 if (*p == SEP)
404 {
223d09f6 405 if (p[1] == wxT('.') && p[2] == wxT('.') && (p[3] == SEP || p[3] == wxT('\0')))
3f4a0c5b 406 {
50920146 407 wxChar *q;
3f4a0c5b 408 for (q = p - 1; q >= path && *q != SEP; q--);
223d09f6 409 if (q[0] == SEP && (q[1] != wxT('.') || q[2] != wxT('.') || q[3] != SEP)
3f4a0c5b
VZ
410 && (q - 1 <= path || q[-1] != SEP))
411 {
50920146 412 wxStrcpy (q, p + 3);
223d09f6 413 if (path[0] == wxT('\0'))
3f4a0c5b
VZ
414 {
415 path[0] = SEP;
223d09f6 416 path[1] = wxT('\0');
3f4a0c5b 417 }
2049ba38 418#ifdef __WXMSW__
3f4a0c5b 419 /* Check that path[2] is NULL! */
223d09f6 420 else if (path[1] == wxT(':') && !path[2])
3f4a0c5b
VZ
421 {
422 path[2] = SEP;
223d09f6 423 path[3] = wxT('\0');
3f4a0c5b
VZ
424 }
425#endif
426 p = q - 1;
427 }
428 }
223d09f6 429 else if (p[1] == wxT('.') && (p[2] == SEP || p[2] == wxT('\0')))
50920146 430 wxStrcpy (p, p + 2);
3f4a0c5b 431 }
c801d85f
KB
432 }
433 }
434 return path;
435}
436
437// Must be destroyed
50920146 438wxChar *wxCopyAbsolutePath(const wxString& filename)
c801d85f 439{
223d09f6 440 if (filename == wxT(""))
50920146 441 return (wxChar *) NULL;
c801d85f 442
e90c1d2a 443 if (! IsAbsolutePath(wxExpandPath(wxFileFunctionsBuffer, filename))) {
50920146 444 wxChar buf[_MAXPATHLEN];
223d09f6 445 buf[0] = wxT('\0');
7af89395 446 wxGetWorkingDirectory(buf, WXSIZEOF(buf));
50920146 447 wxChar ch = buf[wxStrlen(buf) - 1];
2049ba38 448#ifdef __WXMSW__
223d09f6
KB
449 if (ch != wxT('\\') && ch != wxT('/'))
450 wxStrcat(buf, wxT("\\"));
c801d85f 451#else
223d09f6
KB
452 if (ch != wxT('/'))
453 wxStrcat(buf, wxT("/"));
c801d85f 454#endif
e90c1d2a 455 wxStrcat(buf, wxFileFunctionsBuffer);
c801d85f
KB
456 return copystring( wxRealPath(buf) );
457 }
e90c1d2a 458 return copystring( wxFileFunctionsBuffer );
c801d85f
KB
459}
460
461/*-
462 Handles:
463 ~/ => home dir
464 ~user/ => user's home dir
465 If the environment variable a = "foo" and b = "bar" then:
466 Unix:
3f4a0c5b
VZ
467 $a => foo
468 $a$b => foobar
469 $a.c => foo.c
470 xxx$a => xxxfoo
471 ${a}! => foo!
472 $(b)! => bar!
473 \$a => \$a
c801d85f 474 MSDOS:
3f4a0c5b
VZ
475 $a ==> $a
476 $(a) ==> foo
477 $(a)$b ==> foo$b
478 $(a)$(b)==> foobar
479 test.$$ ==> test.$$
c801d85f
KB
480 */
481
482/* input name in name, pathname output to buf. */
483
50920146 484wxChar *wxExpandPath(wxChar *buf, const wxChar *name)
c801d85f 485{
50920146
OK
486 register wxChar *d, *s, *nm;
487 wxChar lnm[_MAXPATHLEN];
33ac7e6f 488 int q;
c801d85f
KB
489
490 // Some compilers don't like this line.
223d09f6 491// const wxChar trimchars[] = wxT("\n \t");
c801d85f 492
50920146 493 wxChar trimchars[4];
223d09f6
KB
494 trimchars[0] = wxT('\n');
495 trimchars[1] = wxT(' ');
496 trimchars[2] = wxT('\t');
c801d85f
KB
497 trimchars[3] = 0;
498
2049ba38 499#ifdef __WXMSW__
223d09f6 500 const wxChar SEP = wxT('\\');
c801d85f 501#else
223d09f6 502 const wxChar SEP = wxT('/');
c801d85f 503#endif
223d09f6
KB
504 buf[0] = wxT('\0');
505 if (name == NULL || *name == wxT('\0'))
3f4a0c5b 506 return buf;
c801d85f 507 nm = copystring(name); // Make a scratch copy
50920146 508 wxChar *nm_tmp = nm;
c801d85f
KB
509
510 /* Skip leading whitespace and cr */
50920146 511 while (wxStrchr((wxChar *)trimchars, *nm) != NULL)
3f4a0c5b 512 nm++;
c801d85f 513 /* And strip off trailing whitespace and cr */
50920146
OK
514 s = nm + (q = wxStrlen(nm)) - 1;
515 while (q-- && wxStrchr((wxChar *)trimchars, *s) != NULL)
223d09f6 516 *s = wxT('\0');
c801d85f
KB
517
518 s = nm;
519 d = lnm;
2049ba38 520#ifdef __WXMSW__
c801d85f
KB
521 q = FALSE;
522#else
223d09f6 523 q = nm[0] == wxT('\\') && nm[1] == wxT('~');
c801d85f
KB
524#endif
525
526 /* Expand inline environment variables */
c2ff79b1
DW
527#ifdef __VISAGECPP__
528 while (*d)
529 {
530 *d++ = *s;
223d09f6 531 if(*s == wxT('\\'))
c2ff79b1
DW
532 {
533 *(d - 1) = *++s;
534 if (*d)
535 {
536 s++;
537 continue;
538 }
539 else
540 break;
541 }
542 else
543#else
22394d24 544 while ((*d++ = *s) != 0) {
c2ff79b1 545# ifndef __WXMSW__
223d09f6 546 if (*s == wxT('\\')) {
3f4a0c5b
VZ
547 if ((*(d - 1) = *++s)) {
548 s++;
549 continue;
550 } else
551 break;
552 } else
c2ff79b1 553# endif
c801d85f 554#endif
2049ba38 555#ifdef __WXMSW__
223d09f6 556 if (*s++ == wxT('$') && (*s == wxT('{') || *s == wxT(')')))
c801d85f 557#else
223d09f6 558 if (*s++ == wxT('$'))
3f4a0c5b
VZ
559#endif
560 {
50920146 561 register wxChar *start = d;
223d09f6 562 register int braces = (*s == wxT('{') || *s == wxT('('));
50920146 563 register wxChar *value;
22394d24 564 while ((*d++ = *s) != 0)
223d09f6 565 if (braces ? (*s == wxT('}') || *s == wxT(')')) : !(wxIsalnum(*s) || *s == wxT('_')) )
3f4a0c5b
VZ
566 break;
567 else
568 s++;
569 *--d = 0;
50920146 570 value = wxGetenv(braces ? start + 1 : start);
3f4a0c5b 571 if (value) {
22394d24 572 for ((d = start - 1); (*d++ = *value++) != 0;);
3f4a0c5b
VZ
573 d--;
574 if (braces && *s)
575 s++;
576 }
577 }
c801d85f
KB
578 }
579
580 /* Expand ~ and ~user */
581 nm = lnm;
223d09f6 582 if (nm[0] == wxT('~') && !q)
c801d85f 583 {
3f4a0c5b
VZ
584 /* prefix ~ */
585 if (nm[1] == SEP || nm[1] == 0)
586 { /* ~/filename */
f6bcfd97 587 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
223d09f6 588 if ((s = WXSTRINGCAST wxGetUserHome(wxT(""))) != NULL) {
3f4a0c5b
VZ
589 if (*++nm)
590 nm++;
591 }
c801d85f 592 } else
3f4a0c5b 593 { /* ~user/filename */
50920146
OK
594 register wxChar *nnm;
595 register wxChar *home;
3f4a0c5b
VZ
596 for (s = nm; *s && *s != SEP; s++);
597 int was_sep; /* MATTHEW: Was there a separator, or NULL? */
c801d85f 598 was_sep = (*s == SEP);
3f4a0c5b
VZ
599 nnm = *s ? s + 1 : s;
600 *s = 0;
f6bcfd97 601 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
0e6667e2 602 if ((home = WXSTRINGCAST wxGetUserHome(wxString(nm + 1))) == NULL) {
c801d85f 603 if (was_sep) /* replace only if it was there: */
3f4a0c5b 604 *s = SEP;
295272bd 605 s = NULL;
3f4a0c5b
VZ
606 } else {
607 nm = nnm;
608 s = home;
609 }
610 }
c801d85f
KB
611 }
612
613 d = buf;
614 if (s && *s) { /* MATTHEW: s could be NULL if user '~' didn't exist */
3f4a0c5b 615 /* Copy home dir */
223d09f6 616 while (wxT('\0') != (*d++ = *s++))
3f4a0c5b
VZ
617 /* loop */;
618 // Handle root home
619 if (d - 1 > buf && *(d - 2) != SEP)
620 *(d - 1) = SEP;
c801d85f
KB
621 }
622 s = nm;
22394d24 623 while ((*d++ = *s++) != 0);
c801d85f
KB
624 delete[] nm_tmp; // clean up alloc
625 /* Now clean up the buffer */
626 return wxRealPath(buf);
627}
628
c801d85f
KB
629/* Contract Paths to be build upon an environment variable
630 component:
631
632 example: "/usr/openwin/lib", OPENWINHOME --> ${OPENWINHOME}/lib
633
634 The call wxExpandPath can convert these back!
635 */
50920146 636wxChar *
c801d85f
KB
637wxContractPath (const wxString& filename, const wxString& envname, const wxString& user)
638{
50920146 639 static wxChar dest[_MAXPATHLEN];
c801d85f 640
223d09f6 641 if (filename == wxT(""))
50920146 642 return (wxChar *) NULL;
c801d85f 643
50920146 644 wxStrcpy (dest, WXSTRINGCAST filename);
2049ba38 645#ifdef __WXMSW__
c801d85f
KB
646 Unix2DosFilename(dest);
647#endif
648
649 // Handle environment
0e6667e2 650 const wxChar *val = (const wxChar *) NULL;
50920146
OK
651 wxChar *tcp = (wxChar *) NULL;
652 if (envname != WXSTRINGCAST NULL && (val = wxGetenv (WXSTRINGCAST envname)) != NULL &&
653 (tcp = wxStrstr (dest, val)) != NULL)
c801d85f 654 {
e90c1d2a 655 wxStrcpy (wxFileFunctionsBuffer, tcp + wxStrlen (val));
223d09f6
KB
656 *tcp++ = wxT('$');
657 *tcp++ = wxT('{');
50920146 658 wxStrcpy (tcp, WXSTRINGCAST envname);
223d09f6 659 wxStrcat (tcp, wxT("}"));
e90c1d2a 660 wxStrcat (tcp, wxFileFunctionsBuffer);
c801d85f
KB
661 }
662
663 // Handle User's home (ignore root homes!)
664 size_t len = 0;
665 if ((val = wxGetUserHome (user)) != NULL &&
50920146
OK
666 (len = wxStrlen(val)) > 2 &&
667 wxStrncmp(dest, val, len) == 0)
c801d85f 668 {
223d09f6
KB
669 wxStrcpy(wxFileFunctionsBuffer, wxT("~"));
670 if (user != wxT(""))
e90c1d2a 671 wxStrcat(wxFileFunctionsBuffer, (const wxChar*) user);
2049ba38 672#ifdef __WXMSW__
e90c1d2a 673// strcat(wxFileFunctionsBuffer, "\\");
c801d85f 674#else
e90c1d2a 675// strcat(wxFileFunctionsBuffer, "/");
c801d85f 676#endif
e90c1d2a
VZ
677 wxStrcat(wxFileFunctionsBuffer, dest + len);
678 wxStrcpy (dest, wxFileFunctionsBuffer);
c801d85f
KB
679 }
680
681 return dest;
682}
683
684// Return just the filename, not the path
685// (basename)
50920146 686wxChar *wxFileNameFromPath (wxChar *path)
c801d85f 687{
e8e1d09e 688 if (path)
c801d85f 689 {
e8e1d09e 690 register wxChar *tcp;
2db300c6 691
e8e1d09e
GD
692 tcp = path + wxStrlen (path);
693 while (--tcp >= path)
3f4a0c5b 694 {
e8e1d09e
GD
695#if defined(__WXMAC__) && !defined(__DARWIN__)
696 // Classic or Carbon CodeWarrior like
697 // Carbon with Apple DevTools is Unix like
698 if (*tcp == wxT(':'))
699 return tcp + 1;
c801d85f 700#else
e8e1d09e
GD
701 // Unix like or Windows
702 if (*tcp == wxT('/') || *tcp == wxT('\\'))
703 return tcp + 1;
bedaf53e 704#endif
e8e1d09e
GD
705#ifdef __VMS__
706 if (*tcp == wxT(':') || *tcp == wxT(']'))
707 return tcp + 1;
c801d85f 708#endif
e8e1d09e 709 } /* while */
c2ff79b1 710#if defined(__WXMSW__) || defined(__WXPM__)
e8e1d09e
GD
711 // MSDOS like
712 if (wxIsalpha (*path) && *(path + 1) == wxT(':'))
713 return path + 2;
c801d85f
KB
714#endif
715 }
e8e1d09e 716 return path;
c801d85f
KB
717}
718
719wxString wxFileNameFromPath (const wxString& path1)
720{
e8e1d09e
GD
721 if (path1 != wxT(""))
722 {
723 wxChar *path = WXSTRINGCAST path1 ;
724 register wxChar *tcp;
2db300c6 725
e8e1d09e
GD
726 tcp = path + wxStrlen (path);
727 while (--tcp >= path)
728 {
729#if defined(__WXMAC__) && !defined(__DARWIN__)
730 // Classic or Carbon CodeWarrior like
731 // Carbon with Apple DevTools is Unix like
732 if (*tcp == wxT(':') )
733 return wxString(tcp + 1);
c801d85f 734#else
e8e1d09e
GD
735 // Unix like or Windows
736 if (*tcp == wxT('/') || *tcp == wxT('\\'))
737 return wxString(tcp + 1);
c801d85f 738#endif
e8e1d09e
GD
739#ifdef __VMS__
740 if (*tcp == wxT(':') || *tcp == wxT(']'))
3f4a0c5b 741 return wxString(tcp + 1);
e8e1d09e
GD
742#endif
743 } /* while */
c2ff79b1 744#if defined(__WXMSW__) || defined(__WXPM__)
e8e1d09e
GD
745 // MSDOS like
746 if (wxIsalpha (*path) && *(path + 1) == wxT(':'))
3f4a0c5b 747 return wxString(path + 2);
c801d85f
KB
748#endif
749 }
e8e1d09e
GD
750 // Yes, this should return the path, not an empty string, otherwise
751 // we get "thing.txt" -> "".
752 return path1;
c801d85f
KB
753}
754
755// Return just the directory, or NULL if no directory
50920146
OK
756wxChar *
757wxPathOnly (wxChar *path)
c801d85f 758{
e8e1d09e 759 if (path && *path)
c801d85f 760 {
e8e1d09e 761 static wxChar buf[_MAXPATHLEN];
2db300c6 762
e8e1d09e
GD
763 // Local copy
764 wxStrcpy (buf, path);
2db300c6 765
e8e1d09e
GD
766 int l = wxStrlen(path);
767 int i = l - 1;
2db300c6 768
e8e1d09e
GD
769 // Search backward for a backward or forward slash
770 while (i > -1)
771 {
772#if defined(__WXMAC__) && !defined(__DARWIN__)
773 // Classic or Carbon CodeWarrior like
774 // Carbon with Apple DevTools is Unix like
775 if (path[i] == wxT(':') )
776 {
777 buf[i] = 0;
778 return buf;
779 }
bedaf53e 780#else
e8e1d09e
GD
781 // Unix like or Windows
782 if (path[i] == wxT('/') || path[i] == wxT('\\'))
783 {
784 buf[i] = 0;
785 return buf;
786 }
bedaf53e 787#endif
c801d85f 788#ifdef __VMS__
e8e1d09e
GD
789 if (path[i] == wxT(']'))
790 {
791 buf[i+1] = 0;
792 return buf;
793 }
a339970a 794#endif
e8e1d09e 795 i --;
c801d85f 796 }
2db300c6 797
c2ff79b1 798#if defined(__WXMSW__) || defined(__WXPM__)
e8e1d09e
GD
799 // Try Drive specifier
800 if (wxIsalpha (buf[0]) && buf[1] == wxT(':'))
3f4a0c5b 801 {
e8e1d09e
GD
802 // A:junk --> A:. (since A:.\junk Not A:\junk)
803 buf[2] = wxT('.');
804 buf[3] = wxT('\0');
805 return buf;
3f4a0c5b 806 }
c801d85f
KB
807#endif
808 }
e8e1d09e 809 return (wxChar *) NULL;
c801d85f
KB
810}
811
812// Return just the directory, or NULL if no directory
813wxString wxPathOnly (const wxString& path)
814{
e8e1d09e 815 if (path != wxT(""))
c801d85f 816 {
e8e1d09e 817 wxChar buf[_MAXPATHLEN];
2db300c6 818
e8e1d09e
GD
819 // Local copy
820 wxStrcpy (buf, WXSTRINGCAST path);
2db300c6 821
e8e1d09e
GD
822 int l = path.Length();
823 int i = l - 1;
824
825 // Search backward for a backward or forward slash
826 while (i > -1)
827 {
828#if defined(__WXMAC__) && !defined(__DARWIN__)
829 // Classic or Carbon CodeWarrior like
830 // Carbon with Apple DevTools is Unix like
831 if (path[i] == wxT(':') )
832 {
833 buf[i] = 0;
834 return wxString(buf);
835 }
bedaf53e 836#else
e8e1d09e
GD
837 // Unix like or Windows
838 if (path[i] == wxT('/') || path[i] == wxT('\\'))
839 {
840 buf[i] = 0;
841 return wxString(buf);
842 }
bedaf53e 843#endif
c801d85f 844#ifdef __VMS__
e8e1d09e
GD
845 if (path[i] == wxT(']'))
846 {
847 buf[i+1] = 0;
848 return wxString(buf);
849 }
a339970a 850#endif
e8e1d09e 851 i --;
c801d85f 852 }
2db300c6 853
c2ff79b1 854#if defined(__WXMSW__) || defined(__WXPM__)
e8e1d09e
GD
855 // Try Drive specifier
856 if (wxIsalpha (buf[0]) && buf[1] == wxT(':'))
3f4a0c5b 857 {
e8e1d09e
GD
858 // A:junk --> A:. (since A:.\junk Not A:\junk)
859 buf[2] = wxT('.');
860 buf[3] = wxT('\0');
861 return wxString(buf);
3f4a0c5b 862 }
c801d85f
KB
863#endif
864 }
e8e1d09e 865 return wxString(wxT(""));
c801d85f
KB
866}
867
868// Utility for converting delimiters in DOS filenames to UNIX style
869// and back again - or we get nasty problems with delimiters.
870// Also, convert to lower case, since case is significant in UNIX.
871
da2b4b7a 872#if defined(__WXMAC__)
bedaf53e
SC
873wxString wxMacFSSpec2MacFilename( const FSSpec *spec )
874{
a1c34a78
GD
875#ifdef __DARWIN__
876 FSRef theRef;
877 char thePath[FILENAME_MAX];
878
879 // convert the FSSpec to an FSRef
880 (void) FSpMakeFSRef( spec, &theRef );
881 // get the POSIX path associated with the FSRef
882 (void) FSRefMakePath( &theRef, (UInt8 *)thePath, sizeof(thePath) );
2db300c6 883
a1c34a78
GD
884 // create path string for return value
885 wxString result( thePath ) ;
886#else
bedaf53e
SC
887 Handle myPath ;
888 short length ;
889
a1c34a78 890 // get length of path and allocate handle
bedaf53e
SC
891 FSpGetFullPath( spec , &length , &myPath ) ;
892 ::SetHandleSize( myPath , length + 1 ) ;
893 ::HLock( myPath ) ;
894 (*myPath)[length] = 0 ;
a1c34a78 895 if ((length > 0) && ((*myPath)[length-1] == ':'))
bedaf53e 896 (*myPath)[length-1] = 0 ;
2db300c6 897
a1c34a78 898 // create path string for return value
334d2448 899 wxString result( (char*) *myPath ) ;
a1c34a78
GD
900
901 // free allocated handle
bedaf53e
SC
902 ::HUnlock( myPath ) ;
903 ::DisposeHandle( myPath ) ;
a1c34a78
GD
904#endif
905
bedaf53e
SC
906 return result ;
907}
e7549107 908
bedaf53e
SC
909void wxMacFilename2FSSpec( const char *path , FSSpec *spec )
910{
334d2448 911#ifdef __DARWIN__
a1c34a78
GD
912 FSRef theRef;
913
914 // get the FSRef associated with the POSIX path
915 (void) FSPathMakeRef((const UInt8 *) path, &theRef, NULL);
916 // convert the FSRef to an FSSpec
917 (void) FSGetCatalogInfo(&theRef, kFSCatInfoNone, NULL, NULL, spec, NULL);
334d2448
GD
918#else
919 FSpLocationFromFullPath( strlen(path) , path , spec ) ;
920#endif
bedaf53e
SC
921}
922
a1c34a78
GD
923#ifndef __DARWIN__
924// Mac file names are POSIX (Unix style) under Darwin
925// therefore the conversion functions below are not needed
926
e7549107
SC
927static char sMacFileNameConversion[ 1000 ] ;
928
929wxString wxMac2UnixFilename (const char *str)
17dff81c 930{
f6bcfd97
BP
931 char *s = sMacFileNameConversion ;
932 strcpy( s , str ) ;
a1c34a78
GD
933 if (s)
934 {
935 memmove( s+1 , s ,strlen( s ) + 1) ;
936 if ( *s == ':' )
e7549107 937 *s = '.' ;
a1c34a78 938 else
e7549107 939 *s = '/' ;
2db300c6 940
a1c34a78
GD
941 while (*s)
942 {
e7549107 943 if (*s == ':')
a1c34a78 944 *s = '/';
e7549107 945 else
a1c34a78 946 *s = wxTolower(*s); // Case INDEPENDENT
e7549107 947 s++;
a1c34a78 948 }
e7549107 949 }
a1c34a78 950 return wxString(sMacFileNameConversion) ;
17dff81c
SC
951}
952
e7549107 953wxString wxUnix2MacFilename (const char *str)
17dff81c 954{
f6bcfd97
BP
955 char *s = sMacFileNameConversion ;
956 strcpy( s , str ) ;
a1c34a78 957 if (s)
e7549107 958 {
a1c34a78
GD
959 if ( *s == '.' )
960 {
961 // relative path , since it goes on with slash which is translated to a :
962 memmove( s , s+1 ,strlen( s ) ) ;
963 }
964 else if ( *s == '/' )
965 {
966 // absolute path -> on mac just start with the drive name
967 memmove( s , s+1 ,strlen( s ) ) ;
968 }
969 else
970 {
971 wxASSERT_MSG( 1 , "unkown path beginning" ) ;
972 }
973 while (*s)
974 {
975 if (*s == '/' || *s == '\\')
976 {
977 // convert any back-directory situations
978 if ( *(s+1) == '.' && *(s+2) == '.' && ( (*(s+3) == '/' || *(s+3) == '\\') ) )
979 {
980 *s = ':';
981 memmove( s+1 , s+3 ,strlen( s+3 ) + 1 ) ;
982 }
983 else
984 *s = ':';
985 }
986 s++ ;
987 }
e7549107 988 }
a1c34a78 989 return wxString (sMacFileNameConversion) ;
17dff81c 990}
e7549107 991
e7549107
SC
992wxString wxMacFSSpec2UnixFilename( const FSSpec *spec )
993{
f6bcfd97 994 return wxMac2UnixFilename( wxMacFSSpec2MacFilename( spec) ) ;
e7549107
SC
995}
996
e7549107
SC
997void wxUnixFilename2FSSpec( const char *path , FSSpec *spec )
998{
f6bcfd97
BP
999 wxString var = wxUnix2MacFilename( path ) ;
1000 wxMacFilename2FSSpec( var , spec ) ;
e7549107 1001}
a1c34a78 1002#endif // ! __DARWIN__
12d67f8a 1003
e8e1d09e
GD
1004#endif // __WXMAC__
1005
3f4a0c5b 1006void
e7549107 1007wxDos2UnixFilename (char *s)
c801d85f
KB
1008{
1009 if (s)
1010 while (*s)
1011 {
e7549107
SC
1012 if (*s == '\\')
1013 *s = '/';
1014#ifdef __WXMSW__
3f4a0c5b 1015 else
e7549107 1016 *s = wxTolower (*s); // Case INDEPENDENT
c801d85f 1017#endif
3f4a0c5b 1018 s++;
c801d85f
KB
1019 }
1020}
1021
3f4a0c5b 1022void
f28538c5 1023#if defined(__WXMSW__) || defined(__WXPM__)
5b735202 1024wxUnix2DosFilename (wxChar *s)
46dc76ba 1025#else
5b735202 1026wxUnix2DosFilename (wxChar *WXUNUSED(s) )
46dc76ba 1027#endif
c801d85f
KB
1028{
1029// Yes, I really mean this to happen under DOS only! JACS
c2ff79b1 1030#if defined(__WXMSW__) || defined(__WXPM__)
c801d85f
KB
1031 if (s)
1032 while (*s)
1033 {
223d09f6
KB
1034 if (*s == wxT('/'))
1035 *s = wxT('\\');
3f4a0c5b 1036 s++;
c801d85f
KB
1037 }
1038#endif
1039}
1040
1041// Concatenate two files to form third
3f4a0c5b 1042bool
c801d85f
KB
1043wxConcatFiles (const wxString& file1, const wxString& file2, const wxString& file3)
1044{
a339970a
VZ
1045 wxString outfile;
1046 if ( !wxGetTempFileName("cat", outfile) )
1047 return FALSE;
c801d85f 1048
c67daf87
UR
1049 FILE *fp1 = (FILE *) NULL;
1050 FILE *fp2 = (FILE *) NULL;
1051 FILE *fp3 = (FILE *) NULL;
c801d85f 1052 // Open the inputs and outputs
e987a489
VS
1053 if ((fp1 = wxFopen (OS_FILENAME( file1 ), wxT("rb"))) == NULL ||
1054 (fp2 = wxFopen (OS_FILENAME( file2 ), wxT("rb"))) == NULL ||
1055 (fp3 = wxFopen (OS_FILENAME( outfile ), wxT("wb"))) == NULL)
c801d85f
KB
1056 {
1057 if (fp1)
3f4a0c5b 1058 fclose (fp1);
c801d85f 1059 if (fp2)
3f4a0c5b 1060 fclose (fp2);
c801d85f 1061 if (fp3)
3f4a0c5b 1062 fclose (fp3);
c801d85f
KB
1063 return FALSE;
1064 }
1065
1066 int ch;
1067 while ((ch = getc (fp1)) != EOF)
1068 (void) putc (ch, fp3);
1069 fclose (fp1);
1070
1071 while ((ch = getc (fp2)) != EOF)
1072 (void) putc (ch, fp3);
1073 fclose (fp2);
1074
1075 fclose (fp3);
1076 bool result = wxRenameFile(outfile, file3);
c801d85f
KB
1077 return result;
1078}
1079
1080// Copy files
3f4a0c5b 1081bool
4658c44e 1082wxCopyFile (const wxString& file1, const wxString& file2, bool overwrite)
c801d85f 1083{
04ef50df 1084#if defined(__WIN32__) && !defined(__WXMICROWIN__)
4658c44e
VZ
1085 // CopyFile() copies file attributes and modification time too, so use it
1086 // instead of our code if available
1087 //
1088 // NB: 3rd parameter is bFailIfExists i.e. the inverse of overwrite
564225a1
VZ
1089 if ( !::CopyFile(file1, file2, !overwrite) )
1090 {
1091 wxLogSysError(_("Failed to copy the file '%s' to '%s'"),
1092 file1.c_str(), file2.c_str());
1093
1094 return FALSE;
1095 }
19193a2c 1096#elif defined(__WXPM__)
564225a1 1097 if ( ::DosCopy(file2, file2, overwrite ? DCPY_EXISTING : 0) != 0 )
19193a2c 1098 return FALSE;
4658c44e 1099#else // !Win32
32f31043
VZ
1100 wxStructStat fbuf;
1101
1102 // get permissions of file1
c3396917 1103 if ( wxStat(OS_FILENAME(file1), &fbuf) != 0 )
32f31043
VZ
1104 {
1105 // the file probably doesn't exist or we haven't the rights to read
1106 // from it anyhow
1107 wxLogSysError(_("Impossible to get permissions for file '%s'"),
1108 file1.c_str());
1109 return FALSE;
1110 }
1111
1112 // open file1 for reading
1113 wxFile fileIn(file1, wxFile::read);
a339970a
VZ
1114 if ( !fileIn.IsOpened() )
1115 return FALSE;
c801d85f 1116
32f31043
VZ
1117 // remove file2, if it exists. This is needed for creating
1118 // file2 with the correct permissions in the next step
4658c44e 1119 if ( wxFileExists(file2) && (!overwrite || !wxRemoveFile(file2)))
32f31043
VZ
1120 {
1121 wxLogSysError(_("Impossible to overwrite the file '%s'"),
1122 file2.c_str());
1123 return FALSE;
1124 }
1125
1126#ifdef __UNIX__
1127 // reset the umask as we want to create the file with exactly the same
1128 // permissions as the original one
1129 mode_t oldUmask = umask( 0 );
1130#endif // __UNIX__
1131
1132 // create file2 with the same permissions than file1 and open it for
1133 // writing
1134 wxFile fileOut;
4658c44e 1135 if ( !fileOut.Create(file2, overwrite, fbuf.st_mode & 0777) )
a339970a 1136 return FALSE;
c801d85f 1137
32f31043
VZ
1138#ifdef __UNIX__
1139 /// restore the old umask
1140 umask(oldUmask);
1141#endif // __UNIX__
1142
1143 // copy contents of file1 to file2
a339970a
VZ
1144 char buf[4096];
1145 size_t count;
1146 for ( ;; )
c7386783 1147 {
a339970a
VZ
1148 count = fileIn.Read(buf, WXSIZEOF(buf));
1149 if ( fileIn.Error() )
1150 return FALSE;
1151
1152 // end of file?
1153 if ( !count )
1154 break;
1155
1156 if ( fileOut.Write(buf, count) < count )
1157 return FALSE;
c7386783 1158 }
c801d85f 1159
abb74e97
VZ
1160 // we can expect fileIn to be closed successfully, but we should ensure
1161 // that fileOut was closed as some write errors (disk full) might not be
1162 // detected before doing this
1163 if ( !fileIn.Close() || !fileOut.Close() )
1164 return FALSE;
1165
5fde6fcc 1166#if !defined(__VISAGECPP__) && !defined(__WXMAC__) || defined(__UNIX__)
abb74e97
VZ
1167 // no chmod in VA. Should be some permission API for HPFS386 partitions
1168 // however
c3396917 1169 if ( chmod(OS_FILENAME(file2), fbuf.st_mode) != 0 )
32f31043
VZ
1170 {
1171 wxLogSysError(_("Impossible to set permissions for the file '%s'"),
1172 file2.c_str());
1173 return FALSE;
1174 }
4658c44e 1175#endif // OS/2 || Mac
564225a1 1176#endif // __WXMSW__ && __WIN32__
4658c44e 1177
a339970a 1178 return TRUE;
c801d85f
KB
1179}
1180
3f4a0c5b 1181bool
c801d85f
KB
1182wxRenameFile (const wxString& file1, const wxString& file2)
1183{
1184 // Normal system call
c3396917 1185 if ( wxRename (file1, file2) == 0 )
c801d85f 1186 return TRUE;
a339970a 1187
c801d85f
KB
1188 // Try to copy
1189 if (wxCopyFile(file1, file2)) {
1190 wxRemoveFile(file1);
1191 return TRUE;
1192 }
1193 // Give up
1194 return FALSE;
1195}
1196
1197bool wxRemoveFile(const wxString& file)
1198{
161f4f73
VZ
1199#if defined(__VISUALC__) \
1200 || defined(__BORLANDC__) \
1201 || defined(__WATCOMC__) \
1202 || defined(__GNUWIN32__)
a339970a 1203 int res = wxRemove(file);
c801d85f 1204#else
a339970a 1205 int res = unlink(OS_FILENAME(file));
c801d85f 1206#endif
a339970a
VZ
1207
1208 return res == 0;
c801d85f
KB
1209}
1210
1a33c3ba 1211bool wxMkdir(const wxString& dir, int perm)
c801d85f 1212{
5fde6fcc 1213#if defined(__WXMAC__) && !defined(__UNIX__)
bedaf53e 1214 return (mkdir( dir , 0 ) == 0);
7708abe9 1215#else // !Mac
50920146 1216 const wxChar *dirname = dir.c_str();
1a33c3ba 1217
c2ff79b1 1218 // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
7708abe9 1219 // for the GNU compiler
f48fa475 1220#if (!(defined(__WXMSW__) || defined(__WXPM__) || defined(__DOS__))) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WXWINE__) || defined(__WXMICROWIN__)
50920146 1221 if ( mkdir(wxFNCONV(dirname), perm) != 0 )
f6bcfd97
BP
1222#elif defined(__WXPM__)
1223 if (::DosCreateDir((PSZ)dirname, NULL) != 0) // enhance for EAB's??
b916f809
VS
1224#elif defined(__DOS__)
1225 #if defined(__WATCOMC__)
1226 (void)perm;
1227 if ( wxMkDir(wxFNSTRINGCAST wxFNCONV(dirname)) != 0 )
1228 #elif defined(__DJGPP__)
1229 if ( mkdir(wxFNCONV(dirname), perm) != 0 )
1230 #else
1231 #error "Unsupported DOS compiler!"
1232 #endif
1233#else // !MSW, !DOS and !OS/2 VAC++
19193a2c 1234 (void)perm;
f6bcfd97 1235 if ( wxMkDir(wxFNSTRINGCAST wxFNCONV(dirname)) != 0 )
7708abe9 1236#endif // !MSW/MSW
1a33c3ba
VZ
1237 {
1238 wxLogSysError(_("Directory '%s' couldn't be created"), dirname);
1239
1240 return FALSE;
1241 }
1242
1243 return TRUE;
e7549107 1244#endif // Mac/!Mac
c801d85f
KB
1245}
1246
1247bool wxRmdir(const wxString& dir, int WXUNUSED(flags))
1248{
1249#ifdef __VMS__
acdc3b6b 1250 return FALSE; //to be changed since rmdir exists in VMS7.x
f6bcfd97
BP
1251#elif defined(__WXPM__)
1252 return (::DosDeleteDir((PSZ)dir.c_str()) == 0);
c801d85f 1253#else
a3ef5bf5
JS
1254
1255#ifdef __SALFORDC__
1256 return FALSE; // What to do?
1257#else
a339970a 1258 return (wxRmDir(OS_FILENAME(dir)) == 0);
c801d85f
KB
1259#endif
1260
1261#endif
1262}
1263
c801d85f 1264// does the path exists? (may have or not '/' or '\\' at the end)
50920146 1265bool wxPathExists(const wxChar *pszPathName)
c801d85f 1266{
f6bcfd97 1267 wxString strPath(pszPathName);
e32d659d 1268
f6bcfd97
BP
1269#ifdef __WINDOWS__
1270 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
1271 // so remove all trailing backslashes from the path - but don't do this for
1272 // the pathes "d:\" (which are different from "d:") nor for just "\"
1273 while ( wxEndsWithPathSeparator(strPath) )
1274 {
1275 size_t len = strPath.length();
cc4a1ce1 1276 if ( len == 1 || (len == 3 && strPath[len - 2] == _T(':')) )
f6bcfd97 1277 break;
c801d85f 1278
f6bcfd97
BP
1279 strPath.Truncate(len - 1);
1280 }
1281#endif // __WINDOWS__
1282
2db300c6 1283#if defined(__WIN32__) && !defined(__WXMICROWIN__)
e32d659d
VZ
1284 // stat() can't cope with network paths
1285 DWORD ret = ::GetFileAttributes(strPath);
2db300c6 1286
a28ae409 1287 return (ret != (DWORD)-1) && (ret & FILE_ATTRIBUTE_DIRECTORY);
e32d659d 1288#else // !__WIN32__
4c97e024 1289
f6bcfd97 1290 wxStructStat st;
71c97a89 1291#ifndef __VISAGECPP__
f6bcfd97
BP
1292 return wxStat(wxFNSTRINGCAST strPath.fn_str(), &st) == 0 &&
1293 ((st.st_mode & S_IFMT) == S_IFDIR);
71c97a89
DW
1294#else
1295 // S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
1296 return wxStat(wxFNSTRINGCAST strPath.fn_str(), &st) == 0 &&
1297 (st.st_mode == S_IFDIR);
1298#endif
1299
e32d659d 1300#endif // __WIN32__/!__WIN32__
c801d85f
KB
1301}
1302
1303// Get a temporary filename, opening and closing the file.
50920146 1304wxChar *wxGetTempFileName(const wxString& prefix, wxChar *buf)
c801d85f 1305{
ade35f11
VZ
1306 wxString filename = wxFileName::CreateTempFileName(prefix);
1307 if ( filename.empty() )
1308 return NULL;
c801d85f 1309
ade35f11
VZ
1310 if ( buf )
1311 wxStrcpy(buf, filename);
1312 else
1313 buf = copystring(filename);
c801d85f 1314
ade35f11 1315 return buf;
c801d85f
KB
1316}
1317
c0ab6adf
JS
1318bool wxGetTempFileName(const wxString& prefix, wxString& buf)
1319{
ade35f11
VZ
1320 buf = wxFileName::CreateTempFileName(prefix);
1321
1322 return !buf.empty();
c0ab6adf
JS
1323}
1324
c801d85f
KB
1325// Get first file name matching given wild card.
1326
8ff12342
VS
1327static wxDir *gs_dir = NULL;
1328static wxString gs_dirPath;
1329
1330wxString wxFindFirstFile(const wxChar *spec, int flags)
1331{
1332 gs_dirPath = wxPathOnly(spec);
1333 if ( gs_dirPath.IsEmpty() )
1334 gs_dirPath = wxT(".");
1335 if ( gs_dirPath.Last() != wxFILE_SEP_PATH )
1336 gs_dirPath << wxFILE_SEP_PATH;
1337
1338 if (gs_dir)
1339 delete gs_dir;
1340 gs_dir = new wxDir(gs_dirPath);
2db300c6 1341
8ff12342
VS
1342 if ( !gs_dir->IsOpened() )
1343 {
1344 wxLogSysError(_("Can not enumerate files '%s'"), spec);
1345 return wxEmptyString;
1346 }
2db300c6 1347
8ff12342
VS
1348 int dirFlags = 0;
1349 switch (flags)
1350 {
1351 case wxDIR: dirFlags = wxDIR_DIRS; break;
1352 case wxFILE: dirFlags = wxDIR_FILES; break;
1353 default: dirFlags = wxDIR_DIRS | wxDIR_FILES; break;
1354 }
2db300c6 1355
8ff12342
VS
1356 wxString result;
1357 gs_dir->GetFirst(&result, wxFileNameFromPath(spec), dirFlags);
1358 if ( result.IsEmpty() )
e168b6ac 1359 {
8ff12342 1360 wxDELETE(gs_dir);
e168b6ac
VS
1361 return result;
1362 }
8ff12342
VS
1363
1364 return gs_dirPath + result;
1365}
1366
1367wxString wxFindNextFile()
1368{
1369 wxASSERT_MSG( gs_dir, wxT("You must call wxFindFirstFile before!") );
1370
1371 wxString result;
1372 gs_dir->GetNext(&result);
2db300c6 1373
8ff12342 1374 if ( result.IsEmpty() )
e168b6ac 1375 {
8ff12342 1376 wxDELETE(gs_dir);
e168b6ac
VS
1377 return result;
1378 }
2db300c6 1379
8ff12342
VS
1380 return gs_dirPath + result;
1381}
1382
c801d85f
KB
1383
1384// Get current working directory.
1385// If buf is NULL, allocates space using new, else
1386// copies into buf.
50920146 1387wxChar *wxGetWorkingDirectory(wxChar *buf, int sz)
c801d85f 1388{
13b1f8a7 1389 if ( !buf )
f6bcfd97 1390 {
13b1f8a7
VZ
1391 buf = new wxChar[sz + 1];
1392 }
1393
dbc38199 1394 bool ok = FALSE;
13b1f8a7
VZ
1395
1396 // for the compilers which have Unicode version of _getcwd(), call it
1397 // directly, for the others call the ANSI version and do the translation
dbc38199
VS
1398#if !wxUSE_UNICODE
1399 #define cbuf buf
1400#else // wxUSE_UNICODE
1401 bool needsANSI = TRUE;
1402
1403 #if !defined(HAVE_WGETCWD) || wxUSE_UNICODE_MSLU
1404 wxCharBuffer c_buffer(sz);
1405 char *cbuf = (char*)(const char*)c_buffer;
1406 #endif
1407
13b1f8a7 1408 #ifdef HAVE_WGETCWD
dbc38199
VS
1409 #if wxUSE_UNICODE_MSLU
1410 if ( wxGetOsVersion() != wxWIN95 )
1411 #endif
1412 {
1413 ok = _wgetcwd(buf, sz) != NULL;
1414 needsANSI = FALSE;
1415 }
13b1f8a7 1416 #endif
13b1f8a7 1417
dbc38199
VS
1418 if ( needsANSI )
1419#endif // wxUSE_UNICODE
1420 {
13b1f8a7 1421 #ifdef _MSC_VER
dbc38199 1422 ok = _getcwd(cbuf, sz) != NULL;
13b1f8a7
VZ
1423 #elif defined(__WXMAC__) && !defined(__DARWIN__)
1424 FSSpec cwdSpec ;
1425 FCBPBRec pb;
1426 OSErr error;
1427 Str255 fileName ;
1428 pb.ioNamePtr = (StringPtr) &fileName;
1429 pb.ioVRefNum = 0;
1430 pb.ioRefNum = LMGetCurApRefNum();
1431 pb.ioFCBIndx = 0;
1432 error = PBGetFCBInfoSync(&pb);
1433 if ( error == noErr )
1434 {
1435 cwdSpec.vRefNum = pb.ioFCBVRefNum;
1436 cwdSpec.parID = pb.ioFCBParID;
1437 cwdSpec.name[0] = 0 ;
1438 wxString res = wxMacFSSpec2MacFilename( &cwdSpec ) ;
1439
dbc38199
VS
1440 strcpy( cbuf , res ) ;
1441 cbuf[res.length()]=0 ;
13b1f8a7
VZ
1442
1443 ok = TRUE;
1444 }
1445 else
1446 {
1447 ok = FALSE;
1448 }
1449 #elif defined(__VISAGECPP__) || (defined (__OS2__) && defined (__WATCOMC__))
1450 APIRET rc;
1451 rc = ::DosQueryCurrentDir( 0 // current drive
dbc38199 1452 ,cbuf
13b1f8a7
VZ
1453 ,(PULONG)&sz
1454 );
1455 ok = rc != 0;
1456 #else // !Win32/VC++ !Mac !OS2
dbc38199 1457 ok = getcwd(cbuf, sz) != NULL;
13b1f8a7 1458 #endif // platform
dbc38199 1459 }
13b1f8a7
VZ
1460
1461 if ( !ok )
19193a2c 1462 {
13b1f8a7 1463 wxLogSysError(_("Failed to get the working directory"));
19193a2c 1464
13b1f8a7
VZ
1465 // VZ: the old code used to return "." on error which didn't make any
1466 // sense at all to me - empty string is a better error indicator
1467 // (NULL might be even better but I'm afraid this could lead to
1468 // problems with the old code assuming the return is never NULL)
1469 buf[0] = _T('\0');
19193a2c 1470 }
13b1f8a7 1471 else // ok, but we might need to massage the path into the right format
19193a2c 1472 {
4b00a538 1473#ifdef __DJGPP__
13b1f8a7
VZ
1474 // VS: DJGPP is a strange mix of DOS and UNIX API and returns paths
1475 // with / deliminers. We don't like that.
1476 for (wxChar *ch = buf; *ch; ch++)
1477 {
1478 if (*ch == wxT('/'))
1479 *ch = wxT('\\');
1480 }
1481#endif // __DJGPP__
1482
e02e8816 1483#ifdef __CYGWIN__
3ffbc733 1484 // another example of DOS/Unix mix (Cygwin)
13b1f8a7
VZ
1485 wxString pathUnix = buf;
1486 cygwin_conv_to_full_win32_path(pathUnix, buf);
e02e8816 1487#endif // __CYGWIN__
13b1f8a7
VZ
1488
1489 // finally convert the result to Unicode if needed
dbc38199 1490#if wxUSE_UNICODE
13b1f8a7
VZ
1491 wxConvFile.MB2WC(buf, cbuf, sz);
1492#endif // wxUSE_UNICODE
1493 }
4b00a538 1494
13b1f8a7 1495 return buf;
dbc38199
VS
1496
1497#if !wxUSE_UNICODE
1498 #undef cbuf
1499#endif
c801d85f
KB
1500}
1501
7af89395
VZ
1502wxString wxGetCwd()
1503{
eac2aeb0 1504 wxString str;
2fe0ef8a
VZ
1505
1506 // we can't create wxStringBuffer object inline: Sun CC generates buggy
1507 // code in this case!
1508 {
1509 wxStringBuffer buf(str, _MAXPATHLEN);
1510 wxGetWorkingDirectory(buf, _MAXPATHLEN);
1511 }
eac2aeb0
VZ
1512
1513 return str;
7af89395
VZ
1514}
1515
c801d85f
KB
1516bool wxSetWorkingDirectory(const wxString& d)
1517{
f48fa475 1518#if defined(__UNIX__) || defined(__WXMAC__) || defined(__DOS__)
e90c1d2a 1519 return (chdir(wxFNSTRINGCAST d.fn_str()) == 0);
f6bcfd97
BP
1520#elif defined(__WXPM__)
1521 return (::DosSetCurrentDir((PSZ)d.c_str()) == 0);
34138703 1522#elif defined(__WINDOWS__)
c801d85f
KB
1523
1524#ifdef __WIN32__
1525 return (bool)(SetCurrentDirectory(d) != 0);
1526#else
1527 // Must change drive, too.
1528 bool isDriveSpec = ((strlen(d) > 1) && (d[1] == ':'));
1529 if (isDriveSpec)
1530 {
50920146 1531 wxChar firstChar = d[0];
c801d85f
KB
1532
1533 // To upper case
1534 if (firstChar > 90)
1535 firstChar = firstChar - 32;
1536
1537 // To a drive number
1538 unsigned int driveNo = firstChar - 64;
1539 if (driveNo > 0)
1540 {
1541 unsigned int noDrives;
1542 _dos_setdrive(driveNo, &noDrives);
1543 }
1544 }
1545 bool success = (chdir(WXSTRINGCAST d) == 0);
1546
1547 return success;
1548#endif
1549
1550#endif
1551}
1552
631f1bfe
JS
1553// Get the OS directory if appropriate (such as the Windows directory).
1554// On non-Windows platform, probably just return the empty string.
1555wxString wxGetOSDirectory()
1556{
04ef50df 1557#if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
50920146 1558 wxChar buf[256];
631f1bfe
JS
1559 GetWindowsDirectory(buf, 256);
1560 return wxString(buf);
1561#else
1562 return wxEmptyString;
1563#endif
1564}
1565
a907da15 1566bool wxEndsWithPathSeparator(const wxChar *pszFileName)
c801d85f 1567{
903b61cc
VZ
1568 size_t len = wxStrlen(pszFileName);
1569
1570 return len && wxIsPathSeparator(pszFileName[len - 1]);
c801d85f
KB
1571}
1572
1573// find a file in a list of directories, returns false if not found
50920146 1574bool wxFindFileInPath(wxString *pStr, const wxChar *pszPath, const wxChar *pszFile)
c801d85f 1575{
a17e237f
VZ
1576 // we assume that it's not empty
1577 wxCHECK_MSG( !wxIsEmpty(pszFile), FALSE,
f6bcfd97 1578 _T("empty file name in wxFindFileInPath"));
a17e237f
VZ
1579
1580 // skip path separator in the beginning of the file name if present
1581 if ( wxIsPathSeparator(*pszFile) )
1582 pszFile++;
1583
1584 // copy the path (strtok will modify it)
1585 wxChar *szPath = new wxChar[wxStrlen(pszPath) + 1];
1586 wxStrcpy(szPath, pszPath);
1587
1588 wxString strFile;
1589 wxChar *pc, *save_ptr;
1590 for ( pc = wxStrtok(szPath, wxPATH_SEP, &save_ptr);
1591 pc != NULL;
1592 pc = wxStrtok((wxChar *) NULL, wxPATH_SEP, &save_ptr) )
1593 {
1594 // search for the file in this directory
1595 strFile = pc;
1596 if ( !wxEndsWithPathSeparator(pc) )
1597 strFile += wxFILE_SEP_PATH;
1598 strFile += pszFile;
1599
1600 if ( FileExists(strFile) ) {
1601 *pStr = strFile;
1602 break;
1603 }
c801d85f 1604 }
c801d85f 1605
a17e237f
VZ
1606 // suppress warning about unused variable save_ptr when wxStrtok() is a
1607 // macro which throws away its third argument
1608 save_ptr = pc;
1609
1610 delete [] szPath;
c801d85f 1611
a17e237f 1612 return pc != NULL; // if true => we breaked from the loop
c801d85f
KB
1613}
1614
50920146 1615void WXDLLEXPORT wxSplitPath(const wxChar *pszFileName,
3826db3e
VZ
1616 wxString *pstrPath,
1617 wxString *pstrName,
1618 wxString *pstrExt)
1619{
d37fd2fa 1620 // it can be empty, but it shouldn't be NULL
223d09f6 1621 wxCHECK_RET( pszFileName, wxT("NULL file name in wxSplitPath") );
3826db3e 1622
9e8d8607 1623 wxFileName::SplitPath(pszFileName, pstrPath, pstrName, pstrExt);
3826db3e 1624}
7f555861 1625
a47ce4a7
VS
1626time_t WXDLLEXPORT wxFileModificationTime(const wxString& filename)
1627{
f6bcfd97 1628 wxStructStat buf;
a47ce4a7 1629
f6bcfd97 1630 wxStat(filename.fn_str(), &buf);
a47ce4a7
VS
1631 return buf.st_mtime;
1632}
1633
1634
7f555861
JS
1635//------------------------------------------------------------------------
1636// wild character routines
1637//------------------------------------------------------------------------
1638
1639bool wxIsWild( const wxString& pattern )
1640{
1641 wxString tmp = pattern;
50920146 1642 wxChar *pat = WXSTRINGCAST(tmp);
7f555861 1643 while (*pat) {
3f4a0c5b 1644 switch (*pat++) {
223d09f6 1645 case wxT('?'): case wxT('*'): case wxT('['): case wxT('{'):
3f4a0c5b 1646 return TRUE;
223d09f6 1647 case wxT('\\'):
3f4a0c5b
VZ
1648 if (!*pat++)
1649 return FALSE;
1650 }
7f555861
JS
1651 }
1652 return FALSE;
1653};
1654
b112d152 1655bool wxMatchWild( const wxString& pat, const wxString& text, bool dot_special )
99cc00ed 1656
7be1f0d9 1657#if defined(HAVE_FNMATCH_H)
dfcb1ae0 1658{
50920146 1659// this probably won't work well for multibyte chars in Unicode mode?
b112d152 1660 if(dot_special)
50920146 1661 return fnmatch(pat.fn_str(), text.fn_str(), FNM_PERIOD) == 0;
b112d152 1662 else
50920146 1663 return fnmatch(pat.fn_str(), text.fn_str(), 0) == 0;
dfcb1ae0
KB
1664}
1665#else
1666
7be1f0d9
JS
1667// #pragma error Broken implementation of wxMatchWild() -- needs fixing!
1668
dfcb1ae0
KB
1669 /*
1670 * WARNING: this code is broken!
1671 */
7f555861
JS
1672{
1673 wxString tmp1 = pat;
50920146 1674 wxChar *pattern = WXSTRINGCAST(tmp1);
7f555861 1675 wxString tmp2 = text;
50920146
OK
1676 wxChar *str = WXSTRINGCAST(tmp2);
1677 wxChar c;
1678 wxChar *cp;
7f555861
JS
1679 bool done = FALSE, ret_code, ok;
1680 // Below is for vi fans
223d09f6 1681 const wxChar OB = wxT('{'), CB = wxT('}');
7f555861
JS
1682
1683 // dot_special means '.' only matches '.'
223d09f6 1684 if (dot_special && *str == wxT('.') && *pattern != *str)
3f4a0c5b 1685 return FALSE;
7f555861 1686
223d09f6
KB
1687 while ((*pattern != wxT('\0')) && (!done)
1688 && (((*str==wxT('\0'))&&((*pattern==OB)||(*pattern==wxT('*'))))||(*str!=wxT('\0')))) {
3f4a0c5b 1689 switch (*pattern) {
223d09f6 1690 case wxT('\\'):
3f4a0c5b 1691 pattern++;
223d09f6 1692 if (*pattern != wxT('\0'))
3f4a0c5b
VZ
1693 pattern++;
1694 break;
223d09f6 1695 case wxT('*'):
3f4a0c5b
VZ
1696 pattern++;
1697 ret_code = FALSE;
223d09f6 1698 while ((*str!=wxT('\0'))
33ac7e6f 1699 && ((ret_code=wxMatchWild(pattern, str++, FALSE)) == 0))
3f4a0c5b
VZ
1700 /*loop*/;
1701 if (ret_code) {
223d09f6 1702 while (*str != wxT('\0'))
3f4a0c5b 1703 str++;
223d09f6 1704 while (*pattern != wxT('\0'))
3f4a0c5b
VZ
1705 pattern++;
1706 }
1707 break;
223d09f6 1708 case wxT('['):
3f4a0c5b
VZ
1709 pattern++;
1710 repeat:
223d09f6 1711 if ((*pattern == wxT('\0')) || (*pattern == wxT(']'))) {
3f4a0c5b
VZ
1712 done = TRUE;
1713 break;
1714 }
223d09f6 1715 if (*pattern == wxT('\\')) {
3f4a0c5b 1716 pattern++;
223d09f6 1717 if (*pattern == wxT('\0')) {
3f4a0c5b
VZ
1718 done = TRUE;
1719 break;
1720 }
1721 }
223d09f6 1722 if (*(pattern + 1) == wxT('-')) {
3f4a0c5b
VZ
1723 c = *pattern;
1724 pattern += 2;
223d09f6 1725 if (*pattern == wxT(']')) {
3f4a0c5b
VZ
1726 done = TRUE;
1727 break;
1728 }
223d09f6 1729 if (*pattern == wxT('\\')) {
3f4a0c5b 1730 pattern++;
223d09f6 1731 if (*pattern == wxT('\0')) {
3f4a0c5b
VZ
1732 done = TRUE;
1733 break;
1734 }
1735 }
1736 if ((*str < c) || (*str > *pattern)) {
1737 pattern++;
1738 goto repeat;
1739 }
1740 } else if (*pattern != *str) {
1741 pattern++;
1742 goto repeat;
1743 }
1744 pattern++;
223d09f6
KB
1745 while ((*pattern != wxT(']')) && (*pattern != wxT('\0'))) {
1746 if ((*pattern == wxT('\\')) && (*(pattern + 1) != wxT('\0')))
3f4a0c5b
VZ
1747 pattern++;
1748 pattern++;
1749 }
223d09f6 1750 if (*pattern != wxT('\0')) {
3f4a0c5b
VZ
1751 pattern++, str++;
1752 }
1753 break;
223d09f6 1754 case wxT('?'):
3f4a0c5b
VZ
1755 pattern++;
1756 str++;
1757 break;
1758 case OB:
1759 pattern++;
223d09f6 1760 while ((*pattern != CB) && (*pattern != wxT('\0'))) {
3f4a0c5b
VZ
1761 cp = str;
1762 ok = TRUE;
223d09f6
KB
1763 while (ok && (*cp != wxT('\0')) && (*pattern != wxT('\0'))
1764 && (*pattern != wxT(',')) && (*pattern != CB)) {
1765 if (*pattern == wxT('\\'))
3f4a0c5b
VZ
1766 pattern++;
1767 ok = (*pattern++ == *cp++);
1768 }
223d09f6 1769 if (*pattern == wxT('\0')) {
3f4a0c5b
VZ
1770 ok = FALSE;
1771 done = TRUE;
1772 break;
1773 } else if (ok) {
1774 str = cp;
223d09f6
KB
1775 while ((*pattern != CB) && (*pattern != wxT('\0'))) {
1776 if (*++pattern == wxT('\\')) {
3f4a0c5b
VZ
1777 if (*++pattern == CB)
1778 pattern++;
1779 }
1780 }
1781 } else {
223d09f6
KB
1782 while (*pattern!=CB && *pattern!=wxT(',') && *pattern!=wxT('\0')) {
1783 if (*++pattern == wxT('\\')) {
1784 if (*++pattern == CB || *pattern == wxT(','))
3f4a0c5b
VZ
1785 pattern++;
1786 }
1787 }
1788 }
223d09f6 1789 if (*pattern != wxT('\0'))
3f4a0c5b
VZ
1790 pattern++;
1791 }
1792 break;
1793 default:
1794 if (*str == *pattern) {
1795 str++, pattern++;
1796 } else {
1797 done = TRUE;
1798 }
1799 }
7f555861 1800 }
223d09f6 1801 while (*pattern == wxT('*'))
3f4a0c5b 1802 pattern++;
223d09f6 1803 return ((*str == wxT('\0')) && (*pattern == wxT('\0')));
7f555861 1804};
fd3f686c 1805
dfcb1ae0 1806#endif
7f555861 1807
3f4a0c5b 1808#ifdef __VISUALC__
fd3f686c 1809 #pragma warning(default:4706) // assignment within conditional expression
53c6e7cc 1810#endif // VC++