fs.enums

Enums used by PyFilesystem.

class fs.enums.ResourceType

Resource Types.

Positive values are reserved, negative values are implementation dependent.

Most filesystems will support only directory(1) and file(2). Other types exist to identify more exotic resource types supported by Linux filesystems.

class fs.enums.Seek

Constants used by io.IOBase.seek.

These match os.SEEK_CUR, os.SEEK_END, and os.SEEK_SET from the standard library.