React to file system events, including calls originating from the
application or event coming from the system's filesystem directly
(actual file watching).
on(will|did)(create|rename|delete) events solely come from application
usage, not from actual filesystem.
since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908),
instead use FileService.onDidRunUserOperation for events triggered by user gestures
or FileService.onDidRunOperation triggered by user gestures and programmatically
since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908),
instead use FileService.onDidRunUserOperation for events triggered by user gestures
or FileService.onDidRunOperation triggered by user gestures and programmatically
since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908),
instead use FileService.onDidRunUserOperation for events triggered by user gestures
or FileService.onDidRunOperation triggered by user gestures and programmatically
React to file system events, including calls originating from the application or event coming from the system's filesystem directly (actual file watching).
on(will|did)(create|rename|delete)
events solely come from application usage, not from actual filesystem.since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use
FileService.watch
instead