Skip to main content

Volume

E2B Volume for persistent storage that can be mounted to sandboxes.

create

Create a new volume. Arguments:
  • name: Name of the volume
Returns: A Volume instance for the new volume

connect

Connect to an existing volume by ID. Arguments:
  • volume_id: Volume ID
Returns: A Volume instance for the existing volume

destroy

Destroy a volume. Arguments:
  • volume_id: Volume ID

make_dir

Create a directory. Arguments:
  • path: Path to the directory to create
  • uid: User ID of the created directory
  • gid: Group ID of the created directory
  • mode: Mode of the created directory
  • force: Create parent directories if they don’t exist
  • opts: Connection options
Returns: Information about the created directory

exists

Check whether a file or directory exists. Uses get_info under the hood. Returns True if the path exists, False if it does not (404). Other errors are re-raised. Arguments:
  • path: Path to the file or directory
  • opts: Connection options
Returns: True if the path exists, False otherwise

update_metadata

Update file or directory metadata. Arguments:
  • path: Path to the file or directory
  • uid: User ID of the file or directory
  • gid: Group ID of the file or directory
  • mode: Mode of the file or directory
  • opts: Connection options
Returns: Updated entry information

read_file

Read file content. You can pass text, bytes, or stream to format to change the return type. Arguments:
  • path: Path to the file
  • format: Format of the file content—text by default
  • opts: Connection options
Returns: File content as string, bytes, or iterator of bytes

write_file

Write content to a file. Writing to a file that doesn’t exist creates the file. Writing to a file that already exists overwrites the file. Arguments:
  • path: Path to the file
  • data: Data to write to the file. Data can be a string, bytes, or IO.
  • uid: User ID of the created file
  • gid: Group ID of the created file
  • mode: Mode of the created file
  • force: Force overwrite of an existing file
  • opts: Connection options
Returns: Information about the written file

remove

Remove a file or directory. Arguments:
  • path: Path to the file or directory to remove
  • opts: Connection options