If a script add-in implements the OnFileOperationComplete event, the method receives a FileOperationCompleteData object whenever a supported file operation begins. If you return True to indicate that you want to be notified about the operation, you'll receive another call when the operation is complete.
| Property Name | Return Type | Description |
|---|---|---|
action |
string |
Returns a string that indicates the type of file operation. Currently the only supported value is "rename". |
cmdline |
string |
Returns a string that provides the entire command line that launched this operation. |
data |
variant |
Used only when the query property (described below) is False. Provides further information about the operation that completed.
|
dest |
object:Path |
Returns a Path object representing the destination path of the operation, if any. |
qualifiers |
string |
Returns a string indicating any qualifier keys that were held down by the user when the operation was initiated. |
query |
bool |
Returns True the first time the OnFileOperationComplete event is called. |
source |
object:Path |
Returns a Path object representing the source path of the operation. |
tab |
object:Tab |
Returns a Tab object representing the source folder tab. |