Skip to main content

cwd

function Deno.cwd
allow-read
Jump to headingcwd(): string

Return a string representing the current working directory.

If the current directory can be reached via multiple paths (due to symbolic links), cwd() may return any one of them.

const currentWorkingDirectory = Deno.cwd();

Throws Deno.errors.NotFound if directory not available.

Requires allow-read permission.

Return Type Jump to heading

string
Back to top