MCPcopy
hub / github.com/browser-use/browser-use / append

Method append

browser_use/filesystem/file_system.py:124–126  ·  view source on GitHub ↗
(self, content: str, path: Path)

Source from the content-addressed store, hash-verified

122 await self.sync_to_disk(path)
123
124 async def append(self, content: str, path: Path) -> None:
125 self.append_file_content(content)
126 await self.sync_to_disk(path)
127
128 def read(self) -> str:
129 return self.content

Calls 2

append_file_contentMethod · 0.95
sync_to_diskMethod · 0.95