FileManagerDelete

The FileManagerDelete event notifies the client whenever a file is deleted using the DeleteFile method of the FileManager object.

EventNames:

  • FileManagerDelete_Post

Parameters

Type

Name

Description

String

fullFileName

The full filename of the file being deleted.

Examples:

FileManagerDelete_Post:

Register-InventorEvent -EventName FileManagerDelete_Post -Action 'PostFileManagerDelete'

function PostFileManagerDelete($fullFileName) {
	#Write event code here
}