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

Function readdir

nodejs/test/e2e/session_fs_sqlite.e2e.test.ts:182–184  ·  view source on GitHub ↗
(path: string)

Source from the content-addressed store, hash-verified

180 await provider.mkdir(sp(path), { recursive, mode });
181 },
182 async readdir(path: string): Promise<string[]> {
183 return (await provider.readdir(sp(path))) as string[];
184 },
185 async readdirWithTypes(path: string): Promise<SessionFsReaddirWithTypesEntry[]> {
186 const names = (await provider.readdir(sp(path))) as string[];
187 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…