----------------------------------------------------------------------------- Purpose: returns the creation time of the file -----------------------------------------------------------------------------
| 356 | // Purpose: returns the creation time of the file |
| 357 | //----------------------------------------------------------------------------- |
| 358 | int64_t CDirIterator::CurrentFileCreateTime() const |
| 359 | { |
| 360 | #if defined( _WIN32 ) |
| 361 | return FileTimeToUnixTime( m_pFindData->ftCreationTime ); |
| 362 | #else |
| 363 | return m_pFindData->time_create; |
| 364 | #endif |
| 365 | } |
| 366 | |
| 367 | |
| 368 | //----------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected