MCPcopy
hub / github.com/colbymchenry/codegraph / getFileByPath

Method getFileByPath

src/db/queries.ts:1499–1505  ·  view source on GitHub ↗

* Get a file record by path

(filePath: string)

Source from the content-addressed store, hash-verified

1497 * Get a file record by path
1498 */
1499 getFileByPath(filePath: string): FileRecord | null {
1500 if (!this.stmts.getFileByPath) {
1501 this.stmts.getFileByPath = this.db.prepare('SELECT * FROM files WHERE path = ?');
1502 }
1503 const row = this.stmts.getFileByPath.get(filePath) as FileRow | undefined;
1504 return row ? rowToFileRecord(row) : null;
1505 }
1506
1507 /**
1508 * Get all tracked files

Callers 5

getFileMethod · 0.80
indexFilesMethod · 0.80
storeExtractionResultMethod · 0.80
getChangedFilesMethod · 0.80
security.test.tsFile · 0.80

Calls 3

rowToFileRecordFunction · 0.85
prepareMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected