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