Enum DirEntry

Variants in this enum represent a path in the filesystem.

scoped enum DirEntry
{
    Directory(String),
    File(String)
}