MCPcopy
hub / github.com/modelcontextprotocol/servers / FileInfo

Interface FileInfo

src/filesystem/lib.ts:24–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22
23// Type definitions
24interface FileInfo {
25 size: number;
26 created: Date;
27 modified: Date;
28 accessed: Date;
29 isDirectory: boolean;
30 isFile: boolean;
31 permissions: string;
32}
33
34export interface SearchOptions {
35 excludePatterns?: string[];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected