MCPcopy Create free account
hub / github.com/github/copilot-sdk / readdir

Function readdir

nodejs/test/e2e/session_fs.e2e.test.ts:259–261  ·  view source on GitHub ↗
(path: string)

Source from the content-addressed store, hash-verified

257 await provider.mkdir(path, { recursive, mode });
258 },
259 async readdir(path: string): Promise<string[]> {
260 return (await provider.readdir(path)) as string[];
261 },
262 async readdirWithTypes(path: string): Promise<SessionFsReaddirWithTypesEntry[]> {
263 const names = (await provider.readdir(path)) as string[];
264 return Promise.all(

Callers

nothing calls this directly

Calls 2

spFunction · 0.70
readdirMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…