mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
35 lines
587 B
C
35 lines
587 B
C
|
/*
|
||
|
* Copyright (c) 2023, Sam Atkins <atkinssj@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/DeprecatedString.h>
|
||
|
|
||
|
struct dirent;
|
||
|
|
||
|
namespace Core {
|
||
|
|
||
|
struct DirectoryEntry {
|
||
|
enum class Type {
|
||
|
BlockDevice,
|
||
|
CharacterDevice,
|
||
|
Directory,
|
||
|
File,
|
||
|
NamedPipe,
|
||
|
Socket,
|
||
|
SymbolicLink,
|
||
|
Unknown,
|
||
|
Whiteout,
|
||
|
};
|
||
|
Type type;
|
||
|
// FIXME: Once we have a special Path string class, use that.
|
||
|
DeprecatedString name;
|
||
|
|
||
|
static DirectoryEntry from_dirent(dirent const&);
|
||
|
};
|
||
|
|
||
|
}
|