File indexing completed on 2024-04-21 05:48:30

0001 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0002 // SPDX-FileCopyrightText: 2022 Harald Sitter <sitter@kde.org>
0003 
0004 #pragma once
0005 
0006 #include <QByteArray>
0007 
0008 struct DirectoryEntry {
0009     QByteArray name;
0010     bool isSkipable = true;
0011     bool isDuplicate = false; // Only set once we have counted specific inode
0012     bool isDir = false;
0013     bool isFile = false;
0014     size_t size = 0;
0015 };