FileType

API: Stable

The type of a UFile

enum class FileType {
    FILE,
    DIRECTORY,
    SOFT_LINK,
    DANGLING_METADATA,
}
Properties
FILE A regular file
DIRECTORY A directory of files used for organization
SOFT_LINK A soft symbolic link which points to a different file path
DANGLING_METADATA Indicates that there used to be a file with metadata here, but the file no longer exists

API: Experimental/Alpha