Interface UserFileOperationEvent

interface UserFileOperationEvent {
    correlationId: number;
    operation: FileOperation;
    source?: URI;
    target: URI;
}

Hierarchy

  • WaitUntilEvent
    • UserFileOperationEvent

Properties

correlationId: number

An identifier to correlate the operation through the different event types (before, after, error).

operation: FileOperation

The file operation that is taking place.

source?: URI

A property that is defined for move operations.

target: URI

The resource the event is about.