MCPcopy Index your code
hub / github.com/github/copilot-sdk / handle_session_fs_stat

Function handle_session_fs_stat

python/copilot/generated/rpc.py:26977–26982  ·  view source on GitHub ↗
(params: dict)

Source from the content-addressed store, hash-verified

26975 return result.to_dict()
26976 client.set_request_handler("sessionFs.exists", handle_session_fs_exists)
26977 async def handle_session_fs_stat(params: dict) -> dict | None:
26978 request = SessionFSStatRequest.from_dict(params)
26979 handler = get_handlers(request.session_id).session_fs
26980 if handler is None: raise RuntimeError(f"No session_fs handler registered for session: {request.session_id}")
26981 result = await handler.stat(request)
26982 return result.to_dict()
26983 client.set_request_handler("sessionFs.stat", handle_session_fs_stat)
26984 async def handle_session_fs_mkdir(params: dict) -> dict | None:
26985 request = SessionFSMkdirRequest.from_dict(params)

Callers

nothing calls this directly

Calls 3

statMethod · 0.65
from_dictMethod · 0.45
to_dictMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…