AutosaveFile

Returns or changes the file name used by Rhino's automatic file saving mechanism.

Syntax

rhinoscriptsyntax.AutosaveFile (filename=None)

rhinoscript.application.AutosaveFile (filename=None)

Parameters

filename

Optional.  String.  The name of the new autosave file.

Returns

String

If an autosave file is not specified, the name of the current autosave file if successful.

String

If an autosave file is specified, the name of the previous autosave file if successful.

Example

import rhinoscriptsyntax as rs

file = rs.AutosaveFile()

print "The current autosave file is", file

Also See

AutosaveInterval

EnableAutosave