MCPcopy
hub / github.com/marimo-team/marimo / stat

Method stat

marimo/_utils/async_path.py:70–72  ·  view source on GitHub ↗

Return stat info for the path.

(self)

Source from the content-addressed store, hash-verified

68 return await asyncio.to_thread(self._path.is_symlink)
69
70 async def stat(self) -> os.stat_result:
71 """Return stat info for the path."""
72 return await asyncio.to_thread(self._path.stat)
73
74 async def lstat(self) -> os.stat_result:
75 """Return lstat info for the path (doesn't follow symlinks)."""

Callers 15

test_statMethod · 0.95
test_chmodMethod · 0.95
_Function · 0.80
_valid_pathFunction · 0.80
last_modifiedMethod · 0.80
replacerFunction · 0.80
get_recentsMethod · 0.80
recurseMethod · 0.80
list_filesMethod · 0.80
_get_file_infoMethod · 0.80
searchMethod · 0.80

Calls

no outgoing calls