| 78 | [[nodiscard]] bool isDirB() const { return m_pFileInfoB != nullptr ? m_pFileInfoB->isDir() : false; } |
| 79 | [[nodiscard]] bool isDirC() const { return m_pFileInfoC != nullptr ? m_pFileInfoC->isDir() : false; } |
| 80 | [[nodiscard]] bool hasDir() const { return isDirA() || isDirB() || isDirC(); } |
| 81 | |
| 82 | [[nodiscard]] bool isLinkA() const { return m_pFileInfoA != nullptr ? m_pFileInfoA->isSymLink() : false; } |
| 83 | [[nodiscard]] bool isLinkB() const { return m_pFileInfoB != nullptr ? m_pFileInfoB->isSymLink() : false; } |
no outgoing calls
no test coverage detected