Skip to main content

FileSystemRoot

Members


attributes

It is of the type FileAttributes. It may also be nil.


kind

It is always the string root.


pwd

It is of the type string.


root

It is of the type FileSystemDirectory.

Luau Type

This is the luau type for FileSystemRoot. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).

export type FileSystemRoot = {
pwd: string,
kind: "root",
attributes: FileAttributes?,
root: FileSystemDirectory,
}