git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13836
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxFileExists (const wxString& filename)
{
#if defined(__WIN32__) && !defined(__WXMICROWIN__)
wxFileExists (const wxString& filename)
{
#if defined(__WIN32__) && !defined(__WXMICROWIN__)
- // GetFileAttributes can copy with network paths
+ // GetFileAttributes can copy with network paths unlike stat()
DWORD ret = ::GetFileAttributes(filename);
if ( ret == (DWORD)-1 )
{
DWORD ret = ::GetFileAttributes(filename);
if ( ret == (DWORD)-1 )
{
bool wxPathExists(const wxChar *pszPathName)
{
wxString strPath(pszPathName);
bool wxPathExists(const wxChar *pszPathName)
{
wxString strPath(pszPathName);
#ifdef __WINDOWS__
// Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
// so remove all trailing backslashes from the path - but don't do this for
#ifdef __WINDOWS__
// Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
// so remove all trailing backslashes from the path - but don't do this for
#endif // __WINDOWS__
#if defined(__WIN32__) && !defined(__WXMICROWIN__)
#endif // __WINDOWS__
#if defined(__WIN32__) && !defined(__WXMICROWIN__)
- // Stat can't cope with network paths
- DWORD ret = ::GetFileAttributes(filename);
+ // stat() can't cope with network paths
+ DWORD ret = ::GetFileAttributes(strPath);
if ( ret == (DWORD)-1 )
{
wxLogLastError(_T("GetFileAttributes"));
if ( ret == (DWORD)-1 )
{
wxLogLastError(_T("GetFileAttributes"));
}
return (ret & FILE_ATTRIBUTE_DIRECTORY) != 0;
}
return (ret & FILE_ATTRIBUTE_DIRECTORY) != 0;
wxStructStat st;
#ifndef __VISAGECPP__
wxStructStat st;
#ifndef __VISAGECPP__
(st.st_mode == S_IFDIR);
#endif
(st.st_mode == S_IFDIR);
#endif
+#endif // __WIN32__/!__WIN32__
}
// Get a temporary filename, opening and closing the file.
}
// Get a temporary filename, opening and closing the file.