----------------------------------------------------------------------------- Purpose: returns last write time of the file -----------------------------------------------------------------------------
| 343 | // Purpose: returns last write time of the file |
| 344 | //----------------------------------------------------------------------------- |
| 345 | int64_t CDirIterator::CurrentFileWriteTime() const |
| 346 | { |
| 347 | #if defined( _WIN32 ) |
| 348 | return FileTimeToUnixTime( m_pFindData->ftLastWriteTime ); |
| 349 | #else |
| 350 | return m_pFindData->time_write; |
| 351 | #endif |
| 352 | } |
| 353 | |
| 354 | |
| 355 | //----------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected