pymel.core.system.crashInfo¶
- crashInfo(*args, **kwargs)¶
Provides an interface to the crash file information. In query mode, return type is based on queried flag.
Flags:
Long Name / Short Name Argument Types Properties crashFile / cf bool Return the crash file full path name. savedBeforeCrash / sbc bool Return the saved file full path name before crash. Flag can have multiple arguments, passed either as a tuple or a list. Derived from mel command maya.cmds.crashInfo
Example:
- ::
import pymel.core as pm
# query the crash file full path name # pm.crashInfo( q = True, cf = True) # Result: u’’ #
# query the saved file full path name before crash # pm.crashInfo( q = True, sbc = True) # Result: u’’ #