Deno.chmodSync (path: string | URL, mode: number): void
同步更改指定路径的特定文件/目录的权限。 忽略进程的umask。
原文: Synchronously changes the permission of a specific file/directory of specified path. Ignores the process's umask.
路径 : 字符串 | URL
模式 : 数字
原文:
path : string | URL
mode : number
void
原文: void
await Deno.chmodSync("/path/to/file", 0o666);
有关完整说明,请参见 chmod
注意:此API当前在Windows上抛出
需要 allow-write 权限。
For a full description, see chmod
NOTE: This API currently throws on Windows
Requires allow-write permission.