Deno.chdir (directory: string): void
将当前工作目录更改为指定的路径.
原文: Change the current working directory to the specified path.
目录: 字符串
原文: directory: string
空的.(也可理解为无返回值)
原文: void
Deno.chdir("/home/userA");
Deno.chdir("../userB");
Deno.chdir("C:\\Program Files (x86)\\Java");
如果找不到目录,则抛出 Deno.errors.NotFound。
如果用户没有访问权限,则抛出 Deno.errors.PermissionDenied。需要 --allow-read。
原文:
Throws Deno.errors.NotFound if directory not found.
Throws Deno.errors.PermissionDenied if the user does not have access rights Requires --allow-read.