/**************************************************************************** ** ** Copyright (C) 2022 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ******************************************************************************/ #ifndef QDIRITERATOR_H #define QDIRITERATOR_H #include QT_BEGIN_NAMESPACE class QDirIteratorPrivate; class Q_CORE_EXPORT QDirIterator { public: enum IteratorFlag { NoIteratorFlags = 0x0, FollowSymlinks = 0x1, Subdirectories = 0x2 }; Q_DECLARE_FLAGS(IteratorFlags, IteratorFlag) QDirIterator(const QDir &dir, IteratorFlags flags = NoIteratorFlags); QDirIterator(const QString &path, IteratorFlags flags = NoIteratorFlags); QDirIterator(const QString &path, QDir::Filters filter, IteratorFlags flags = NoIteratorFlags); QDirIterator(const QString &path, const QStringList &nameFilters, QDir::Filters filters = QDir::NoFilter, IteratorFlags flags = NoIteratorFlags); ~QDirIterator(); QString next(); bool hasNext() const; QString fileName() const; QString filePath() const; QFileInfo fileInfo() const; QString path() const; private: Q_DISABLE_COPY(QDirIterator) QScopedPointer d; friend class QDir; }; Q_DECLARE_OPERATORS_FOR_FLAGS(QDirIterator::IteratorFlags) QT_END_NAMESPACE #endif