git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62834
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxStructStat fbuf;
// get permissions of file1
wxStructStat fbuf;
// get permissions of file1
- if ( wxStat( file1.c_str(), &fbuf) != 0 )
+ if ( wxStat( file1, &fbuf) != 0 )
{
// the file probably doesn't exist or we haven't the rights to read
// from it anyhow
{
// the file probably doesn't exist or we haven't the rights to read
// from it anyhow
#define S_ISREG(mode) ((mode) & S_IFREG)
#endif
wxStructStat st;
#define S_ISREG(mode) ((mode) & S_IFREG)
#endif
wxStructStat st;
-#ifndef wxNEED_WX_UNISTD_H
- return (wxStat( filePath.fn_str() , &st) == 0 && S_ISREG(st.st_mode))
+
+ return (wxStat( filePath, &st) == 0 && S_ISREG(st.st_mode))
#ifdef __OS2__
|| (errno == EACCES) // if access is denied something with that name
// exists and is opened in exclusive mode.
#endif
;
#ifdef __OS2__
|| (errno == EACCES) // if access is denied something with that name
// exists and is opened in exclusive mode.
#endif
;
-#else
- return wxStat( filePath , &st) == 0 && S_ISREG(st.st_mode);
-#endif
#endif // __WIN32__/!__WIN32__
}
#endif // __WIN32__/!__WIN32__
}
wxStructStat st;
#ifndef __VISAGECPP__
wxStructStat st;
#ifndef __VISAGECPP__
- return wxStat(strPath.c_str(), &st) == 0 && ((st.st_mode & S_IFMT) == S_IFDIR);
+ return wxStat(strPath, &st) == 0 && ((st.st_mode & S_IFMT) == S_IFDIR);
#else
// S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
#else
// S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
- return wxStat(strPath.c_str(), &st) == 0 && (st.st_mode == S_IFDIR);
+ return wxStat(strPath, &st) == 0 && (st.st_mode == S_IFDIR);
#endif
#endif // __WIN32__/!__WIN32__
#endif
#endif // __WIN32__/!__WIN32__
#elif defined(__UNIX_LIKE__) || defined(__WXMAC__) || defined(__OS2__) || (defined(__DOS__) && defined(__WATCOMC__))
// no need to test for IsDir() here
wxStructStat stBuf;
#elif defined(__UNIX_LIKE__) || defined(__WXMAC__) || defined(__OS2__) || (defined(__DOS__) && defined(__WATCOMC__))
// no need to test for IsDir() here
wxStructStat stBuf;
- if ( wxStat( GetFullPath().c_str(), &stBuf) == 0 )
+ if ( wxStat( GetFullPath(), &stBuf) == 0 )
{
if ( dtAccess )
dtAccess->Set(stBuf.st_atime);
{
if ( dtAccess )
dtAccess->Set(stBuf.st_atime);
return wxULongLong(lpFileSizeHigh, ret);
#else // ! __WIN32__
wxStructStat st;
return wxULongLong(lpFileSizeHigh, ret);
#else // ! __WIN32__
wxStructStat st;
-#ifndef wxNEED_WX_UNISTD_H
- if (wxStat( filename.fn_str() , &st) != 0)
-#else
if (wxStat( filename, &st) != 0)
if (wxStat( filename, &st) != 0)
return wxInvalidSize;
return wxULongLong(st.st_size);
#endif
return wxInvalidSize;
return wxULongLong(st.st_size);
#endif
bool wxDoLaunchDefaultBrowser(const wxString& url, const wxString& scheme, int flags);
#elif defined(__WXX11__) || defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXCOCOA__) || \
bool wxDoLaunchDefaultBrowser(const wxString& url, const wxString& scheme, int flags);
#elif defined(__WXX11__) || defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXCOCOA__) || \
- (defined(__WXMAC__) && !defined(__WXOSX_IPHONE__))
// implemented in a port-specific utils source file:
bool wxDoLaunchDefaultBrowser(const wxString& url, int flags);
// implemented in a port-specific utils source file:
bool wxDoLaunchDefaultBrowser(const wxString& url, int flags);
lstat( m_filePath.fn_str(), &buff );
m_type |= S_ISLNK(buff.st_mode) ? is_link : 0;
#else // no lstat()
lstat( m_filePath.fn_str(), &buff );
m_type |= S_ISLNK(buff.st_mode) ? is_link : 0;
#else // no lstat()
- // only translate to file charset if we don't go by our
- // wxStat implementation
-#ifndef wxNEED_WX_UNISTD_H
- wxStat( m_filePath.fn_str() , &buff );
-#else
wxStat( m_filePath, &buff );
wxStat( m_filePath, &buff );
#endif
m_type |= (buff.st_mode & S_IFDIR) != 0 ? is_dir : 0;
#endif
m_type |= (buff.st_mode & S_IFDIR) != 0 ? is_dir : 0;
// caller will learn it soon enough when it calls GetFirst(wxDIR)
// anyhow
wxStructStat stBuf;
// caller will learn it soon enough when it calls GetFirst(wxDIR)
// anyhow
wxStructStat stBuf;
- if ( wxStat(M_DIR->GetName().c_str(), &stBuf) == 0 )
+ if ( wxStat(M_DIR->GetName(), &stBuf) == 0 )
{
switch ( stBuf.st_nlink )
{
{
switch ( stBuf.st_nlink )
{