----------------------------------------------------------------------------- Purpose: returns whether current item under examination is a hidden file -----------------------------------------------------------------------------
| 382 | // Purpose: returns whether current item under examination is a hidden file |
| 383 | //----------------------------------------------------------------------------- |
| 384 | bool CDirIterator::BCurrentIsHidden() const |
| 385 | { |
| 386 | #if defined( _WIN32 ) |
| 387 | return ( m_pFindData->dwFileAttributes & FILE_ATTRIBUTE_HIDDEN ) != 0; |
| 388 | #else |
| 389 | return ( m_pFindData->attrib & _A_HIDDEN ? true : false ); |
| 390 | #endif |
| 391 | } |
| 392 | |
| 393 | |
| 394 | //----------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected