Files
e2b-dev--e2b/packages/python-sdk/tests/async/sandbox_async/files/test_exists.py
T
2026-07-13 12:47:58 +08:00

9 lines
225 B
Python

from e2b import AsyncSandbox
async def test_exists(async_sandbox: AsyncSandbox):
filename = "test_exists.txt"
await async_sandbox.files.write(filename, "test")
assert await async_sandbox.files.exists(filename)