chdir method
Change the current working directory to the specified path.
Deno.chdir("/home/userA");
Deno.chdir("../userB");
Deno.chdir("C:\\Program Files (x86)\\Java");
Throws {@linkcode Deno.errors.NotFound} if directory not found.
Throws {@linkcode Deno.errors.PermissionDenied} if the user does not have operating system file access rights.
Requires allow-read
permission.
Implementation
void chdir(_i2.Object directory) {
_i3.callMethod(
this,
'chdir',
[directory],
);
}