MCPcopy Index your code
hub / github.com/scriptscat/scriptcat / createDir

Method createDir

packages/filesystem/limiter.ts:126–128  ·  view source on GitHub ↗
(dir: string, opts?: FileCreateOptions)

Source from the content-addressed store, hash-verified

124 }
125
126 createDir(dir: string, opts?: FileCreateOptions): Promise<void> {
127 return this.limiter.execute(() => this.fs.createDir(dir, opts), "createDir");
128 }
129
130 delete(path: string): Promise<void> {
131 return this.limiter.execute(() => this.fs.delete(path), "delete");

Callers

nothing calls this directly

Calls 2

executeMethod · 0.65
createDirMethod · 0.65

Tested by

no test coverage detected