ext_dir: Find the DuckDB extension folder

View source: R/extensions.R

ext_dirR Documentation

Find the DuckDB extension folder

Description

Returns the path where DuckDB stores installed extension files. This is determined by the extension_directory setting.

Usage

ext_dir(conn = conn_default())

Arguments

conn

A DuckDB connection. Defaults to conn_default().

Value

Character scalar. Path to the extension directory.

Examples

conn <- DBI::dbConnect(duckdb::duckdb())
ext_dir(conn)
DBI::dbDisconnect(conn, shutdown = TRUE)

quak documentation built on June 9, 2026, 5:09 p.m.