simetrix.FileForensic

class simetrix.FileForensic(*values)

Bases: Enum

Code indication reason for file open failure.

Attributes

NOERROR

No error.

DIRNOTEXIST

Directory where file is to reside does not exist.

DIRPRIV

Directory is read only.

READONLY

File has read-only attribute.

WRITELOCKED

File is locked by another process or user does not have required privilege to access.

UNKNOWN

Unknown error.

DIRNOTEXIST = 1

Directory where file is to reside does not exist.

DIRPRIV = 2

Directory is read only.

NOERROR = 0

No error.

READONLY = 3

File has read-only attribute.

UNKNOWN = 5

Unknown error.

WRITELOCKED = 4

File is locked by another process or user does not have required privilege to access.