MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / getFileByPath

Method getFileByPath

src/db/queries.ts:1909–1915  ·  view source on GitHub ↗

* Get a file record by path

(filePath: string)

Source from the content-addressed store, hash-verified

1907 * Get a file record by path
1908 */
1909 getFileByPath(filePath: string): FileRecord | null {
1910 if (!this.stmts.getFileByPath) {
1911 this.stmts.getFileByPath = this.db.prepare('SELECT * FROM files WHERE path = ?');
1912 }
1913 const row = this.stmts.getFileByPath.get(filePath) as FileRow | undefined;
1914 return row ? rowToFileRecord(row) : null;
1915 }
1916
1917 /**
1918 * Get all tracked files

Callers 6

getFileMethod · 0.80
indexFilesMethod · 0.80
storeExtractionResultMethod · 0.80
syncMethod · 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