git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15097
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
m_hFile = ::CreateFile
(
filename, // name
m_hFile = ::CreateFile
(
filename, // name
- mode == Read ? GENERIC_READ // access mask
+ mode == Read ? GENERIC_READ // access mask
: GENERIC_WRITE,
0, // no sharing
NULL, // no secutity attr
: GENERIC_WRITE,
0, // no sharing
NULL, // no secutity attr
_T("the path shouldn't contain file name nor extension") );
#else // !__WXDEBUG__
_T("the path shouldn't contain file name nor extension") );
#else // !__WXDEBUG__
- SplitPath(fullname, NULL /* no path */, &name, &ext, format);
+ SplitPath(fullname, NULL /* no path */, &name, &ext, format);
SplitPath(fullpath, &volume, &path, NULL, NULL, format);
#endif // __WXDEBUG__/!__WXDEBUG__
SplitPath(fullpath, &volume, &path, NULL, NULL, format);
#endif // __WXDEBUG__/!__WXDEBUG__
filename.AssignDir(dir);
wxString currPath;
filename.AssignDir(dir);
wxString currPath;
- if ( filename.HasVolume())
- {
+ if ( filename.HasVolume())
+ {
currPath << wxGetVolumeString(filename.GetVolume(), wxPATH_NATIVE);
currPath << wxGetVolumeString(filename.GetVolume(), wxPATH_NATIVE);
wxArrayString dirs = filename.GetDirs();
size_t count = dirs.GetCount();
wxArrayString dirs = filename.GetDirs();
size_t count = dirs.GetCount();
if ( m_dirs.IsEmpty() && IsDir() )
{
m_dirs.Add(_T('.'));
if ( m_dirs.IsEmpty() && IsDir() )
{
m_dirs.Add(_T('.'));
}
else if ( format == wxPATH_UNIX )
{
}
else if ( format == wxPATH_UNIX )
{
- if (!m_relative)
- fullpath += wxFILE_SEP_PATH_UNIX;
+ if ( !m_relative )
+ {
+ // normally the absolute file names starts with a slash with one
+ // exception: file names like "~/foo.bar" don't have it
+ if ( m_dirs.IsEmpty() || m_dirs[0u] != _T('~') )
+ {
+ fullpath += wxFILE_SEP_PATH_UNIX;
+ }
+ }
}
// then concatenate all the path components using the path separator
}
// then concatenate all the path components using the path separator
switch (format)
{
case wxPATH_MAC:
switch (format)
{
case wxPATH_MAC:
- if (m_dirs[i] == wxT("."))
- break;
- if (m_dirs[i] != wxT("..")) // convert back from ".." to nothing
+ if ( m_dirs[i] == wxT(".") )
+ {
+ // skip appending ':', this shouldn't be done in this
+ // case as "::" is interpreted as ".." under Unix
+ continue;
+ }
+
+ // convert back from ".." to nothing
+ if ( m_dirs[i] != wxT("..") )
fullpath += m_dirs[i];
break;
fullpath += m_dirs[i];
break;
case wxPATH_VMS:
// TODO: What to do with ".." under VMS
case wxPATH_VMS:
// TODO: What to do with ".." under VMS
- if (m_dirs[i] != wxT("..")) // convert back from ".." to nothing
+ // convert back from ".." to nothing
+ if ( m_dirs[i] != wxT("..") )
fullpath += m_dirs[i];
break;
}
fullpath += m_dirs[i];
break;
}
MacDefaultExtensionRecord defaults[] =
{
{ "txt" , 'TEXT' , 'ttxt' } ,
MacDefaultExtensionRecord defaults[] =
{
{ "txt" , 'TEXT' , 'ttxt' } ,
} ;
// we could load the pc exchange prefs here too
} ;
// we could load the pc exchange prefs here too
for ( int i = 0 ; i < WXSIZEOF( defaults ) ; ++i )
{
gMacDefaultExtensions.Add( defaults[i] ) ;
for ( int i = 0 ; i < WXSIZEOF( defaults ) ; ++i )
{
gMacDefaultExtensions.Add( defaults[i] ) ;
gMacDefaultExtensionsInited = true ;
}
}
gMacDefaultExtensionsInited = true ;
}
}
-bool wxFileName::MacSetTypeAndCreator( wxUint32 type , wxUint32 creator )
+bool wxFileName::MacSetTypeAndCreator( wxUint32 type , wxUint32 creator )
{
FInfo fndrInfo ;
FSSpec spec ;
{
FInfo fndrInfo ;
FSSpec spec ;
-bool wxFileName::MacGetTypeAndCreator( wxUint32 *type , wxUint32 *creator )
+bool wxFileName::MacGetTypeAndCreator( wxUint32 *type , wxUint32 *creator )
{
FInfo fndrInfo ;
FSSpec spec ;
{
FInfo fndrInfo ;
FSSpec spec ;
-bool wxFileName::MacFindDefaultTypeAndCreator( const wxString& ext , wxUint32 *type , wxUint32 *creator )
+bool wxFileName::MacFindDefaultTypeAndCreator( const wxString& ext , wxUint32 *type , wxUint32 *creator )
{
MacEnsureDefaultExtensionsLoaded() ;
wxString extl = ext.Lower() ;
{
MacEnsureDefaultExtensionsLoaded() ;
wxString extl = ext.Lower() ;