]> git.saurik.com Git - wxWidgets.git/blame - src/common/filename.cpp
Only compile wxStd{Input,Output}Stream if wxUSE_STREAMS==1.
[wxWidgets.git] / src / common / filename.cpp
CommitLineData
df5ddbca 1/////////////////////////////////////////////////////////////////////////////
097ead30
VZ
2// Name: src/common/filename.cpp
3// Purpose: wxFileName - encapsulates a file path
844f90fb 4// Author: Robert Roebling, Vadim Zeitlin
df5ddbca
RR
5// Modified by:
6// Created: 28.12.2000
7// RCS-ID: $Id$
8// Copyright: (c) 2000 Robert Roebling
65571936 9// Licence: wxWindows licence
df5ddbca
RR
10/////////////////////////////////////////////////////////////////////////////
11
04c943b1
VZ
12/*
13 Here are brief descriptions of the filename formats supported by this class:
14
2bc60417
RR
15 wxPATH_UNIX: standard Unix format, used under Darwin as well, absolute file
16 names have the form:
04c943b1
VZ
17 /dir1/dir2/.../dirN/filename, "." and ".." stand for the
18 current and parent directory respectively, "~" is parsed as the
19 user HOME and "~username" as the HOME of that user
20
2bc60417 21 wxPATH_DOS: DOS/Windows format, absolute file names have the form:
04c943b1
VZ
22 drive:\dir1\dir2\...\dirN\filename.ext where drive is a single
23 letter. "." and ".." as for Unix but no "~".
24
e01a788e
VZ
25 There are also UNC names of the form \\share\fullpath and
26 MSW unique volume names of the form \\?\Volume{GUID}\fullpath.
27
28 The latter provide a uniform way to access a volume regardless of
29 its current mount point, i.e. you can change a volume's mount
30 point from D: to E:, or even remove it, and still be able to
31 access it through its unique volume name. More on the subject can
32 be found in MSDN's article "Naming a Volume" that is currently at
33 http://msdn.microsoft.com/en-us/library/aa365248(VS.85).aspx.
34
04c943b1 35
ae4d7004 36 wxPATH_MAC: Mac OS 8/9 and Mac OS X under CodeWarrior 7 format, absolute file
2bc60417 37 names have the form
04c943b1
VZ
38 volume:dir1:...:dirN:filename
39 and the relative file names are either
40 :dir1:...:dirN:filename
41 or just
42 filename
43 (although :filename works as well).
a385b5df 44 Since the volume is just part of the file path, it is not
353f41cb 45 treated like a separate entity as it is done under DOS and
90a68369 46 VMS, it is just treated as another dir.
04c943b1
VZ
47
48 wxPATH_VMS: VMS native format, absolute file names have the form
49 <device>:[dir1.dir2.dir3]file.txt
50 or
51 <device>:[000000.dir1.dir2.dir3]file.txt
52
53 the <device> is the physical device (i.e. disk). 000000 is the
54 root directory on the device which can be omitted.
55
56 Note that VMS uses different separators unlike Unix:
57 : always after the device. If the path does not contain : than
58 the default (the device of the current directory) is assumed.
ba623ba2 59 [ start of directory specification
04c943b1
VZ
60 . separator between directory and subdirectory
61 ] between directory and file
62 */
63
097ead30
VZ
64// ============================================================================
65// declarations
66// ============================================================================
67
68// ----------------------------------------------------------------------------
69// headers
70// ----------------------------------------------------------------------------
71
df5ddbca
RR
72// For compilers that support precompilation, includes "wx.h".
73#include "wx/wxprec.h"
74
75#ifdef __BORLANDC__
0b9ab0bd 76#pragma hdrstop
df5ddbca
RR
77#endif
78
79#ifndef WX_PRECOMP
57bd4c60
WS
80 #ifdef __WXMSW__
81 #include "wx/msw/wrapwin.h" // For GetShort/LongPathName
82 #endif
ad9835c9
WS
83 #include "wx/dynarray.h"
84 #include "wx/intl.h"
85 #include "wx/log.h"
de6185e2 86 #include "wx/utils.h"
0bf751e7 87 #include "wx/crt.h"
df5ddbca
RR
88#endif
89
90#include "wx/filename.h"
b70a2866 91#include "wx/private/filename.h"
df5ddbca 92#include "wx/tokenzr.h"
844f90fb 93#include "wx/config.h" // for wxExpandEnvVars
35a6691a 94#include "wx/dynlib.h"
110c5094 95#include "wx/dir.h"
df5ddbca 96
57bd4c60
WS
97#if defined(__WIN32__) && defined(__MINGW32__)
98 #include "wx/msw/gccpriv.h"
951cd180
VZ
99#endif
100
142ae7b3 101#ifdef __WXMSW__
1c193821
JS
102#include "wx/msw/private.h"
103#endif
104
76a5e5d2 105#if defined(__WXMAC__)
c933e267 106 #include "wx/osx/private.h" // includes mac headers
76a5e5d2
SC
107#endif
108
951cd180
VZ
109// utime() is POSIX so should normally be available on all Unices
110#ifdef __UNIX_LIKE__
0b9ab0bd
RL
111#include <sys/types.h>
112#include <utime.h>
113#include <sys/stat.h>
114#include <unistd.h>
9e9b65c1
JS
115#endif
116
444d61ba
VS
117#ifdef __DJGPP__
118#include <unistd.h>
119#endif
120
01d981ec 121#ifdef __MWERKS__
31907d03
SC
122#ifdef __MACH__
123#include <sys/types.h>
124#include <utime.h>
125#include <sys/stat.h>
126#include <unistd.h>
127#else
0b9ab0bd
RL
128#include <stat.h>
129#include <unistd.h>
130#include <unix.h>
01d981ec 131#endif
31907d03 132#endif
01d981ec 133
d9f54bb0 134#ifdef __WATCOMC__
0b9ab0bd
RL
135#include <io.h>
136#include <sys/utime.h>
137#include <sys/stat.h>
d9f54bb0
VS
138#endif
139
24eb81cb
DW
140#ifdef __VISAGECPP__
141#ifndef MAX_PATH
142#define MAX_PATH 256
143#endif
144#endif
145
01c9a906 146#ifdef __EMX__
5d66debf 147#include <os2.h>
01c9a906
SN
148#define MAX_PATH _MAX_PATH
149#endif
150
23b8a262 151
bd08f2f7 152#if wxUSE_LONGLONG
060668a1 153extern const wxULongLong wxInvalidSize = (unsigned)-1;
bd08f2f7 154#endif // wxUSE_LONGLONG
23b8a262 155
85b1997c
VZ
156#ifdef __WIN32__
157 // this define is missing from VC6 headers
158 #ifndef INVALID_FILE_ATTRIBUTES
159 #define INVALID_FILE_ATTRIBUTES ((DWORD)-1)
160 #endif
161#endif // __WIN32__
162
7b611a3a
VZ
163namespace
164{
23b8a262 165
951cd180
VZ
166// ----------------------------------------------------------------------------
167// private classes
168// ----------------------------------------------------------------------------
169
170// small helper class which opens and closes the file - we use it just to get
171// a file handle for the given file name to pass it to some Win32 API function
c67d6888 172#if defined(__WIN32__) && !defined(__WXMICROWIN__)
951cd180
VZ
173
174class wxFileHandle
175{
176public:
6dbb903b
VZ
177 enum OpenMode
178 {
f3c74c8d
VZ
179 ReadAttr,
180 WriteAttr
6dbb903b
VZ
181 };
182
6bc176b4 183 wxFileHandle(const wxString& filename, OpenMode mode, int flags = 0)
951cd180 184 {
f3c74c8d
VZ
185 // be careful and use FILE_{READ,WRITE}_ATTRIBUTES here instead of the
186 // usual GENERIC_{READ,WRITE} as we don't want the file access time to
187 // be changed when we open it because this class is used for setting
188 // access time (see #10567)
951cd180
VZ
189 m_hFile = ::CreateFile
190 (
e0a050e3 191 filename.fn_str(), // name
f3c74c8d
VZ
192 mode == ReadAttr ? FILE_READ_ATTRIBUTES // access mask
193 : FILE_WRITE_ATTRIBUTES,
54bcff35
VZ
194 FILE_SHARE_READ | // sharing mode
195 FILE_SHARE_WRITE, // (allow everything)
6dbb903b
VZ
196 NULL, // no secutity attr
197 OPEN_EXISTING, // creation disposition
6bc176b4 198 flags, // flags
6dbb903b 199 NULL // no template file
951cd180
VZ
200 );
201
202 if ( m_hFile == INVALID_HANDLE_VALUE )
203 {
f3c74c8d 204 if ( mode == ReadAttr )
43b2d5e7 205 {
49a70977
VS
206 wxLogSysError(_("Failed to open '%s' for reading"),
207 filename.c_str());
43b2d5e7 208 }
49a70977 209 else
43b2d5e7 210 {
49a70977
VS
211 wxLogSysError(_("Failed to open '%s' for writing"),
212 filename.c_str());
43b2d5e7 213 }
951cd180
VZ
214 }
215 }
216
217 ~wxFileHandle()
218 {
219 if ( m_hFile != INVALID_HANDLE_VALUE )
220 {
221 if ( !::CloseHandle(m_hFile) )
222 {
223 wxLogSysError(_("Failed to close file handle"));
224 }
225 }
226 }
227
f363e05c 228 // return true only if the file could be opened successfully
951cd180
VZ
229 bool IsOk() const { return m_hFile != INVALID_HANDLE_VALUE; }
230
231 // get the handle
232 operator HANDLE() const { return m_hFile; }
233
234private:
235 HANDLE m_hFile;
236};
237
238#endif // __WIN32__
239
240// ----------------------------------------------------------------------------
241// private functions
242// ----------------------------------------------------------------------------
243
e2b87f38 244#if wxUSE_DATETIME && defined(__WIN32__) && !defined(__WXMICROWIN__)
951cd180
VZ
245
246// convert between wxDateTime and FILETIME which is a 64-bit value representing
247// the number of 100-nanosecond intervals since January 1, 1601.
248
d56e2b97 249static void ConvertFileTimeToWx(wxDateTime *dt, const FILETIME &ft)
951cd180 250{
752f10a8 251 FILETIME ftcopy = ft;
6dbb903b 252 FILETIME ftLocal;
752f10a8 253 if ( !::FileTimeToLocalFileTime(&ftcopy, &ftLocal) )
6dbb903b 254 {
9a83f860 255 wxLogLastError(wxT("FileTimeToLocalFileTime"));
6dbb903b 256 }
d56e2b97 257
6dbb903b
VZ
258 SYSTEMTIME st;
259 if ( !::FileTimeToSystemTime(&ftLocal, &st) )
260 {
9a83f860 261 wxLogLastError(wxT("FileTimeToSystemTime"));
6dbb903b 262 }
d56e2b97 263
6dbb903b
VZ
264 dt->Set(st.wDay, wxDateTime::Month(st.wMonth - 1), st.wYear,
265 st.wHour, st.wMinute, st.wSecond, st.wMilliseconds);
951cd180
VZ
266}
267
d56e2b97 268static void ConvertWxToFileTime(FILETIME *ft, const wxDateTime& dt)
951cd180 269{
6dbb903b
VZ
270 SYSTEMTIME st;
271 st.wDay = dt.GetDay();
ad816476
WS
272 st.wMonth = (WORD)(dt.GetMonth() + 1);
273 st.wYear = (WORD)dt.GetYear();
6dbb903b
VZ
274 st.wHour = dt.GetHour();
275 st.wMinute = dt.GetMinute();
276 st.wSecond = dt.GetSecond();
277 st.wMilliseconds = dt.GetMillisecond();
278
279 FILETIME ftLocal;
280 if ( !::SystemTimeToFileTime(&st, &ftLocal) )
281 {
9a83f860 282 wxLogLastError(wxT("SystemTimeToFileTime"));
6dbb903b 283 }
d56e2b97 284
6dbb903b
VZ
285 if ( !::LocalFileTimeToFileTime(&ftLocal, ft) )
286 {
9a83f860 287 wxLogLastError(wxT("LocalFileTimeToFileTime"));
6dbb903b 288 }
951cd180
VZ
289}
290
e2b87f38 291#endif // wxUSE_DATETIME && __WIN32__
951cd180 292
67c34f64
VZ
293// return a string with the volume par
294static wxString wxGetVolumeString(const wxString& volume, wxPathFormat format)
295{
296 wxString path;
297
298 if ( !volume.empty() )
299 {
6ce27aa2
VZ
300 format = wxFileName::GetFormat(format);
301
67c34f64
VZ
302 // Special Windows UNC paths hack, part 2: undo what we did in
303 // SplitPath() and make an UNC path if we have a drive which is not a
304 // single letter (hopefully the network shares can't be one letter only
305 // although I didn't find any authoritative docs on this)
306 if ( format == wxPATH_DOS && volume.length() > 1 )
307 {
e01a788e
VZ
308 // We also have to check for Windows unique volume names here and
309 // return it with '\\?\' prepended to it
310 if ( wxFileName::IsMSWUniqueVolumeNamePath("\\\\?\\" + volume + "\\",
311 format) )
312 {
313 path << "\\\\?\\" << volume;
314 }
315 else
316 {
317 // it must be a UNC path
318 path << wxFILE_SEP_PATH_DOS << wxFILE_SEP_PATH_DOS << volume;
319 }
67c34f64
VZ
320 }
321 else if ( format == wxPATH_DOS || format == wxPATH_VMS )
322 {
323 path << volume << wxFileName::GetVolumeSeparator(format);
324 }
325 // else ignore
326 }
327
328 return path;
329}
330
7b611a3a
VZ
331// return true if the character is a DOS path separator i.e. either a slash or
332// a backslash
333inline bool IsDOSPathSep(wxUniChar ch)
334{
335 return ch == wxFILE_SEP_PATH_DOS || ch == wxFILE_SEP_PATH_UNIX;
336}
337
9e1c7236
VZ
338// return true if the format used is the DOS/Windows one and the string looks
339// like a UNC path
340static bool IsUNCPath(const wxString& path, wxPathFormat format)
341{
342 return format == wxPATH_DOS &&
343 path.length() >= 4 && // "\\a" can't be a UNC path
7b611a3a
VZ
344 IsDOSPathSep(path[0u]) &&
345 IsDOSPathSep(path[1u]) &&
346 !IsDOSPathSep(path[2u]);
9e1c7236
VZ
347}
348
e01a788e
VZ
349// ----------------------------------------------------------------------------
350// private constants
351// ----------------------------------------------------------------------------
352
353// length of \\?\Volume{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}\ string
354static const size_t wxMSWUniqueVolumePrefixLength = 49;
355
7b611a3a
VZ
356} // anonymous namespace
357
097ead30
VZ
358// ============================================================================
359// implementation
360// ============================================================================
361
362// ----------------------------------------------------------------------------
844f90fb 363// wxFileName construction
097ead30 364// ----------------------------------------------------------------------------
df5ddbca 365
a35b27b1
RR
366void wxFileName::Assign( const wxFileName &filepath )
367{
04c943b1 368 m_volume = filepath.GetVolume();
844f90fb 369 m_dirs = filepath.GetDirs();
04c943b1
VZ
370 m_name = filepath.GetName();
371 m_ext = filepath.GetExt();
a2fa5040 372 m_relative = filepath.m_relative;
dfecbee5 373 m_hasExt = filepath.m_hasExt;
df5ddbca
RR
374}
375
04c943b1
VZ
376void wxFileName::Assign(const wxString& volume,
377 const wxString& path,
378 const wxString& name,
379 const wxString& ext,
dfecbee5 380 bool hasExt,
9e1c7236 381 wxPathFormat format)
a7b51bc8 382{
9e1c7236
VZ
383 // we should ignore paths which look like UNC shares because we already
384 // have the volume here and the UNC notation (\\server\path) is only valid
385 // for paths which don't start with a volume, so prevent SetPath() from
386 // recognizing "\\foo\bar" in "c:\\foo\bar" as an UNC path
387 //
388 // note also that this is a rather ugly way to do what we want (passing
389 // some kind of flag telling to ignore UNC paths to SetPath() would be
390 // better) but this is the safest thing to do to avoid breaking backwards
391 // compatibility in 2.8
392 if ( IsUNCPath(path, format) )
393 {
394 // remove one of the 2 leading backslashes to ensure that it's not
395 // recognized as an UNC path by SetPath()
396 wxString pathNonUNC(path, 1, wxString::npos);
397 SetPath(pathNonUNC, format);
398 }
399 else // no UNC complications
400 {
401 SetPath(path, format);
402 }
a7b51bc8
RR
403
404 m_volume = volume;
405 m_ext = ext;
406 m_name = name;
dfecbee5
VZ
407
408 m_hasExt = hasExt;
a7b51bc8
RR
409}
410
f1e77933 411void wxFileName::SetPath( const wxString& pathOrig, wxPathFormat format )
df5ddbca 412{
844f90fb 413 m_dirs.Clear();
90a68369 414
f1e77933 415 if ( pathOrig.empty() )
df5ddbca 416 {
f1e77933
VZ
417 // no path at all
418 m_relative = true;
a2fa5040 419
f1e77933
VZ
420 return;
421 }
90a68369 422
f1e77933 423 format = GetFormat( format );
a2fa5040 424
f1e77933
VZ
425 // 0) deal with possible volume part first
426 wxString volume,
427 path;
428 SplitVolume(pathOrig, &volume, &path, format);
429 if ( !volume.empty() )
430 {
431 m_relative = false;
a2fa5040 432
f1e77933
VZ
433 SetVolume(volume);
434 }
f363e05c 435
f1e77933 436 // 1) Determine if the path is relative or absolute.
0f506ded
VZ
437
438 if ( path.empty() )
439 {
440 // we had only the volume
441 return;
442 }
443
f1e77933 444 wxChar leadingChar = path[0u];
a2fa5040 445
f1e77933
VZ
446 switch (format)
447 {
448 case wxPATH_MAC:
449 m_relative = leadingChar == wxT(':');
450
451 // We then remove a leading ":". The reason is in our
452 // storage form for relative paths:
453 // ":dir:file.txt" actually means "./dir/file.txt" in
454 // DOS notation and should get stored as
455 // (relative) (dir) (file.txt)
456 // "::dir:file.txt" actually means "../dir/file.txt"
457 // stored as (relative) (..) (dir) (file.txt)
458 // This is important only for the Mac as an empty dir
459 // actually means <UP>, whereas under DOS, double
460 // slashes can be ignored: "\\\\" is the same as "\\".
461 if (m_relative)
462 path.erase( 0, 1 );
463 break;
a2fa5040 464
f1e77933
VZ
465 case wxPATH_VMS:
466 // TODO: what is the relative path format here?
467 m_relative = false;
468 break;
90a68369 469
f1e77933 470 default:
9a83f860 471 wxFAIL_MSG( wxT("Unknown path format") );
f1e77933 472 // !! Fall through !!
90a68369 473
f1e77933 474 case wxPATH_UNIX:
be5be16a 475 m_relative = leadingChar != wxT('/');
f1e77933 476 break;
353f41cb 477
f1e77933
VZ
478 case wxPATH_DOS:
479 m_relative = !IsPathSeparator(leadingChar, format);
480 break;
844f90fb 481
df5ddbca 482 }
f1e77933
VZ
483
484 // 2) Break up the path into its members. If the original path
485 // was just "/" or "\\", m_dirs will be empty. We know from
486 // the m_relative field, if this means "nothing" or "root dir".
487
488 wxStringTokenizer tn( path, GetPathSeparators(format) );
489
490 while ( tn.HasMoreTokens() )
a7b51bc8 491 {
f1e77933
VZ
492 wxString token = tn.GetNextToken();
493
494 // Remove empty token under DOS and Unix, interpret them
495 // as .. under Mac.
496 if (token.empty())
497 {
498 if (format == wxPATH_MAC)
499 m_dirs.Add( wxT("..") );
500 // else ignore
501 }
502 else
503 {
504 m_dirs.Add( token );
505 }
a7b51bc8 506 }
844f90fb
VZ
507}
508
509void wxFileName::Assign(const wxString& fullpath,
510 wxPathFormat format)
511{
04c943b1 512 wxString volume, path, name, ext;
dfecbee5
VZ
513 bool hasExt;
514 SplitPath(fullpath, &volume, &path, &name, &ext, &hasExt, format);
844f90fb 515
dfecbee5 516 Assign(volume, path, name, ext, hasExt, format);
844f90fb
VZ
517}
518
81f25632 519void wxFileName::Assign(const wxString& fullpathOrig,
844f90fb
VZ
520 const wxString& fullname,
521 wxPathFormat format)
522{
81f25632
VZ
523 // always recognize fullpath as directory, even if it doesn't end with a
524 // slash
525 wxString fullpath = fullpathOrig;
69858116 526 if ( !fullpath.empty() && !wxEndsWithPathSeparator(fullpath) )
81f25632 527 {
33b97389 528 fullpath += GetPathSeparator(format);
81f25632
VZ
529 }
530
52dbd056 531 wxString volume, path, name, ext;
dfecbee5 532 bool hasExt;
81f25632 533
4b6a582b
VZ
534 // do some consistency checks: the name should be really just the filename
535 // and the path should be really just a path
dfecbee5 536 wxString volDummy, pathDummy, nameDummy, extDummy;
81f25632 537
dfecbee5 538 SplitPath(fullname, &volDummy, &pathDummy, &name, &ext, &hasExt, format);
81f25632 539
dfecbee5 540 wxASSERT_MSG( volDummy.empty() && pathDummy.empty(),
9a83f860 541 wxT("the file name shouldn't contain the path") );
81f25632
VZ
542
543 SplitPath(fullpath, &volume, &path, &nameDummy, &extDummy, format);
544
4c914788
JJ
545#ifndef __VMS
546 // This test makes no sense on an OpenVMS system.
547 wxASSERT_MSG( nameDummy.empty() && extDummy.empty(),
9a83f860 548 wxT("the path shouldn't contain file name nor extension") );
4c914788 549#endif
dfecbee5 550 Assign(volume, path, name, ext, hasExt, format);
52dbd056
VZ
551}
552
4c2deb19
VZ
553void wxFileName::Assign(const wxString& pathOrig,
554 const wxString& name,
555 const wxString& ext,
556 wxPathFormat format)
557{
558 wxString volume,
559 path;
560 SplitVolume(pathOrig, &volume, &path, format);
561
562 Assign(volume, path, name, ext, format);
563}
564
52dbd056
VZ
565void wxFileName::AssignDir(const wxString& dir, wxPathFormat format)
566{
b494c48b 567 Assign(dir, wxEmptyString, format);
844f90fb
VZ
568}
569
570void wxFileName::Clear()
571{
572 m_dirs.Clear();
04c943b1
VZ
573
574 m_volume =
844f90fb
VZ
575 m_name =
576 m_ext = wxEmptyString;
fb969475
VZ
577
578 // we don't have any absolute path for now
f363e05c 579 m_relative = true;
dfecbee5
VZ
580
581 // nor any extension
582 m_hasExt = false;
844f90fb
VZ
583}
584
585/* static */
520200fd 586wxFileName wxFileName::FileName(const wxString& file, wxPathFormat format)
844f90fb 587{
520200fd 588 return wxFileName(file, format);
844f90fb
VZ
589}
590
591/* static */
520200fd 592wxFileName wxFileName::DirName(const wxString& dir, wxPathFormat format)
844f90fb
VZ
593{
594 wxFileName fn;
520200fd 595 fn.AssignDir(dir, format);
844f90fb 596 return fn;
df5ddbca
RR
597}
598
844f90fb
VZ
599// ----------------------------------------------------------------------------
600// existence tests
601// ----------------------------------------------------------------------------
602
8e41796c 603bool wxFileName::FileExists() const
df5ddbca 604{
a35b27b1
RR
605 return wxFileName::FileExists( GetFullPath() );
606}
607
5bb59666
VZ
608/* static */
609bool wxFileName::FileExists( const wxString &filePath )
a35b27b1 610{
85b1997c 611#if defined(__WXPALMOS__)
5bb59666
VZ
612 return false;
613#elif defined(__WIN32__) && !defined(__WXMICROWIN__)
614 // we must use GetFileAttributes() instead of the ANSI C functions because
615 // it can cope with network (UNC) paths unlike them
616 DWORD ret = ::GetFileAttributes(filePath.fn_str());
617
618 return (ret != INVALID_FILE_ATTRIBUTES) && !(ret & FILE_ATTRIBUTE_DIRECTORY);
619#else // !__WIN32__
620 #ifndef S_ISREG
621 #define S_ISREG(mode) ((mode) & S_IFREG)
622 #endif
623 wxStructStat st;
766fc092
SC
624
625 return (wxStat( filePath, &st) == 0 && S_ISREG(st.st_mode))
5bb59666
VZ
626#ifdef __OS2__
627 || (errno == EACCES) // if access is denied something with that name
628 // exists and is opened in exclusive mode.
629#endif
630 ;
5bb59666 631#endif // __WIN32__/!__WIN32__
df5ddbca
RR
632}
633
8e41796c 634bool wxFileName::DirExists() const
df5ddbca 635{
db759dde 636 return wxFileName::DirExists( GetPath() );
a35b27b1
RR
637}
638
5bb59666
VZ
639/* static */
640bool wxFileName::DirExists( const wxString &dirPath )
a35b27b1 641{
5bb59666
VZ
642 wxString strPath(dirPath);
643
644#if defined(__WINDOWS__) || defined(__OS2__)
645 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
646 // so remove all trailing backslashes from the path - but don't do this for
e01a788e
VZ
647 // the paths "d:\" (which are different from "d:"), for just "\" or for
648 // windows unique volume names ("\\?\Volume{GUID}\")
5bb59666
VZ
649 while ( wxEndsWithPathSeparator(strPath) )
650 {
651 size_t len = strPath.length();
e01a788e
VZ
652 if ( len == 1 || (len == 3 && strPath[len - 2] == wxT(':')) ||
653 (len == wxMSWUniqueVolumePrefixLength &&
654 wxFileName::IsMSWUniqueVolumeNamePath(strPath)))
655 {
5bb59666 656 break;
e01a788e 657 }
5bb59666
VZ
658
659 strPath.Truncate(len - 1);
660 }
661#endif // __WINDOWS__
662
663#ifdef __OS2__
664 // OS/2 can't handle "d:", it wants either "d:\" or "d:."
665 if (strPath.length() == 2 && strPath[1u] == wxT(':'))
666 strPath << wxT('.');
667#endif
668
669#if defined(__WXPALMOS__)
670 return false;
671#elif defined(__WIN32__) && !defined(__WXMICROWIN__)
672 // stat() can't cope with network paths
673 DWORD ret = ::GetFileAttributes(strPath.fn_str());
674
675 return (ret != INVALID_FILE_ATTRIBUTES) && (ret & FILE_ATTRIBUTE_DIRECTORY);
676#elif defined(__OS2__)
677 FILESTATUS3 Info = {{0}};
678 APIRET rc = ::DosQueryPathInfo((PSZ)(WXSTRINGCAST strPath), FIL_STANDARD,
679 (void*) &Info, sizeof(FILESTATUS3));
680
681 return ((rc == NO_ERROR) && (Info.attrFile & FILE_DIRECTORY)) ||
682 (rc == ERROR_SHARING_VIOLATION);
683 // If we got a sharing violation, there must be something with this name.
684#else // !__WIN32__
685
686 wxStructStat st;
687#ifndef __VISAGECPP__
766fc092 688 return wxStat(strPath, &st) == 0 && ((st.st_mode & S_IFMT) == S_IFDIR);
5bb59666
VZ
689#else
690 // S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
766fc092 691 return wxStat(strPath, &st) == 0 && (st.st_mode == S_IFDIR);
5bb59666
VZ
692#endif
693
694#endif // __WIN32__/!__WIN32__
df5ddbca
RR
695}
696
844f90fb
VZ
697// ----------------------------------------------------------------------------
698// CWD and HOME stuff
699// ----------------------------------------------------------------------------
700
6f91bc33 701void wxFileName::AssignCwd(const wxString& volume)
df5ddbca 702{
6f91bc33 703 AssignDir(wxFileName::GetCwd(volume));
a35b27b1
RR
704}
705
844f90fb 706/* static */
6f91bc33 707wxString wxFileName::GetCwd(const wxString& volume)
a35b27b1 708{
6f91bc33
VZ
709 // if we have the volume, we must get the current directory on this drive
710 // and to do this we have to chdir to this volume - at least under Windows,
711 // I don't know how to get the current drive on another volume elsewhere
712 // (TODO)
713 wxString cwdOld;
714 if ( !volume.empty() )
715 {
716 cwdOld = wxGetCwd();
717 SetCwd(volume + GetVolumeSeparator());
718 }
719
720 wxString cwd = ::wxGetCwd();
721
722 if ( !volume.empty() )
723 {
724 SetCwd(cwdOld);
725 }
ae4d7004 726
6f91bc33 727 return cwd;
a35b27b1
RR
728}
729
d9e80dce 730bool wxFileName::SetCwd() const
a35b27b1 731{
db759dde 732 return wxFileName::SetCwd( GetPath() );
df5ddbca
RR
733}
734
a35b27b1 735bool wxFileName::SetCwd( const wxString &cwd )
df5ddbca 736{
a35b27b1 737 return ::wxSetWorkingDirectory( cwd );
df5ddbca
RR
738}
739
a35b27b1
RR
740void wxFileName::AssignHomeDir()
741{
844f90fb 742 AssignDir(wxFileName::GetHomeDir());
a35b27b1 743}
844f90fb 744
a35b27b1
RR
745wxString wxFileName::GetHomeDir()
746{
747 return ::wxGetHomeDir();
748}
844f90fb 749
68351053 750
b70a2866
MW
751// ----------------------------------------------------------------------------
752// CreateTempFileName
753// ----------------------------------------------------------------------------
754
755#if wxUSE_FILE || wxUSE_FFILE
756
757
758#if !defined wx_fdopen && defined HAVE_FDOPEN
759 #define wx_fdopen fdopen
760#endif
761
762// NB: GetTempFileName() under Windows creates the file, so using
763// O_EXCL there would fail
764#ifdef __WINDOWS__
765 #define wxOPEN_EXCL 0
766#else
767 #define wxOPEN_EXCL O_EXCL
768#endif
769
770
771#ifdef wxOpenOSFHandle
772#define WX_HAVE_DELETE_ON_CLOSE
773// On Windows create a file with the FILE_FLAGS_DELETE_ON_CLOSE flags.
774//
775static int wxOpenWithDeleteOnClose(const wxString& filename)
df5ddbca 776{
b70a2866
MW
777 DWORD access = GENERIC_READ | GENERIC_WRITE;
778
779 DWORD disposition = OPEN_ALWAYS;
780
781 DWORD attributes = FILE_ATTRIBUTE_TEMPORARY |
782 FILE_FLAG_DELETE_ON_CLOSE;
783
e0a050e3 784 HANDLE h = ::CreateFile(filename.fn_str(), access, 0, NULL,
b70a2866
MW
785 disposition, attributes, NULL);
786
693bfcaf 787 return wxOpenOSFHandle(h, wxO_BINARY);
ade35f11 788}
b70a2866 789#endif // wxOpenOSFHandle
ade35f11 790
b70a2866
MW
791
792// Helper to open the file
793//
794static int wxTempOpen(const wxString& path, bool *deleteOnClose)
795{
796#ifdef WX_HAVE_DELETE_ON_CLOSE
797 if (*deleteOnClose)
798 return wxOpenWithDeleteOnClose(path);
799#endif
800
801 *deleteOnClose = false;
802
803 return wxOpen(path, wxO_BINARY | O_RDWR | O_CREAT | wxOPEN_EXCL, 0600);
804}
805
806
807#if wxUSE_FFILE
808// Helper to open the file and attach it to the wxFFile
809//
810static bool wxTempOpen(wxFFile *file, const wxString& path, bool *deleteOnClose)
ade35f11 811{
b70a2866
MW
812#ifndef wx_fdopen
813 *deleteOnClose = false;
9a83f860 814 return file->Open(path, wxT("w+b"));
b70a2866
MW
815#else // wx_fdopen
816 int fd = wxTempOpen(path, deleteOnClose);
693bfcaf 817 if (fd == -1)
b70a2866
MW
818 return false;
819 file->Attach(wx_fdopen(fd, "w+b"));
820 return file->IsOpened();
821#endif // wx_fdopen
822}
823#endif // wxUSE_FFILE
824
825
826#if !wxUSE_FILE
827 #define WXFILEARGS(x, y) y
828#elif !wxUSE_FFILE
829 #define WXFILEARGS(x, y) x
830#else
831 #define WXFILEARGS(x, y) x, y
832#endif
833
834
835// Implementation of wxFileName::CreateTempFileName().
836//
837static wxString wxCreateTempImpl(
838 const wxString& prefix,
839 WXFILEARGS(wxFile *fileTemp, wxFFile *ffileTemp),
840 bool *deleteOnClose = NULL)
841{
842#if wxUSE_FILE && wxUSE_FFILE
843 wxASSERT(fileTemp == NULL || ffileTemp == NULL);
844#endif
ade35f11 845 wxString path, dir, name;
b70a2866
MW
846 bool wantDeleteOnClose = false;
847
848 if (deleteOnClose)
849 {
850 // set the result to false initially
851 wantDeleteOnClose = *deleteOnClose;
852 *deleteOnClose = false;
853 }
854 else
855 {
856 // easier if it alwasys points to something
857 deleteOnClose = &wantDeleteOnClose;
858 }
ade35f11
VZ
859
860 // use the directory specified by the prefix
b70a2866 861 wxFileName::SplitPath(prefix, &dir, &name, NULL /* extension */);
ade35f11 862
6091caf0
JS
863 if (dir.empty())
864 {
8d7d6dea 865 dir = wxFileName::GetTempDir();
6091caf0
JS
866 }
867
1c193821 868#if defined(__WXWINCE__)
f05ba7ff 869 path = dir + wxT("\\") + name;
1c193821 870 int i = 1;
b70a2866 871 while (wxFileName::FileExists(path))
1c193821 872 {
f05ba7ff 873 path = dir + wxT("\\") + name ;
1c193821
JS
874 path << i;
875 i ++;
876 }
ade35f11 877
1c193821 878#elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
e0a050e3
VS
879 if ( !::GetTempFileName(dir.fn_str(), name.fn_str(), 0,
880 wxStringBuffer(path, MAX_PATH + 1)) )
ade35f11 881 {
9a83f860 882 wxLogLastError(wxT("GetTempFileName"));
ade35f11
VZ
883
884 path.clear();
885 }
ade35f11 886
5a3912f2 887#else // !Windows
ade35f11
VZ
888 path = dir;
889
890 if ( !wxEndsWithPathSeparator(dir) &&
891 (name.empty() || !wxIsPathSeparator(name[0u])) )
892 {
d9f54bb0 893 path += wxFILE_SEP_PATH;
ade35f11
VZ
894 }
895
896 path += name;
897
7070f55b 898#if defined(HAVE_MKSTEMP)
ade35f11 899 // scratch space for mkstemp()
9a83f860 900 path += wxT("XXXXXX");
ade35f11 901
74cf9763 902 // we need to copy the path to the buffer in which mkstemp() can modify it
86501081 903 wxCharBuffer buf(path.fn_str());
74cf9763
VZ
904
905 // cast is safe because the string length doesn't change
ca11abde 906 int fdTemp = mkstemp( (char*)(const char*) buf );
df22f860 907 if ( fdTemp == -1 )
ade35f11
VZ
908 {
909 // this might be not necessary as mkstemp() on most systems should have
910 // already done it but it doesn't hurt neither...
911 path.clear();
912 }
df22f860
VZ
913 else // mkstemp() succeeded
914 {
ca11abde 915 path = wxConvFile.cMB2WX( (const char*) buf );
a62848fd 916
b70a2866 917 #if wxUSE_FILE
df22f860
VZ
918 // avoid leaking the fd
919 if ( fileTemp )
920 {
921 fileTemp->Attach(fdTemp);
922 }
923 else
b70a2866
MW
924 #endif
925
926 #if wxUSE_FFILE
927 if ( ffileTemp )
928 {
929 #ifdef wx_fdopen
930 ffileTemp->Attach(wx_fdopen(fdTemp, "r+b"));
931 #else
9a83f860 932 ffileTemp->Open(path, wxT("r+b"));
b70a2866
MW
933 close(fdTemp);
934 #endif
935 }
936 else
937 #endif
938
df22f860
VZ
939 {
940 close(fdTemp);
941 }
942 }
ade35f11
VZ
943#else // !HAVE_MKSTEMP
944
945#ifdef HAVE_MKTEMP
946 // same as above
9a83f860 947 path += wxT("XXXXXX");
ade35f11 948
ca11abde 949 wxCharBuffer buf = wxConvFile.cWX2MB( path );
b70a2866 950 if ( !mktemp( (char*)(const char*) buf ) )
ade35f11
VZ
951 {
952 path.clear();
953 }
aed08d79
RR
954 else
955 {
ca11abde 956 path = wxConvFile.cMB2WX( (const char*) buf );
aed08d79 957 }
7070f55b 958#else // !HAVE_MKTEMP (includes __DOS__)
ade35f11 959 // generate the unique file name ourselves
68351053 960 #if !defined(__DOS__) && !defined(__PALMOS__) && (!defined(__MWERKS__) || defined(__DARWIN__) )
ade35f11 961 path << (unsigned int)getpid();
7070f55b 962 #endif
ade35f11
VZ
963
964 wxString pathTry;
965
966 static const size_t numTries = 1000;
967 for ( size_t n = 0; n < numTries; n++ )
968 {
969 // 3 hex digits is enough for numTries == 1000 < 4096
9a83f860 970 pathTry = path + wxString::Format(wxT("%.03x"), (unsigned int) n);
b70a2866 971 if ( !wxFileName::FileExists(pathTry) )
ade35f11
VZ
972 {
973 break;
974 }
975
976 pathTry.clear();
977 }
978
979 path = pathTry;
980#endif // HAVE_MKTEMP/!HAVE_MKTEMP
981
df22f860
VZ
982#endif // HAVE_MKSTEMP/!HAVE_MKSTEMP
983
984#endif // Windows/!Windows
985
986 if ( path.empty() )
987 {
988 wxLogSysError(_("Failed to create a temporary file name"));
989 }
b70a2866 990 else
df22f860 991 {
b70a2866
MW
992 bool ok = true;
993
df22f860 994 // open the file - of course, there is a race condition here, this is
ade35f11 995 // why we always prefer using mkstemp()...
b70a2866
MW
996 #if wxUSE_FILE
997 if ( fileTemp && !fileTemp->IsOpened() )
998 {
999 *deleteOnClose = wantDeleteOnClose;
1000 int fd = wxTempOpen(path, deleteOnClose);
1001 if (fd != -1)
1002 fileTemp->Attach(fd);
1003 else
1004 ok = false;
1005 }
1006 #endif
1007
1008 #if wxUSE_FFILE
1009 if ( ffileTemp && !ffileTemp->IsOpened() )
1010 {
1011 *deleteOnClose = wantDeleteOnClose;
1012 ok = wxTempOpen(ffileTemp, path, deleteOnClose);
1013 }
1014 #endif
1015
1016 if ( !ok )
ade35f11
VZ
1017 {
1018 // FIXME: If !ok here should we loop and try again with another
1019 // file name? That is the standard recourse if open(O_EXCL)
1020 // fails, though of course it should be protected against
1021 // possible infinite looping too.
1022
1023 wxLogError(_("Failed to open temporary file."));
1024
1025 path.clear();
1026 }
1027 }
ade35f11
VZ
1028
1029 return path;
df5ddbca
RR
1030}
1031
b70a2866
MW
1032
1033static bool wxCreateTempImpl(
1034 const wxString& prefix,
1035 WXFILEARGS(wxFile *fileTemp, wxFFile *ffileTemp),
1036 wxString *name)
1037{
1038 bool deleteOnClose = true;
1039
1040 *name = wxCreateTempImpl(prefix,
1041 WXFILEARGS(fileTemp, ffileTemp),
1042 &deleteOnClose);
1043
1044 bool ok = !name->empty();
1045
1046 if (deleteOnClose)
1047 name->clear();
1048#ifdef __UNIX__
1049 else if (ok && wxRemoveFile(*name))
1050 name->clear();
1051#endif
1052
1053 return ok;
1054}
1055
1056
1057static void wxAssignTempImpl(
1058 wxFileName *fn,
1059 const wxString& prefix,
1060 WXFILEARGS(wxFile *fileTemp, wxFFile *ffileTemp))
1061{
1062 wxString tempname;
1063 tempname = wxCreateTempImpl(prefix, WXFILEARGS(fileTemp, ffileTemp));
1064
1065 if ( tempname.empty() )
1066 {
1067 // error, failed to get temp file name
1068 fn->Clear();
1069 }
1070 else // ok
1071 {
1072 fn->Assign(tempname);
1073 }
1074}
1075
1076
1077void wxFileName::AssignTempFileName(const wxString& prefix)
1078{
1079 wxAssignTempImpl(this, prefix, WXFILEARGS(NULL, NULL));
1080}
1081
1082/* static */
1083wxString wxFileName::CreateTempFileName(const wxString& prefix)
1084{
1085 return wxCreateTempImpl(prefix, WXFILEARGS(NULL, NULL));
1086}
1087
1088#endif // wxUSE_FILE || wxUSE_FFILE
1089
1090
1091#if wxUSE_FILE
1092
1093wxString wxCreateTempFileName(const wxString& prefix,
1094 wxFile *fileTemp,
1095 bool *deleteOnClose)
1096{
1097 return wxCreateTempImpl(prefix, WXFILEARGS(fileTemp, NULL), deleteOnClose);
1098}
1099
1100bool wxCreateTempFile(const wxString& prefix,
1101 wxFile *fileTemp,
1102 wxString *name)
1103{
1104 return wxCreateTempImpl(prefix, WXFILEARGS(fileTemp, NULL), name);
1105}
1106
1107void wxFileName::AssignTempFileName(const wxString& prefix, wxFile *fileTemp)
1108{
1109 wxAssignTempImpl(this, prefix, WXFILEARGS(fileTemp, NULL));
1110}
1111
1112/* static */
1113wxString
1114wxFileName::CreateTempFileName(const wxString& prefix, wxFile *fileTemp)
1115{
1116 return wxCreateTempFileName(prefix, fileTemp);
1117}
1118
68351053
WS
1119#endif // wxUSE_FILE
1120
b70a2866
MW
1121
1122#if wxUSE_FFILE
1123
1124wxString wxCreateTempFileName(const wxString& prefix,
1125 wxFFile *fileTemp,
1126 bool *deleteOnClose)
1127{
1128 return wxCreateTempImpl(prefix, WXFILEARGS(NULL, fileTemp), deleteOnClose);
1129}
1130
1131bool wxCreateTempFile(const wxString& prefix,
1132 wxFFile *fileTemp,
1133 wxString *name)
1134{
1135 return wxCreateTempImpl(prefix, WXFILEARGS(NULL, fileTemp), name);
1136
1137}
1138
1139void wxFileName::AssignTempFileName(const wxString& prefix, wxFFile *fileTemp)
1140{
1141 wxAssignTempImpl(this, prefix, WXFILEARGS(NULL, fileTemp));
1142}
1143
1144/* static */
1145wxString
1146wxFileName::CreateTempFileName(const wxString& prefix, wxFFile *fileTemp)
1147{
1148 return wxCreateTempFileName(prefix, fileTemp);
1149}
1150
1151#endif // wxUSE_FFILE
1152
1153
844f90fb
VZ
1154// ----------------------------------------------------------------------------
1155// directory operations
1156// ----------------------------------------------------------------------------
1157
8758875e
VZ
1158// helper of GetTempDir(): check if the given directory exists and return it if
1159// it does or an empty string otherwise
1160namespace
8d7d6dea 1161{
8d7d6dea 1162
8758875e
VZ
1163wxString CheckIfDirExists(const wxString& dir)
1164{
1165 return wxFileName::DirExists(dir) ? dir : wxString();
1166}
1167
1168} // anonymous namespace
1169
1170wxString wxFileName::GetTempDir()
1171{
1172 // first try getting it from environment: this allows overriding the values
1173 // used by default if the user wants to create temporary files in another
1174 // directory
1175 wxString dir = CheckIfDirExists(wxGetenv("TMPDIR"));
1176 if ( dir.empty() )
8d7d6dea 1177 {
8758875e
VZ
1178 dir = CheckIfDirExists(wxGetenv("TMP"));
1179 if ( dir.empty() )
1180 dir = CheckIfDirExists(wxGetenv("TEMP"));
8d7d6dea 1181 }
8d7d6dea 1182
8758875e 1183 // if no environment variables are set, use the system default
8d7d6dea
JS
1184 if ( dir.empty() )
1185 {
8758875e
VZ
1186#if defined(__WXWINCE__)
1187 dir = CheckIfDirExists(wxT("\\temp"));
1188#elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
8d7d6dea
JS
1189 if ( !::GetTempPath(MAX_PATH, wxStringBuffer(dir, MAX_PATH + 1)) )
1190 {
9a83f860 1191 wxLogLastError(wxT("GetTempPath"));
8d7d6dea 1192 }
8758875e 1193#elif defined(__WXMAC__) && wxOSX_USE_CARBON
088a3642 1194 dir = wxMacFindFolderNoSeparator(short(kOnSystemDisk), kTemporaryFolderType, kCreateFolder);
8758875e 1195#endif // systems with native way
8d7d6dea 1196 }
02f35bff
VZ
1197 else // we got directory from an environment variable
1198 {
1199 // remove any trailing path separators, we don't want to ever return
1200 // them from this function for consistency
1201 const size_t lastNonSep = dir.find_last_not_of(GetPathSeparators());
1202 if ( lastNonSep == wxString::npos )
1203 {
1204 // the string consists entirely of separators, leave only one
1205 dir = GetPathSeparator();
1206 }
1207 else
1208 {
1209 dir.erase(lastNonSep + 1);
1210 }
1211 }
8d7d6dea 1212
8758875e 1213 // fall back to hard coded value
8d7d6dea
JS
1214 if ( dir.empty() )
1215 {
8758875e
VZ
1216#ifdef __UNIX_LIKE__
1217 dir = CheckIfDirExists("/tmp");
1218 if ( dir.empty() )
1219#endif // __UNIX_LIKE__
1220 dir = ".";
8d7d6dea 1221 }
8d7d6dea
JS
1222
1223 return dir;
1224}
1225
89391a4e 1226bool wxFileName::Mkdir( int perm, int flags ) const
a35b27b1 1227{
db759dde 1228 return wxFileName::Mkdir(GetPath(), perm, flags);
a35b27b1
RR
1229}
1230
1527281e 1231bool wxFileName::Mkdir( const wxString& dir, int perm, int flags )
df5ddbca 1232{
1527281e 1233 if ( flags & wxPATH_MKDIR_FULL )
f0ce3409 1234 {
1527281e
VZ
1235 // split the path in components
1236 wxFileName filename;
1237 filename.AssignDir(dir);
f0ce3409 1238
f0ce3409 1239 wxString currPath;
0ea621cc
VZ
1240 if ( filename.HasVolume())
1241 {
1527281e 1242 currPath << wxGetVolumeString(filename.GetVolume(), wxPATH_NATIVE);
0ea621cc 1243 }
f0ce3409 1244
1527281e
VZ
1245 wxArrayString dirs = filename.GetDirs();
1246 size_t count = dirs.GetCount();
1247 for ( size_t i = 0; i < count; i++ )
1248 {
e0d81eac 1249 if ( i > 0 || filename.IsAbsolute() )
f0ce3409 1250 currPath += wxFILE_SEP_PATH;
1527281e 1251 currPath += dirs[i];
f0ce3409
JS
1252
1253 if (!DirExists(currPath))
1527281e 1254 {
f0ce3409 1255 if (!wxMkdir(currPath, perm))
1527281e
VZ
1256 {
1257 // no need to try creating further directories
f363e05c 1258 return false;
1527281e
VZ
1259 }
1260 }
f0ce3409
JS
1261 }
1262
f363e05c 1263 return true;
f0ce3409
JS
1264
1265 }
1527281e
VZ
1266
1267 return ::wxMkdir( dir, perm );
df5ddbca
RR
1268}
1269
89391a4e 1270bool wxFileName::Rmdir(int flags) const
df5ddbca 1271{
110c5094 1272 return wxFileName::Rmdir( GetPath(), flags );
df5ddbca
RR
1273}
1274
110c5094 1275bool wxFileName::Rmdir(const wxString& dir, int flags)
df5ddbca 1276{
110c5094
VZ
1277#ifdef __WXMSW__
1278 if ( flags & wxPATH_RMDIR_RECURSIVE )
1279 {
1280 // SHFileOperation needs double null termination string
1281 // but without separator at the end of the path
1282 wxString path(dir);
1283 if ( path.Last() == wxFILE_SEP_PATH )
1284 path.RemoveLast();
9a83f860 1285 path += wxT('\0');
110c5094
VZ
1286
1287 SHFILEOPSTRUCT fileop;
1288 wxZeroMemory(fileop);
1289 fileop.wFunc = FO_DELETE;
1290 fileop.pFrom = path.fn_str();
1291 fileop.fFlags = FOF_SILENT | FOF_NOCONFIRMATION;
1292 #ifndef __WXWINCE__
1293 // FOF_NOERRORUI is not defined in WinCE
1294 fileop.fFlags |= FOF_NOERRORUI;
1295 #endif
1296
1297 int ret = SHFileOperation(&fileop);
1298 if ( ret != 0 )
1299 {
1300 // SHFileOperation may return non-Win32 error codes, so the error
1301 // message can be incorrect
9a83f860 1302 wxLogApiError(wxT("SHFileOperation"), ret);
110c5094
VZ
1303 return false;
1304 }
1305
1306 return true;
1307 }
1308 else if ( flags & wxPATH_RMDIR_FULL )
1309#else // !__WXMSW__
1310 if ( flags != 0 ) // wxPATH_RMDIR_FULL or wxPATH_RMDIR_RECURSIVE
1311#endif // !__WXMSW__
1312 {
1313 wxString path(dir);
1314 if ( path.Last() != wxFILE_SEP_PATH )
1315 path += wxFILE_SEP_PATH;
1316
1317 wxDir d(path);
1318
1319 if ( !d.IsOpened() )
1320 return false;
1321
1322 wxString filename;
1323
1324 // first delete all subdirectories
1325 bool cont = d.GetFirst(&filename, "", wxDIR_DIRS | wxDIR_HIDDEN);
1326 while ( cont )
1327 {
1328 wxFileName::Rmdir(path + filename, flags);
1329 cont = d.GetNext(&filename);
1330 }
1331
1332#ifndef __WXMSW__
1333 if ( flags & wxPATH_RMDIR_RECURSIVE )
1334 {
1335 // delete all files too
1336 cont = d.GetFirst(&filename, "", wxDIR_FILES | wxDIR_HIDDEN);
1337 while ( cont )
1338 {
1339 ::wxRemoveFile(path + filename);
1340 cont = d.GetNext(&filename);
1341 }
1342 }
1343#endif // !__WXMSW__
1344 }
1345
1346 return ::wxRmdir(dir);
df5ddbca
RR
1347}
1348
844f90fb
VZ
1349// ----------------------------------------------------------------------------
1350// path normalization
1351// ----------------------------------------------------------------------------
1352
32a0d013 1353bool wxFileName::Normalize(int flags,
844f90fb
VZ
1354 const wxString& cwd,
1355 wxPathFormat format)
a35b27b1 1356{
05e1201c
VZ
1357 // deal with env vars renaming first as this may seriously change the path
1358 if ( flags & wxPATH_NORM_ENV_VARS )
1359 {
1360 wxString pathOrig = GetFullPath(format);
1361 wxString path = wxExpandEnvVars(pathOrig);
1362 if ( path != pathOrig )
1363 {
1364 Assign(path);
1365 }
1366 }
1367
844f90fb
VZ
1368 // the existing path components
1369 wxArrayString dirs = GetDirs();
1370
1371 // the path to prepend in front to make the path absolute
1372 wxFileName curDir;
1373
1374 format = GetFormat(format);
ae4d7004 1375
bf7f7793 1376 // set up the directory to use for making the path absolute later
a2fa5040 1377 if ( (flags & wxPATH_NORM_ABSOLUTE) && !IsAbsolute(format) )
a35b27b1 1378 {
844f90fb 1379 if ( cwd.empty() )
6f91bc33
VZ
1380 {
1381 curDir.AssignCwd(GetVolume());
1382 }
1383 else // cwd provided
1384 {
844f90fb 1385 curDir.AssignDir(cwd);
6f91bc33 1386 }
a35b27b1 1387 }
ae4d7004 1388
844f90fb 1389 // handle ~ stuff under Unix only
be5be16a 1390 if ( (format == wxPATH_UNIX) && (flags & wxPATH_NORM_TILDE) && m_relative )
a35b27b1 1391 {
844f90fb
VZ
1392 if ( !dirs.IsEmpty() )
1393 {
1394 wxString dir = dirs[0u];
9a83f860 1395 if ( !dir.empty() && dir[0u] == wxT('~') )
844f90fb 1396 {
bf7f7793 1397 // to make the path absolute use the home directory
844f90fb 1398 curDir.AssignDir(wxGetUserHome(dir.c_str() + 1));
da2fd5ac 1399 dirs.RemoveAt(0u);
844f90fb
VZ
1400 }
1401 }
a35b27b1 1402 }
844f90fb 1403
52dbd056 1404 // transform relative path into abs one
844f90fb 1405 if ( curDir.IsOk() )
a35b27b1 1406 {
bf7f7793
RR
1407 // this path may be relative because it doesn't have the volume name
1408 // and still have m_relative=true; in this case we shouldn't modify
1409 // our directory components but just set the current volume
1410 if ( !HasVolume() && curDir.HasVolume() )
844f90fb 1411 {
bf7f7793
RR
1412 SetVolume(curDir.GetVolume());
1413
1414 if ( !m_relative )
1415 {
1416 // yes, it was the case - we don't need curDir then
1417 curDir.Clear();
1418 }
844f90fb
VZ
1419 }
1420
bf7f7793
RR
1421 // finally, prepend curDir to the dirs array
1422 wxArrayString dirsNew = curDir.GetDirs();
1423 WX_PREPEND_ARRAY(dirs, dirsNew);
1424
1425 // if we used e.g. tilde expansion previously and wxGetUserHome didn't
1426 // return for some reason an absolute path, then curDir maybe not be absolute!
be5be16a 1427 if ( !curDir.m_relative )
bf7f7793
RR
1428 {
1429 // we have prepended an absolute path and thus we are now an absolute
1430 // file name too
1431 m_relative = false;
1432 }
1433 // else if (flags & wxPATH_NORM_ABSOLUTE):
1434 // should we warn the user that we didn't manage to make the path absolute?
a35b27b1 1435 }
844f90fb
VZ
1436
1437 // now deal with ".", ".." and the rest
1438 m_dirs.Empty();
1439 size_t count = dirs.GetCount();
1440 for ( size_t n = 0; n < count; n++ )
a35b27b1 1441 {
844f90fb
VZ
1442 wxString dir = dirs[n];
1443
2bc60417 1444 if ( flags & wxPATH_NORM_DOTS )
844f90fb
VZ
1445 {
1446 if ( dir == wxT(".") )
1447 {
1448 // just ignore
1449 continue;
1450 }
1451
1452 if ( dir == wxT("..") )
1453 {
1454 if ( m_dirs.IsEmpty() )
1455 {
1456 wxLogError(_("The path '%s' contains too many \"..\"!"),
1457 GetFullPath().c_str());
f363e05c 1458 return false;
844f90fb
VZ
1459 }
1460
ae4d7004 1461 m_dirs.RemoveAt(m_dirs.GetCount() - 1);
844f90fb
VZ
1462 continue;
1463 }
1464 }
1465
844f90fb 1466 m_dirs.Add(dir);
a35b27b1 1467 }
a62848fd 1468
6bda7391 1469#if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE
21f60945
JS
1470 if ( (flags & wxPATH_NORM_SHORTCUT) )
1471 {
1472 wxString filename;
1473 if (GetShortcutTarget(GetFullPath(format), filename))
1474 {
21f60945
JS
1475 m_relative = false;
1476 Assign(filename);
1477 }
1478 }
1479#endif
844f90fb 1480
9a0c5c01
VZ
1481#if defined(__WIN32__)
1482 if ( (flags & wxPATH_NORM_LONG) && (format == wxPATH_DOS) )
844f90fb 1483 {
9a0c5c01
VZ
1484 Assign(GetLongPath());
1485 }
1486#endif // Win32
844f90fb 1487
9a0c5c01
VZ
1488 // Change case (this should be kept at the end of the function, to ensure
1489 // that the path doesn't change any more after we normalize its case)
1490 if ( (flags & wxPATH_NORM_CASE) && !IsCaseSensitive(format) )
1491 {
55268a3a 1492 m_volume.MakeLower();
844f90fb
VZ
1493 m_name.MakeLower();
1494 m_ext.MakeLower();
844f90fb 1495
9a0c5c01
VZ
1496 // directory entries must be made lower case as well
1497 count = m_dirs.GetCount();
1498 for ( size_t i = 0; i < count; i++ )
1499 {
1500 m_dirs[i].MakeLower();
1501 }
9e9b65c1 1502 }
9e9b65c1 1503
f363e05c 1504 return true;
a2fa5040
VZ
1505}
1506
395f3aa8
FM
1507#ifndef __WXWINCE__
1508bool wxFileName::ReplaceEnvVariable(const wxString& envname,
1509 const wxString& replacementFmtString,
1510 wxPathFormat format)
1511{
1512 // look into stringForm for the contents of the given environment variable
1513 wxString val;
1514 if (envname.empty() ||
1515 !wxGetEnv(envname, &val))
1516 return false;
1517 if (val.empty())
1518 return false;
1519
1520 wxString stringForm = GetPath(wxPATH_GET_VOLUME, format);
1521 // do not touch the file name and the extension
1522
1523 wxString replacement = wxString::Format(replacementFmtString, envname);
1524 stringForm.Replace(val, replacement);
1525
1526 // Now assign ourselves the modified path:
1527 Assign(stringForm, GetFullName(), format);
1528
1529 return true;
1530}
1531#endif
1532
1533bool wxFileName::ReplaceHomeDir(wxPathFormat format)
1534{
1535 wxString homedir = wxGetHomeDir();
1536 if (homedir.empty())
1537 return false;
1538
1539 wxString stringForm = GetPath(wxPATH_GET_VOLUME, format);
1540 // do not touch the file name and the extension
1541
1542 stringForm.Replace(homedir, "~");
1543
1544 // Now assign ourselves the modified path:
1545 Assign(stringForm, GetFullName(), format);
1546
1547 return true;
1548}
1549
21f60945
JS
1550// ----------------------------------------------------------------------------
1551// get the shortcut target
1552// ----------------------------------------------------------------------------
1553
5671b3b6
JS
1554// WinCE (3) doesn't have CLSID_ShellLink, IID_IShellLink definitions.
1555// The .lnk file is a plain text file so it should be easy to
1556// make it work. Hint from Google Groups:
1557// "If you open up a lnk file, you'll see a
1558// number, followed by a pound sign (#), followed by more text. The
1559// number is the number of characters that follows the pound sign. The
1560// characters after the pound sign are the command line (which _can_
1561// include arguments) to be executed. Any path (e.g. \windows\program
1562// files\myapp.exe) that includes spaces needs to be enclosed in
1563// quotation marks."
1564
6bda7391 1565#if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE
5671b3b6
JS
1566// The following lines are necessary under WinCE
1567// #include "wx/msw/private.h"
1568// #include <ole2.h>
21f60945 1569#include <shlobj.h>
5671b3b6
JS
1570#if defined(__WXWINCE__)
1571#include <shlguid.h>
1572#endif
21f60945 1573
cea0869c
VZ
1574bool wxFileName::GetShortcutTarget(const wxString& shortcutPath,
1575 wxString& targetFilename,
d9e80dce 1576 wxString* arguments) const
21f60945 1577{
21f60945 1578 wxString path, file, ext;
bd365871 1579 wxFileName::SplitPath(shortcutPath, & path, & file, & ext);
a62848fd
WS
1580
1581 HRESULT hres;
1582 IShellLink* psl;
1583 bool success = false;
21f60945
JS
1584
1585 // Assume it's not a shortcut if it doesn't end with lnk
489f6cf7 1586 if (ext.CmpNoCase(wxT("lnk"))!=0)
a62848fd
WS
1587 return false;
1588
1589 // create a ShellLink object
1590 hres = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
1591 IID_IShellLink, (LPVOID*) &psl);
1592
1593 if (SUCCEEDED(hres))
1594 {
1595 IPersistFile* ppf;
1596 hres = psl->QueryInterface( IID_IPersistFile, (LPVOID *) &ppf);
1597 if (SUCCEEDED(hres))
1598 {
1599 WCHAR wsz[MAX_PATH];
1600
1601 MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, shortcutPath.mb_str(), -1, wsz,
1602 MAX_PATH);
1603
1604 hres = ppf->Load(wsz, 0);
cea0869c
VZ
1605 ppf->Release();
1606
a62848fd
WS
1607 if (SUCCEEDED(hres))
1608 {
21f60945 1609 wxChar buf[2048];
59ba321b
JS
1610 // Wrong prototype in early versions
1611#if defined(__MINGW32__) && !wxCHECK_W32API_VERSION(2, 2)
1612 psl->GetPath((CHAR*) buf, 2048, NULL, SLGP_UNCPRIORITY);
1613#else
a62848fd 1614 psl->GetPath(buf, 2048, NULL, SLGP_UNCPRIORITY);
59ba321b 1615#endif
a62848fd 1616 targetFilename = wxString(buf);
21f60945
JS
1617 success = (shortcutPath != targetFilename);
1618
a62848fd 1619 psl->GetArguments(buf, 2048);
21f60945 1620 wxString args(buf);
b494c48b 1621 if (!args.empty() && arguments)
21f60945
JS
1622 {
1623 *arguments = args;
a62848fd
WS
1624 }
1625 }
1626 }
cea0869c
VZ
1627
1628 psl->Release();
a62848fd 1629 }
a62848fd 1630 return success;
21f60945 1631}
cea0869c
VZ
1632
1633#endif // __WIN32__ && !__WXWINCE__
21f60945
JS
1634
1635
a2fa5040
VZ
1636// ----------------------------------------------------------------------------
1637// absolute/relative paths
1638// ----------------------------------------------------------------------------
1639
1640bool wxFileName::IsAbsolute(wxPathFormat format) const
1641{
be5be16a
VZ
1642 // unix paths beginning with ~ are reported as being absolute
1643 if ( format == wxPATH_UNIX )
1644 {
1645 if ( !m_dirs.IsEmpty() )
1646 {
1647 wxString dir = m_dirs[0u];
1648
9a83f860 1649 if (!dir.empty() && dir[0u] == wxT('~'))
be5be16a
VZ
1650 return true;
1651 }
1652 }
1653
a2fa5040
VZ
1654 // if our path doesn't start with a path separator, it's not an absolute
1655 // path
1656 if ( m_relative )
f363e05c 1657 return false;
a2fa5040
VZ
1658
1659 if ( !GetVolumeSeparator(format).empty() )
1660 {
1661 // this format has volumes and an absolute path must have one, it's not
be5be16a 1662 // enough to have the full path to be an absolute file under Windows
a2fa5040 1663 if ( GetVolume().empty() )
f363e05c 1664 return false;
a2fa5040
VZ
1665 }
1666
f363e05c 1667 return true;
a35b27b1
RR
1668}
1669
f7d886af
VZ
1670bool wxFileName::MakeRelativeTo(const wxString& pathBase, wxPathFormat format)
1671{
cef9731a 1672 wxFileName fnBase = wxFileName::DirName(pathBase, format);
f7d886af
VZ
1673
1674 // get cwd only once - small time saving
1675 wxString cwd = wxGetCwd();
b5b62eea
JS
1676 Normalize(wxPATH_NORM_ALL & ~wxPATH_NORM_CASE, cwd, format);
1677 fnBase.Normalize(wxPATH_NORM_ALL & ~wxPATH_NORM_CASE, cwd, format);
f7d886af
VZ
1678
1679 bool withCase = IsCaseSensitive(format);
1680
1681 // we can't do anything if the files live on different volumes
1682 if ( !GetVolume().IsSameAs(fnBase.GetVolume(), withCase) )
1683 {
1684 // nothing done
f363e05c 1685 return false;
f7d886af
VZ
1686 }
1687
1688 // same drive, so we don't need our volume
1689 m_volume.clear();
1690
1691 // remove common directories starting at the top
1692 while ( !m_dirs.IsEmpty() && !fnBase.m_dirs.IsEmpty() &&
1693 m_dirs[0u].IsSameAs(fnBase.m_dirs[0u], withCase) )
1694 {
ae4d7004
VZ
1695 m_dirs.RemoveAt(0);
1696 fnBase.m_dirs.RemoveAt(0);
f7d886af
VZ
1697 }
1698
1699 // add as many ".." as needed
1700 size_t count = fnBase.m_dirs.GetCount();
1701 for ( size_t i = 0; i < count; i++ )
1702 {
1703 m_dirs.Insert(wxT(".."), 0u);
1704 }
90a68369 1705
2db991f4
VZ
1706 if ( format == wxPATH_UNIX || format == wxPATH_DOS )
1707 {
1708 // a directory made relative with respect to itself is '.' under Unix
1709 // and DOS, by definition (but we don't have to insert "./" for the
1710 // files)
1711 if ( m_dirs.IsEmpty() && IsDir() )
1712 {
9a83f860 1713 m_dirs.Add(wxT('.'));
0ea621cc 1714 }
2db991f4
VZ
1715 }
1716
f363e05c 1717 m_relative = true;
f7d886af
VZ
1718
1719 // we were modified
f363e05c 1720 return true;
f7d886af
VZ
1721}
1722
844f90fb
VZ
1723// ----------------------------------------------------------------------------
1724// filename kind tests
1725// ----------------------------------------------------------------------------
1726
2b5f62a0 1727bool wxFileName::SameAs(const wxFileName& filepath, wxPathFormat format) const
df5ddbca 1728{
844f90fb
VZ
1729 wxFileName fn1 = *this,
1730 fn2 = filepath;
1731
1732 // get cwd only once - small time saving
1733 wxString cwd = wxGetCwd();
55268a3a
VZ
1734 fn1.Normalize(wxPATH_NORM_ALL | wxPATH_NORM_CASE, cwd, format);
1735 fn2.Normalize(wxPATH_NORM_ALL | wxPATH_NORM_CASE, cwd, format);
844f90fb
VZ
1736
1737 if ( fn1.GetFullPath() == fn2.GetFullPath() )
f363e05c 1738 return true;
844f90fb
VZ
1739
1740 // TODO: compare inodes for Unix, this works even when filenames are
1741 // different but files are the same (symlinks) (VZ)
1742
f363e05c 1743 return false;
df5ddbca
RR
1744}
1745
844f90fb 1746/* static */
df5ddbca
RR
1747bool wxFileName::IsCaseSensitive( wxPathFormat format )
1748{
04c943b1
VZ
1749 // only Unix filenames are truely case-sensitive
1750 return GetFormat(format) == wxPATH_UNIX;
df5ddbca
RR
1751}
1752
f363e05c
VZ
1753/* static */
1754wxString wxFileName::GetForbiddenChars(wxPathFormat format)
1755{
1756 // Inits to forbidden characters that are common to (almost) all platforms.
1757 wxString strForbiddenChars = wxT("*?");
1758
1c6f2414 1759 // If asserts, wxPathFormat has been changed. In case of a new path format
f363e05c 1760 // addition, the following code might have to be updated.
1c6f2414 1761 wxCOMPILE_TIME_ASSERT(wxPATH_MAX == 5, wxPathFormatChanged);
f363e05c
VZ
1762 switch ( GetFormat(format) )
1763 {
1764 default :
1765 wxFAIL_MSG( wxT("Unknown path format") );
1766 // !! Fall through !!
1767
1768 case wxPATH_UNIX:
1769 break;
1770
1771 case wxPATH_MAC:
1772 // On a Mac even names with * and ? are allowed (Tested with OS
1773 // 9.2.1 and OS X 10.2.5)
1774 strForbiddenChars = wxEmptyString;
1775 break;
1776
1777 case wxPATH_DOS:
1778 strForbiddenChars += wxT("\\/:\"<>|");
1779 break;
1780
1781 case wxPATH_VMS:
1782 break;
1783 }
1784
1785 return strForbiddenChars;
1786}
1787
04c943b1 1788/* static */
bcfa2b31 1789wxString wxFileName::GetVolumeSeparator(wxPathFormat WXUNUSED_IN_WINCE(format))
844f90fb 1790{
bcfa2b31
WS
1791#ifdef __WXWINCE__
1792 return wxEmptyString;
1793#else
04c943b1
VZ
1794 wxString sepVol;
1795
a385b5df
RR
1796 if ( (GetFormat(format) == wxPATH_DOS) ||
1797 (GetFormat(format) == wxPATH_VMS) )
04c943b1 1798 {
04c943b1
VZ
1799 sepVol = wxFILE_SEP_DSK;
1800 }
a385b5df 1801 //else: leave empty
04c943b1
VZ
1802
1803 return sepVol;
bcfa2b31 1804#endif
844f90fb
VZ
1805}
1806
1807/* static */
1808wxString wxFileName::GetPathSeparators(wxPathFormat format)
1809{
1810 wxString seps;
1811 switch ( GetFormat(format) )
df5ddbca 1812 {
844f90fb 1813 case wxPATH_DOS:
04c943b1
VZ
1814 // accept both as native APIs do but put the native one first as
1815 // this is the one we use in GetFullPath()
1816 seps << wxFILE_SEP_PATH_DOS << wxFILE_SEP_PATH_UNIX;
844f90fb
VZ
1817 break;
1818
1819 default:
9a83f860 1820 wxFAIL_MSG( wxT("Unknown wxPATH_XXX style") );
844f90fb
VZ
1821 // fall through
1822
1823 case wxPATH_UNIX:
9e8d8607 1824 seps = wxFILE_SEP_PATH_UNIX;
844f90fb
VZ
1825 break;
1826
1827 case wxPATH_MAC:
9e8d8607 1828 seps = wxFILE_SEP_PATH_MAC;
844f90fb 1829 break;
04c943b1 1830
3c621059
JJ
1831 case wxPATH_VMS:
1832 seps = wxFILE_SEP_PATH_VMS;
1833 break;
df5ddbca
RR
1834 }
1835
844f90fb 1836 return seps;
df5ddbca
RR
1837}
1838
f1e77933
VZ
1839/* static */
1840wxString wxFileName::GetPathTerminators(wxPathFormat format)
1841{
1842 format = GetFormat(format);
1843
1844 // under VMS the end of the path is ']', not the path separator used to
1845 // separate the components
9a83f860 1846 return format == wxPATH_VMS ? wxString(wxT(']')) : GetPathSeparators(format);
f1e77933
VZ
1847}
1848
844f90fb
VZ
1849/* static */
1850bool wxFileName::IsPathSeparator(wxChar ch, wxPathFormat format)
df5ddbca 1851{
04c943b1 1852 // wxString::Find() doesn't work as expected with NUL - it will always find
2fb5a4ce 1853 // it, so test for it separately
9a83f860 1854 return ch != wxT('\0') && GetPathSeparators(format).Find(ch) != wxNOT_FOUND;
df5ddbca
RR
1855}
1856
e01a788e
VZ
1857/* static */
1858bool
1859wxFileName::IsMSWUniqueVolumeNamePath(const wxString& path, wxPathFormat format)
1860{
1861 // return true if the format used is the DOS/Windows one and the string begins
1862 // with a Windows unique volume name ("\\?\Volume{guid}\")
1863 return format == wxPATH_DOS &&
1864 path.length() >= wxMSWUniqueVolumePrefixLength &&
1865 path.StartsWith(wxS("\\\\?\\Volume{")) &&
1866 path[wxMSWUniqueVolumePrefixLength - 1] == wxFILE_SEP_PATH_DOS;
1867}
1868
844f90fb
VZ
1869// ----------------------------------------------------------------------------
1870// path components manipulation
1871// ----------------------------------------------------------------------------
1872
5bb9aeb2
VZ
1873/* static */ bool wxFileName::IsValidDirComponent(const wxString& dir)
1874{
1875 if ( dir.empty() )
1876 {
9a83f860 1877 wxFAIL_MSG( wxT("empty directory passed to wxFileName::InsertDir()") );
5bb9aeb2
VZ
1878
1879 return false;
1880 }
1881
1882 const size_t len = dir.length();
1883 for ( size_t n = 0; n < len; n++ )
1884 {
1885 if ( dir[n] == GetVolumeSeparator() || IsPathSeparator(dir[n]) )
1886 {
9a83f860 1887 wxFAIL_MSG( wxT("invalid directory component in wxFileName") );
5bb9aeb2
VZ
1888
1889 return false;
1890 }
1891 }
1892
1893 return true;
1894}
1895
2458d90b 1896void wxFileName::AppendDir( const wxString& dir )
df5ddbca 1897{
5bb9aeb2
VZ
1898 if ( IsValidDirComponent(dir) )
1899 m_dirs.Add( dir );
df5ddbca
RR
1900}
1901
2458d90b 1902void wxFileName::PrependDir( const wxString& dir )
df5ddbca 1903{
5bb9aeb2 1904 InsertDir(0, dir);
df5ddbca
RR
1905}
1906
2458d90b 1907void wxFileName::InsertDir(size_t before, const wxString& dir)
df5ddbca 1908{
5bb9aeb2 1909 if ( IsValidDirComponent(dir) )
2458d90b 1910 m_dirs.Insert(dir, before);
df5ddbca
RR
1911}
1912
2458d90b 1913void wxFileName::RemoveDir(size_t pos)
df5ddbca 1914{
2458d90b 1915 m_dirs.RemoveAt(pos);
df5ddbca
RR
1916}
1917
844f90fb
VZ
1918// ----------------------------------------------------------------------------
1919// accessors
1920// ----------------------------------------------------------------------------
1921
7124df9b
VZ
1922void wxFileName::SetFullName(const wxString& fullname)
1923{
dfecbee5
VZ
1924 SplitPath(fullname, NULL /* no volume */, NULL /* no path */,
1925 &m_name, &m_ext, &m_hasExt);
7124df9b
VZ
1926}
1927
844f90fb 1928wxString wxFileName::GetFullName() const
a35b27b1 1929{
844f90fb 1930 wxString fullname = m_name;
dfecbee5 1931 if ( m_hasExt )
a35b27b1 1932 {
9e8d8607 1933 fullname << wxFILE_SEP_EXT << m_ext;
a35b27b1 1934 }
a35b27b1 1935
844f90fb 1936 return fullname;
a35b27b1
RR
1937}
1938
33b97389 1939wxString wxFileName::GetPath( int flags, wxPathFormat format ) const
df5ddbca
RR
1940{
1941 format = GetFormat( format );
844f90fb 1942
353f41cb
RR
1943 wxString fullpath;
1944
33b97389
VZ
1945 // return the volume with the path as well if requested
1946 if ( flags & wxPATH_GET_VOLUME )
1947 {
1948 fullpath += wxGetVolumeString(GetVolume(), format);
1949 }
1950
034742fc
VZ
1951 // the leading character
1952 switch ( format )
1953 {
1954 case wxPATH_MAC:
1955 if ( m_relative )
1956 fullpath += wxFILE_SEP_PATH_MAC;
1957 break;
1958
1959 case wxPATH_DOS:
1960 if ( !m_relative )
1961 fullpath += wxFILE_SEP_PATH_DOS;
1962 break;
1963
1964 default:
1965 wxFAIL_MSG( wxT("Unknown path format") );
1966 // fall through
1967
1968 case wxPATH_UNIX:
1969 if ( !m_relative )
1970 {
be5be16a 1971 fullpath += wxFILE_SEP_PATH_UNIX;
034742fc
VZ
1972 }
1973 break;
1974
1975 case wxPATH_VMS:
1976 // no leading character here but use this place to unset
1977 // wxPATH_GET_SEPARATOR flag: under VMS it doesn't make sense
1978 // as, if I understand correctly, there should never be a dot
1979 // before the closing bracket
1980 flags &= ~wxPATH_GET_SEPARATOR;
1981 }
1982
1983 if ( m_dirs.empty() )
1984 {
1985 // there is nothing more
1986 return fullpath;
1987 }
1988
1989 // then concatenate all the path components using the path separator
1990 if ( format == wxPATH_VMS )
1991 {
1992 fullpath += wxT('[');
1993 }
1994
5bb9aeb2 1995 const size_t dirCount = m_dirs.GetCount();
034742fc 1996 for ( size_t i = 0; i < dirCount; i++ )
353f41cb 1997 {
034742fc 1998 switch (format)
5bb9aeb2
VZ
1999 {
2000 case wxPATH_MAC:
034742fc
VZ
2001 if ( m_dirs[i] == wxT(".") )
2002 {
2003 // skip appending ':', this shouldn't be done in this
2004 // case as "::" is interpreted as ".." under Unix
2005 continue;
2006 }
2361ce82 2007
034742fc 2008 // convert back from ".." to nothing
489f6cf7 2009 if ( !m_dirs[i].IsSameAs(wxT("..")) )
034742fc 2010 fullpath += m_dirs[i];
5bb9aeb2 2011 break;
2361ce82 2012
5bb9aeb2 2013 default:
034742fc
VZ
2014 wxFAIL_MSG( wxT("Unexpected path format") );
2015 // still fall through
2361ce82 2016
034742fc 2017 case wxPATH_DOS:
5bb9aeb2 2018 case wxPATH_UNIX:
034742fc 2019 fullpath += m_dirs[i];
5bb9aeb2 2020 break;
2361ce82 2021
5bb9aeb2 2022 case wxPATH_VMS:
034742fc 2023 // TODO: What to do with ".." under VMS
353f41cb 2024
034742fc 2025 // convert back from ".." to nothing
489f6cf7 2026 if ( !m_dirs[i].IsSameAs(wxT("..")) )
353f41cb 2027 fullpath += m_dirs[i];
034742fc 2028 break;
4175794e
VZ
2029 }
2030
034742fc
VZ
2031 if ( (flags & wxPATH_GET_SEPARATOR) || (i != dirCount - 1) )
2032 fullpath += GetPathSeparator(format);
df5ddbca 2033 }
034742fc
VZ
2034
2035 if ( format == wxPATH_VMS )
5bb9aeb2 2036 {
034742fc 2037 fullpath += wxT(']');
5bb9aeb2 2038 }
844f90fb 2039
353f41cb 2040 return fullpath;
df5ddbca
RR
2041}
2042
2043wxString wxFileName::GetFullPath( wxPathFormat format ) const
2044{
4175794e
VZ
2045 // we already have a function to get the path
2046 wxString fullpath = GetPath(wxPATH_GET_VOLUME | wxPATH_GET_SEPARATOR,
2047 format);
04c943b1 2048
4175794e 2049 // now just add the file name and extension to it
04c943b1
VZ
2050 fullpath += GetFullName();
2051
2052 return fullpath;
df5ddbca
RR
2053}
2054
9e9b65c1
JS
2055// Return the short form of the path (returns identity on non-Windows platforms)
2056wxString wxFileName::GetShortPath() const
2057{
9e9b65c1 2058 wxString path(GetFullPath());
2f3d9587
VZ
2059
2060#if defined(__WXMSW__) && defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
e0a050e3 2061 DWORD sz = ::GetShortPathName(path.fn_str(), NULL, 0);
2f3d9587 2062 if ( sz != 0 )
9e9b65c1 2063 {
2f3d9587
VZ
2064 wxString pathOut;
2065 if ( ::GetShortPathName
75ef5722 2066 (
e0a050e3 2067 path.fn_str(),
de564874 2068 wxStringBuffer(pathOut, sz),
75ef5722 2069 sz
2f3d9587
VZ
2070 ) != 0 )
2071 {
2072 return pathOut;
2073 }
9e9b65c1 2074 }
2f3d9587 2075#endif // Windows
5716a1ab
VZ
2076
2077 return path;
9e9b65c1
JS
2078}
2079
2080// Return the long form of the path (returns identity on non-Windows platforms)
2081wxString wxFileName::GetLongPath() const
2082{
52dbd056
VZ
2083 wxString pathOut,
2084 path = GetFullPath();
2085
b517351b 2086#if defined(__WIN32__) && !defined(__WXWINCE__) && !defined(__WXMICROWIN__)
05e7001c 2087
0e207280 2088#if wxUSE_DYNLIB_CLASS
62dcaed6 2089 typedef DWORD (WINAPI *GET_LONG_PATH_NAME)(const wxChar *, wxChar *, DWORD);
05e7001c 2090
2f3d9587
VZ
2091 // this is MT-safe as in the worst case we're going to resolve the function
2092 // twice -- but as the result is the same in both threads, it's ok
2093 static GET_LONG_PATH_NAME s_pfnGetLongPathName = NULL;
2094 if ( !s_pfnGetLongPathName )
9e9b65c1 2095 {
2f3d9587 2096 static bool s_triedToLoad = false;
2361ce82 2097
2f3d9587 2098 if ( !s_triedToLoad )
05e7001c 2099 {
2f3d9587
VZ
2100 s_triedToLoad = true;
2101
9a83f860 2102 wxDynamicLibrary dllKernel(wxT("kernel32"));
2f3d9587 2103
9a83f860 2104 const wxChar* GetLongPathName = wxT("GetLongPathName")
4377d3ab 2105#if wxUSE_UNICODE
9a83f860 2106 wxT("W");
4377d3ab 2107#else // ANSI
9a83f860 2108 wxT("A");
4377d3ab
WS
2109#endif // Unicode/ANSI
2110
2111 if ( dllKernel.HasSymbol(GetLongPathName) )
05e7001c 2112 {
2f3d9587 2113 s_pfnGetLongPathName = (GET_LONG_PATH_NAME)
4377d3ab 2114 dllKernel.GetSymbol(GetLongPathName);
05e7001c 2115 }
2f3d9587
VZ
2116
2117 // note that kernel32.dll can be unloaded, it stays in memory
2118 // anyhow as all Win32 programs link to it and so it's safe to call
2119 // GetLongPathName() even after unloading it
05e7001c 2120 }
9e9b65c1 2121 }
2361ce82 2122
2f3d9587
VZ
2123 if ( s_pfnGetLongPathName )
2124 {
e0a050e3 2125 DWORD dwSize = (*s_pfnGetLongPathName)(path.fn_str(), NULL, 0);
2f3d9587
VZ
2126 if ( dwSize > 0 )
2127 {
2128 if ( (*s_pfnGetLongPathName)
2129 (
e0a050e3 2130 path.fn_str(),
2f3d9587
VZ
2131 wxStringBuffer(pathOut, dwSize),
2132 dwSize
2133 ) != 0 )
2134 {
2135 return pathOut;
2136 }
2137 }
2138 }
0e207280 2139#endif // wxUSE_DYNLIB_CLASS
05e7001c 2140
2f3d9587
VZ
2141 // The OS didn't support GetLongPathName, or some other error.
2142 // We need to call FindFirstFile on each component in turn.
05e7001c 2143
2f3d9587
VZ
2144 WIN32_FIND_DATA findFileData;
2145 HANDLE hFind;
b5b62eea 2146
2f3d9587
VZ
2147 if ( HasVolume() )
2148 pathOut = GetVolume() +
2149 GetVolumeSeparator(wxPATH_DOS) +
2150 GetPathSeparator(wxPATH_DOS);
2151 else
2152 pathOut = wxEmptyString;
05e7001c 2153
2f3d9587
VZ
2154 wxArrayString dirs = GetDirs();
2155 dirs.Add(GetFullName());
77fe02a8 2156
2f3d9587 2157 wxString tmpPath;
5d978d07 2158
2f3d9587
VZ
2159 size_t count = dirs.GetCount();
2160 for ( size_t i = 0; i < count; i++ )
2161 {
ea6319cb
VZ
2162 const wxString& dir = dirs[i];
2163
2f3d9587
VZ
2164 // We're using pathOut to collect the long-name path, but using a
2165 // temporary for appending the last path component which may be
2166 // short-name
ea6319cb
VZ
2167 tmpPath = pathOut + dir;
2168
2169 // We must not process "." or ".." here as they would be (unexpectedly)
2170 // replaced by the corresponding directory names so just leave them
2171 // alone
2172 //
2173 // And we can't pass a drive and root dir to FindFirstFile (VZ: why?)
2174 if ( tmpPath.empty() || dir == '.' || dir == ".." ||
2175 tmpPath.Last() == GetVolumeSeparator(wxPATH_DOS) )
2f3d9587 2176 {
2f3d9587
VZ
2177 tmpPath += wxFILE_SEP_PATH;
2178 pathOut = tmpPath;
2179 continue;
2180 }
05e7001c 2181
e0a050e3 2182 hFind = ::FindFirstFile(tmpPath.fn_str(), &findFileData);
2f3d9587
VZ
2183 if (hFind == INVALID_HANDLE_VALUE)
2184 {
2185 // Error: most likely reason is that path doesn't exist, so
2186 // append any unprocessed parts and return
2187 for ( i += 1; i < count; i++ )
2188 tmpPath += wxFILE_SEP_PATH + dirs[i];
b5b62eea 2189
2f3d9587
VZ
2190 return tmpPath;
2191 }
05e7001c 2192
2f3d9587
VZ
2193 pathOut += findFileData.cFileName;
2194 if ( (i < (count-1)) )
2195 pathOut += wxFILE_SEP_PATH;
52dbd056 2196
2f3d9587 2197 ::FindClose(hFind);
05e7001c 2198 }
52dbd056
VZ
2199#else // !Win32
2200 pathOut = path;
2201#endif // Win32/!Win32
5716a1ab 2202
05e7001c 2203 return pathOut;
9e9b65c1
JS
2204}
2205
df5ddbca
RR
2206wxPathFormat wxFileName::GetFormat( wxPathFormat format )
2207{
2208 if (format == wxPATH_NATIVE)
2209 {
5a3912f2 2210#if defined(__WXMSW__) || defined(__OS2__) || defined(__DOS__)
df5ddbca 2211 format = wxPATH_DOS;
3c621059 2212#elif defined(__VMS)
04c943b1 2213 format = wxPATH_VMS;
844f90fb 2214#else
df5ddbca
RR
2215 format = wxPATH_UNIX;
2216#endif
2217 }
2218 return format;
2219}
a35b27b1 2220
35c2aa4f
VZ
2221#ifdef wxHAS_FILESYSTEM_VOLUMES
2222
2223/* static */
2224wxString wxFileName::GetVolumeString(char drive, int flags)
2225{
2226 wxASSERT_MSG( !(flags & ~wxPATH_GET_SEPARATOR), "invalid flag specified" );
2227
2228 wxString vol(drive);
2229 vol += wxFILE_SEP_DSK;
2230 if ( flags & wxPATH_GET_SEPARATOR )
2231 vol += wxFILE_SEP_PATH;
2232
2233 return vol;
2234}
2235
2236#endif // wxHAS_FILESYSTEM_VOLUMES
2237
9e8d8607
VZ
2238// ----------------------------------------------------------------------------
2239// path splitting function
2240// ----------------------------------------------------------------------------
2241
6f91bc33 2242/* static */
f1e77933
VZ
2243void
2244wxFileName::SplitVolume(const wxString& fullpathWithVolume,
2245 wxString *pstrVolume,
2246 wxString *pstrPath,
2247 wxPathFormat format)
9e8d8607
VZ
2248{
2249 format = GetFormat(format);
2250
04c943b1
VZ
2251 wxString fullpath = fullpathWithVolume;
2252
e01a788e 2253 if ( IsMSWUniqueVolumeNamePath(fullpath, format) )
9e8d8607 2254 {
e01a788e
VZ
2255 // special Windows unique volume names hack: transform
2256 // \\?\Volume{guid}\path into Volume{guid}:path
2257 // note: this check must be done before the check for UNC path
2258
2259 // we know the last backslash from the unique volume name is located
2260 // there from IsMSWUniqueVolumeNamePath
2261 fullpath[wxMSWUniqueVolumePrefixLength - 1] = wxFILE_SEP_DSK;
2262
2263 // paths starting with a unique volume name should always be absolute
2264 fullpath.insert(wxMSWUniqueVolumePrefixLength, 1, wxFILE_SEP_PATH_DOS);
2265
2266 // remove the leading "\\?\" part
2267 fullpath.erase(0, 4);
2268 }
2269 else if ( IsUNCPath(fullpath, format) )
2270 {
2271 // special Windows UNC paths hack: transform \\share\path into share:path
2272
9e1c7236 2273 fullpath.erase(0, 2);
04c943b1 2274
9e1c7236
VZ
2275 size_t posFirstSlash =
2276 fullpath.find_first_of(GetPathTerminators(format));
2277 if ( posFirstSlash != wxString::npos )
2278 {
2279 fullpath[posFirstSlash] = wxFILE_SEP_DSK;
04c943b1 2280
9e1c7236
VZ
2281 // UNC paths are always absolute, right? (FIXME)
2282 fullpath.insert(posFirstSlash + 1, 1, wxFILE_SEP_PATH_DOS);
3c621059
JJ
2283 }
2284 }
04c943b1 2285
a385b5df
RR
2286 // We separate the volume here
2287 if ( format == wxPATH_DOS || format == wxPATH_VMS )
04c943b1 2288 {
a385b5df 2289 wxString sepVol = GetVolumeSeparator(format);
24eb81cb 2290
0f506ded
VZ
2291 // we have to exclude the case of a colon in the very beginning of the
2292 // string as it can't be a volume separator (nor can this be a valid
2293 // DOS file name at all but we'll leave dealing with this to our caller)
04c943b1 2294 size_t posFirstColon = fullpath.find_first_of(sepVol);
0f506ded 2295 if ( posFirstColon && posFirstColon != wxString::npos )
04c943b1
VZ
2296 {
2297 if ( pstrVolume )
2298 {
2299 *pstrVolume = fullpath.Left(posFirstColon);
2300 }
2301
2302 // remove the volume name and the separator from the full path
2303 fullpath.erase(0, posFirstColon + sepVol.length());
2304 }
2305 }
2306
f1e77933
VZ
2307 if ( pstrPath )
2308 *pstrPath = fullpath;
2309}
2310
2311/* static */
2312void wxFileName::SplitPath(const wxString& fullpathWithVolume,
2313 wxString *pstrVolume,
2314 wxString *pstrPath,
2315 wxString *pstrName,
2316 wxString *pstrExt,
dfecbee5 2317 bool *hasExt,
f1e77933
VZ
2318 wxPathFormat format)
2319{
2320 format = GetFormat(format);
2321
2322 wxString fullpath;
2323 SplitVolume(fullpathWithVolume, pstrVolume, &fullpath, format);
2324
04c943b1
VZ
2325 // find the positions of the last dot and last path separator in the path
2326 size_t posLastDot = fullpath.find_last_of(wxFILE_SEP_EXT);
f1e77933 2327 size_t posLastSlash = fullpath.find_last_of(GetPathTerminators(format));
04c943b1 2328
e5a573a2 2329 // check whether this dot occurs at the very beginning of a path component
04c943b1 2330 if ( (posLastDot != wxString::npos) &&
e5a573a2
VZ
2331 (posLastDot == 0 ||
2332 IsPathSeparator(fullpath[posLastDot - 1]) ||
9a83f860 2333 (format == wxPATH_VMS && fullpath[posLastDot - 1] == wxT(']'))) )
f1e77933
VZ
2334 {
2335 // dot may be (and commonly -- at least under Unix -- is) the first
2336 // character of the filename, don't treat the entire filename as
2337 // extension in this case
2338 posLastDot = wxString::npos;
2339 }
9e8d8607 2340
8e7dda21
VZ
2341 // if we do have a dot and a slash, check that the dot is in the name part
2342 if ( (posLastDot != wxString::npos) &&
2343 (posLastSlash != wxString::npos) &&
2344 (posLastDot < posLastSlash) )
9e8d8607
VZ
2345 {
2346 // the dot is part of the path, not the start of the extension
2347 posLastDot = wxString::npos;
2348 }
2349
2350 // now fill in the variables provided by user
2351 if ( pstrPath )
2352 {
2353 if ( posLastSlash == wxString::npos )
2354 {
2355 // no path at all
2356 pstrPath->Empty();
2357 }
2358 else
2359 {
04c943b1 2360 // take everything up to the path separator but take care to make
353f41cb 2361 // the path equal to something like '/', not empty, for the files
04c943b1
VZ
2362 // immediately under root directory
2363 size_t len = posLastSlash;
91b4bd63
SC
2364
2365 // this rule does not apply to mac since we do not start with colons (sep)
2366 // except for relative paths
2367 if ( !len && format != wxPATH_MAC)
04c943b1
VZ
2368 len++;
2369
2370 *pstrPath = fullpath.Left(len);
2371
2372 // special VMS hack: remove the initial bracket
2373 if ( format == wxPATH_VMS )
2374 {
9a83f860 2375 if ( (*pstrPath)[0u] == wxT('[') )
04c943b1
VZ
2376 pstrPath->erase(0, 1);
2377 }
9e8d8607
VZ
2378 }
2379 }
2380
2381 if ( pstrName )
2382 {
42b1f941
VZ
2383 // take all characters starting from the one after the last slash and
2384 // up to, but excluding, the last dot
9e8d8607 2385 size_t nStart = posLastSlash == wxString::npos ? 0 : posLastSlash + 1;
8e7dda21
VZ
2386 size_t count;
2387 if ( posLastDot == wxString::npos )
2388 {
2389 // take all until the end
2390 count = wxString::npos;
2391 }
2392 else if ( posLastSlash == wxString::npos )
2393 {
2394 count = posLastDot;
2395 }
2396 else // have both dot and slash
2397 {
2398 count = posLastDot - posLastSlash - 1;
2399 }
9e8d8607
VZ
2400
2401 *pstrName = fullpath.Mid(nStart, count);
2402 }
2403
dfecbee5
VZ
2404 // finally deal with the extension here: we have an added complication that
2405 // extension may be empty (but present) as in "foo." where trailing dot
2406 // indicates the empty extension at the end -- and hence we must remember
2407 // that we have it independently of pstrExt
2408 if ( posLastDot == wxString::npos )
9e8d8607 2409 {
dfecbee5
VZ
2410 // no extension
2411 if ( pstrExt )
2412 pstrExt->clear();
2413 if ( hasExt )
2414 *hasExt = false;
2415 }
2416 else
2417 {
2418 // take everything after the dot
2419 if ( pstrExt )
9e8d8607 2420 *pstrExt = fullpath.Mid(posLastDot + 1);
dfecbee5
VZ
2421 if ( hasExt )
2422 *hasExt = true;
9e8d8607
VZ
2423 }
2424}
951cd180 2425
6f91bc33
VZ
2426/* static */
2427void wxFileName::SplitPath(const wxString& fullpath,
2428 wxString *path,
2429 wxString *name,
2430 wxString *ext,
2431 wxPathFormat format)
2432{
2433 wxString volume;
2434 SplitPath(fullpath, &volume, path, name, ext, format);
2435
67c34f64 2436 if ( path )
6f91bc33 2437 {
67c34f64 2438 path->Prepend(wxGetVolumeString(volume, format));
6f91bc33
VZ
2439 }
2440}
2441
181dd701
VZ
2442/* static */
2443wxString wxFileName::StripExtension(const wxString& fullpath)
2444{
2445 wxFileName fn(fullpath);
2446 fn.SetExt("");
2447 return fn.GetFullPath();
2448}
2449
951cd180
VZ
2450// ----------------------------------------------------------------------------
2451// time functions
2452// ----------------------------------------------------------------------------
2453
e2b87f38
VZ
2454#if wxUSE_DATETIME
2455
6dbb903b
VZ
2456bool wxFileName::SetTimes(const wxDateTime *dtAccess,
2457 const wxDateTime *dtMod,
d9e80dce 2458 const wxDateTime *dtCreate) const
951cd180 2459{
2b5f62a0 2460#if defined(__WIN32__)
6bc176b4
VZ
2461 FILETIME ftAccess, ftCreate, ftWrite;
2462
2463 if ( dtCreate )
2464 ConvertWxToFileTime(&ftCreate, *dtCreate);
2465 if ( dtAccess )
2466 ConvertWxToFileTime(&ftAccess, *dtAccess);
2467 if ( dtMod )
2468 ConvertWxToFileTime(&ftWrite, *dtMod);
2469
2470 wxString path;
2471 int flags;
2b5f62a0
VZ
2472 if ( IsDir() )
2473 {
6bc176b4
VZ
2474 if ( wxGetOsVersion() == wxOS_WINDOWS_9X )
2475 {
2476 wxLogError(_("Setting directory access times is not supported "
2477 "under this OS version"));
2478 return false;
2479 }
2480
2481 path = GetPath();
2482 flags = FILE_FLAG_BACKUP_SEMANTICS;
2b5f62a0
VZ
2483 }
2484 else // file
2485 {
6bc176b4
VZ
2486 path = GetFullPath();
2487 flags = 0;
2488 }
2489
f3c74c8d 2490 wxFileHandle fh(path, wxFileHandle::WriteAttr, flags);
6bc176b4
VZ
2491 if ( fh.IsOk() )
2492 {
2493 if ( ::SetFileTime(fh,
2494 dtCreate ? &ftCreate : NULL,
2495 dtAccess ? &ftAccess : NULL,
2496 dtMod ? &ftWrite : NULL) )
2b5f62a0 2497 {
6bc176b4 2498 return true;
2b5f62a0
VZ
2499 }
2500 }
2501#elif defined(__UNIX_LIKE__) || (defined(__DOS__) && defined(__WATCOMC__))
17a1ebd1
VZ
2502 wxUnusedVar(dtCreate);
2503
246c704f
VZ
2504 if ( !dtAccess && !dtMod )
2505 {
2506 // can't modify the creation time anyhow, don't try
f363e05c 2507 return true;
246c704f
VZ
2508 }
2509
2510 // if dtAccess or dtMod is not specified, use the other one (which must be
2511 // non NULL because of the test above) for both times
951cd180 2512 utimbuf utm;
246c704f
VZ
2513 utm.actime = dtAccess ? dtAccess->GetTicks() : dtMod->GetTicks();
2514 utm.modtime = dtMod ? dtMod->GetTicks() : dtAccess->GetTicks();
401eb3de 2515 if ( utime(GetFullPath().fn_str(), &utm) == 0 )
951cd180 2516 {
f363e05c 2517 return true;
951cd180 2518 }
951cd180 2519#else // other platform
7a893a31
WS
2520 wxUnusedVar(dtAccess);
2521 wxUnusedVar(dtMod);
2522 wxUnusedVar(dtCreate);
951cd180
VZ
2523#endif // platforms
2524
2525 wxLogSysError(_("Failed to modify file times for '%s'"),
2526 GetFullPath().c_str());
2527
f363e05c 2528 return false;
951cd180
VZ
2529}
2530
d9e80dce 2531bool wxFileName::Touch() const
951cd180
VZ
2532{
2533#if defined(__UNIX_LIKE__)
2534 // under Unix touching file is simple: just pass NULL to utime()
401eb3de 2535 if ( utime(GetFullPath().fn_str(), NULL) == 0 )
951cd180 2536 {
f363e05c 2537 return true;
951cd180
VZ
2538 }
2539
2540 wxLogSysError(_("Failed to touch the file '%s'"), GetFullPath().c_str());
2541
f363e05c 2542 return false;
951cd180
VZ
2543#else // other platform
2544 wxDateTime dtNow = wxDateTime::Now();
2545
6dbb903b 2546 return SetTimes(&dtNow, &dtNow, NULL /* don't change create time */);
951cd180
VZ
2547#endif // platforms
2548}
2549
2550bool wxFileName::GetTimes(wxDateTime *dtAccess,
2551 wxDateTime *dtMod,
6dbb903b 2552 wxDateTime *dtCreate) const
951cd180 2553{
2b5f62a0
VZ
2554#if defined(__WIN32__)
2555 // we must use different methods for the files and directories under
2556 // Windows as CreateFile(GENERIC_READ) doesn't work for the directories and
2557 // CreateFile(FILE_FLAG_BACKUP_SEMANTICS) works -- but only under NT and
2558 // not 9x
2559 bool ok;
2560 FILETIME ftAccess, ftCreate, ftWrite;
9a0c5c01 2561 if ( IsDir() )
2b5f62a0
VZ
2562 {
2563 // implemented in msw/dir.cpp
2564 extern bool wxGetDirectoryTimes(const wxString& dirname,
2565 FILETIME *, FILETIME *, FILETIME *);
2566
2567 // we should pass the path without the trailing separator to
2568 // wxGetDirectoryTimes()
2569 ok = wxGetDirectoryTimes(GetPath(wxPATH_GET_VOLUME),
2570 &ftAccess, &ftCreate, &ftWrite);
2571 }
2572 else // file
2573 {
f3c74c8d 2574 wxFileHandle fh(GetFullPath(), wxFileHandle::ReadAttr);
2b5f62a0
VZ
2575 if ( fh.IsOk() )
2576 {
2577 ok = ::GetFileTime(fh,
2578 dtCreate ? &ftCreate : NULL,
2579 dtAccess ? &ftAccess : NULL,
2580 dtMod ? &ftWrite : NULL) != 0;
2581 }
2582 else
2583 {
f363e05c 2584 ok = false;
2b5f62a0
VZ
2585 }
2586 }
2587
2588 if ( ok )
2589 {
2590 if ( dtCreate )
2591 ConvertFileTimeToWx(dtCreate, ftCreate);
2592 if ( dtAccess )
2593 ConvertFileTimeToWx(dtAccess, ftAccess);
2594 if ( dtMod )
2595 ConvertFileTimeToWx(dtMod, ftWrite);
2596
f363e05c 2597 return true;
2b5f62a0 2598 }
bf58daba 2599#elif defined(__UNIX_LIKE__) || defined(__WXMAC__) || defined(__OS2__) || (defined(__DOS__) && defined(__WATCOMC__))
51cb1a65 2600 // no need to test for IsDir() here
951cd180 2601 wxStructStat stBuf;
766fc092 2602 if ( wxStat( GetFullPath(), &stBuf) == 0 )
951cd180
VZ
2603 {
2604 if ( dtAccess )
2605 dtAccess->Set(stBuf.st_atime);
2606 if ( dtMod )
2607 dtMod->Set(stBuf.st_mtime);
6dbb903b
VZ
2608 if ( dtCreate )
2609 dtCreate->Set(stBuf.st_ctime);
951cd180 2610
f363e05c 2611 return true;
951cd180 2612 }
951cd180 2613#else // other platform
7a893a31
WS
2614 wxUnusedVar(dtAccess);
2615 wxUnusedVar(dtMod);
2616 wxUnusedVar(dtCreate);
951cd180
VZ
2617#endif // platforms
2618
2619 wxLogSysError(_("Failed to retrieve file times for '%s'"),
2620 GetFullPath().c_str());
2621
f363e05c 2622 return false;
951cd180
VZ
2623}
2624
e2b87f38
VZ
2625#endif // wxUSE_DATETIME
2626
23b8a262
JS
2627
2628// ----------------------------------------------------------------------------
2629// file size functions
2630// ----------------------------------------------------------------------------
2631
bd08f2f7
VZ
2632#if wxUSE_LONGLONG
2633
23b8a262
JS
2634/* static */
2635wxULongLong wxFileName::GetSize(const wxString &filename)
2636{
2637 if (!wxFileExists(filename))
2638 return wxInvalidSize;
2639
cdbce971
WS
2640#if defined(__WXPALMOS__)
2641 // TODO
2642 return wxInvalidSize;
2643#elif defined(__WIN32__)
f3c74c8d 2644 wxFileHandle f(filename, wxFileHandle::ReadAttr);
23b8a262
JS
2645 if (!f.IsOk())
2646 return wxInvalidSize;
2647
2648 DWORD lpFileSizeHigh;
2649 DWORD ret = GetFileSize(f, &lpFileSizeHigh);
5ab9534b 2650 if ( ret == INVALID_FILE_SIZE && ::GetLastError() != NO_ERROR )
23b8a262
JS
2651 return wxInvalidSize;
2652
5ab9534b
VZ
2653 return wxULongLong(lpFileSizeHigh, ret);
2654#else // ! __WIN32__
23b8a262 2655 wxStructStat st;
23b8a262 2656 if (wxStat( filename, &st) != 0)
23b8a262
JS
2657 return wxInvalidSize;
2658 return wxULongLong(st.st_size);
2659#endif
2660}
2661
2662/* static */
2663wxString wxFileName::GetHumanReadableSize(const wxULongLong &bs,
2664 const wxString &nullsize,
b2edb8f3
VZ
2665 int precision,
2666 wxSizeConvention conv)
23b8a262 2667{
b2edb8f3
VZ
2668 // deal with trivial case first
2669 if ( bs == 0 || bs == wxInvalidSize )
23b8a262
JS
2670 return nullsize;
2671
b2edb8f3
VZ
2672 // depending on the convention used the multiplier may be either 1000 or
2673 // 1024 and the binary infix may be empty (for "KB") or "i" (for "KiB")
7f19ef40 2674 double multiplier = 1024.;
b2edb8f3
VZ
2675 wxString biInfix;
2676
2677 switch ( conv )
2678 {
7f19ef40
VZ
2679 case wxSIZE_CONV_TRADITIONAL:
2680 // nothing to do, this corresponds to the default values of both
2681 // the multiplier and infix string
2682 break;
2683
b2edb8f3
VZ
2684 case wxSIZE_CONV_IEC:
2685 biInfix = "i";
b2edb8f3
VZ
2686 break;
2687
2688 case wxSIZE_CONV_SI:
2689 multiplier = 1000;
2690 break;
2691 }
2692
2693 const double kiloByteSize = multiplier;
2694 const double megaByteSize = multiplier * kiloByteSize;
2695 const double gigaByteSize = multiplier * megaByteSize;
2696 const double teraByteSize = multiplier * gigaByteSize;
2697
2698 const double bytesize = bs.ToDouble();
2699
2700 wxString result;
2701 if ( bytesize < kiloByteSize )
2702 result.Printf("%s B", bs.ToString());
2703 else if ( bytesize < megaByteSize )
2704 result.Printf("%.*f K%sB", precision, bytesize/kiloByteSize, biInfix);
2705 else if (bytesize < gigaByteSize)
2706 result.Printf("%.*f M%sB", precision, bytesize/megaByteSize, biInfix);
2707 else if (bytesize < teraByteSize)
2708 result.Printf("%.*f G%sB", precision, bytesize/gigaByteSize, biInfix);
2709 else
2710 result.Printf("%.*f T%sB", precision, bytesize/teraByteSize, biInfix);
23b8a262 2711
b2edb8f3 2712 return result;
23b8a262
JS
2713}
2714
2715wxULongLong wxFileName::GetSize() const
2716{
2717 return GetSize(GetFullPath());
2718}
2719
b2edb8f3
VZ
2720wxString wxFileName::GetHumanReadableSize(const wxString& failmsg,
2721 int precision,
2722 wxSizeConvention conv) const
23b8a262 2723{
b2edb8f3 2724 return GetHumanReadableSize(GetSize(), failmsg, precision, conv);
23b8a262
JS
2725}
2726
bd08f2f7 2727#endif // wxUSE_LONGLONG
23b8a262
JS
2728
2729// ----------------------------------------------------------------------------
2730// Mac-specific functions
2731// ----------------------------------------------------------------------------
2732
26eef304 2733#if defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON
4dfbcdd5 2734
56ce942b
VZ
2735namespace
2736{
2737
0ca4ae93 2738class MacDefaultExtensionRecord
4dfbcdd5 2739{
56ce942b
VZ
2740public:
2741 MacDefaultExtensionRecord()
2742 {
2743 m_type =
2744 m_creator = 0 ;
2745 }
4dfbcdd5 2746
56ce942b 2747 // default copy ctor, assignment operator and dtor are ok
0ca4ae93 2748
56ce942b
VZ
2749 MacDefaultExtensionRecord(const wxString& ext, OSType type, OSType creator)
2750 : m_ext(ext)
2751 {
2752 m_type = type;
2753 m_creator = creator;
2754 }
2755
2756 wxString m_ext;
2757 OSType m_type;
2758 OSType m_creator;
2759};
2760
2761WX_DECLARE_OBJARRAY(MacDefaultExtensionRecord, MacDefaultExtensionArray);
2762
2763bool gMacDefaultExtensionsInited = false;
0ca4ae93 2764
4dfbcdd5 2765#include "wx/arrimpl.cpp"
0ca4ae93 2766
56ce942b 2767WX_DEFINE_EXPORTED_OBJARRAY(MacDefaultExtensionArray);
4dfbcdd5 2768
56ce942b 2769MacDefaultExtensionArray gMacDefaultExtensions;
4dfbcdd5 2770
5974c3cf 2771// load the default extensions
56ce942b 2772const MacDefaultExtensionRecord gDefaults[] =
4dfbcdd5 2773{
56ce942b
VZ
2774 MacDefaultExtensionRecord( "txt", 'TEXT', 'ttxt' ),
2775 MacDefaultExtensionRecord( "tif", 'TIFF', '****' ),
2776 MacDefaultExtensionRecord( "jpg", 'JPEG', '****' ),
2777};
0ea621cc 2778
56ce942b 2779void MacEnsureDefaultExtensionsLoaded()
5974c3cf
SC
2780{
2781 if ( !gMacDefaultExtensionsInited )
4dfbcdd5 2782 {
5974c3cf
SC
2783 // we could load the pc exchange prefs here too
2784 for ( size_t i = 0 ; i < WXSIZEOF( gDefaults ) ; ++i )
2785 {
2786 gMacDefaultExtensions.Add( gDefaults[i] ) ;
2787 }
56ce942b 2788 gMacDefaultExtensionsInited = true;
0ea621cc 2789 }
4dfbcdd5 2790}
a2b77260 2791
56ce942b
VZ
2792} // anonymous namespace
2793
0ea621cc 2794bool wxFileName::MacSetTypeAndCreator( wxUint32 type , wxUint32 creator )
4dfbcdd5 2795{
a2b77260
SC
2796 FSRef fsRef ;
2797 FSCatalogInfo catInfo;
2798 FileInfo *finfo ;
4dfbcdd5 2799
a2b77260
SC
2800 if ( wxMacPathToFSRef( GetFullPath() , &fsRef ) == noErr )
2801 {
a62848fd
WS
2802 if ( FSGetCatalogInfo (&fsRef, kFSCatInfoFinderInfo, &catInfo, NULL, NULL, NULL) == noErr )
2803 {
2804 finfo = (FileInfo*)&catInfo.finderInfo;
2805 finfo->fileType = type ;
2806 finfo->fileCreator = creator ;
2807 FSSetCatalogInfo( &fsRef, kFSCatInfoFinderInfo, &catInfo ) ;
a2b77260 2808 return true ;
a62848fd 2809 }
a2b77260
SC
2810 }
2811 return false ;
4dfbcdd5
SC
2812}
2813
d9e80dce 2814bool wxFileName::MacGetTypeAndCreator( wxUint32 *type , wxUint32 *creator ) const
4dfbcdd5 2815{
a2b77260
SC
2816 FSRef fsRef ;
2817 FSCatalogInfo catInfo;
2818 FileInfo *finfo ;
4dfbcdd5 2819
a2b77260
SC
2820 if ( wxMacPathToFSRef( GetFullPath() , &fsRef ) == noErr )
2821 {
a62848fd
WS
2822 if ( FSGetCatalogInfo (&fsRef, kFSCatInfoFinderInfo, &catInfo, NULL, NULL, NULL) == noErr )
2823 {
2824 finfo = (FileInfo*)&catInfo.finderInfo;
2825 *type = finfo->fileType ;
2826 *creator = finfo->fileCreator ;
a2b77260 2827 return true ;
a62848fd 2828 }
a2b77260
SC
2829 }
2830 return false ;
4dfbcdd5
SC
2831}
2832
2833bool wxFileName::MacSetDefaultTypeAndCreator()
2834{
2835 wxUint32 type , creator ;
2836 if ( wxFileName::MacFindDefaultTypeAndCreator(GetExt() , &type ,
2837 &creator ) )
2838 {
f63fb56d
GD
2839 return MacSetTypeAndCreator( type , creator ) ;
2840 }
2841 return false;
4dfbcdd5
SC
2842}
2843
0ea621cc 2844bool wxFileName::MacFindDefaultTypeAndCreator( const wxString& ext , wxUint32 *type , wxUint32 *creator )
4dfbcdd5
SC
2845{
2846 MacEnsureDefaultExtensionsLoaded() ;
2847 wxString extl = ext.Lower() ;
2848 for( int i = gMacDefaultExtensions.Count() - 1 ; i >= 0 ; --i )
2849 {
2850 if ( gMacDefaultExtensions.Item(i).m_ext == extl )
2851 {
2852 *type = gMacDefaultExtensions.Item(i).m_type ;
2853 *creator = gMacDefaultExtensions.Item(i).m_creator ;
2854 return true ;
2855 }
2856 }
2857 return false ;
2858}
2859
2860void wxFileName::MacRegisterDefaultTypeAndCreator( const wxString& ext , wxUint32 type , wxUint32 creator )
2861{
56ce942b
VZ
2862 MacEnsureDefaultExtensionsLoaded();
2863 MacDefaultExtensionRecord rec(ext.Lower(), type, creator);
2864 gMacDefaultExtensions.Add( rec );
4dfbcdd5 2865}
56ce942b
VZ
2866
2867#endif // defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON