Skip to main content
lchmodSync - node__fs.d.ts - Node documentation
function lchmodSync

Usage in Deno

```typescript import { lchmodSync } from "node:node__fs.d.ts"; ```
lchmodSync(
path: PathLike,
mode: Mode,
): void
Deprecated
Since v0.4.7
Changes the permissions on a symbolic link. Returns `undefined`. This method is only implemented on macOS. See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail.

Parameters

path: PathLike
mode: Mode

Return Type

void