Expand description
File System domain handlers for Wind IPC.
Contains both legacy runtime-based handlers and native URI-aware handlers used by VS Code’s DiskFileSystemProviderClient.
Functions§
- handle_
file_ clone_ native - Clone file (copy with metadata)
- handle_
file_ copy - Handler for file copy requests
- handle_
file_ delete - Handler for file delete requests
- handle_
file_ delete_ native - Delete file or directory with URI arg support
- handle_
file_ exists - Handler for file exists requests
- handle_
file_ exists_ native - Check file existence with URI arg support
- handle_
file_ mkdir - Handler for directory creation requests
- handle_
file_ mkdir_ native - Create directory with URI arg support
- handle_
file_ move - Handler for file move requests
- handle_
file_ read - Handler for file read requests
- handle_
file_ read_ binary - Handler for binary file read requests
- handle_
file_ read_ native - Read file with URI arg support (VS Code sends { scheme, path } objects) Returns { buffer: number[] } where buffer is the raw byte content.
- handle_
file_ readdir - Handler for directory reading requests
- handle_
file_ readdir_ native - Read directory contents with URI arg support Returns array of [name, fileType] tuples matching VS Code’s ReadDirResult
- handle_
file_ realpath - Resolve real path (follow symlinks)
- handle_
file_ rename_ native - Rename/move file with URI arg support
- handle_
file_ stat - Handler for file stat requests
- handle_
file_ stat_ native - Stat file - pure stat, no side effects. Returns IStat shape.
- handle_
file_ write - Handler for file write requests
- handle_
file_ write_ binary - Handler for binary file write requests
- handle_
file_ write_ native - Write file with URI arg support