Mark a file as recently used (prevents LRU eviction).
(self, path: str)
| 481 | self.working.remove(key) |
| 482 | |
| 483 | def touch_file(self, path: str): |
| 484 | """Mark a file as recently used (prevents LRU eviction).""" |
| 485 | key = str(Path(path).expanduser().resolve()) |
| 486 | self.working.touch(key) |
| 487 | |
| 488 | def list_files(self) -> List[str]: |
| 489 | """Return list of fully-resolved paths currently in working memory.""" |
no test coverage detected