Asynchronously changes the permissions of a file. No arguments other than a possible exception are given to the completion callback.
See the POSIX chmod(2) documentation for more detail.
chmod(2)
import { chmod } from 'node:fs';chmod('my_file.txt', 0o775, (err) => { if (err) throw err; console.log('The permissions for file "my_file.txt" have been changed!');}); Copy
import { chmod } from 'node:fs';chmod('my_file.txt', 0o775, (err) => { if (err) throw err; console.log('The permissions for file "my_file.txt" have been changed!');});
v0.1.30
Generated using TypeDoc
Asynchronously changes the permissions of a file. No arguments other than a possible exception are given to the completion callback.
See the POSIX
chmod(2)
documentation for more detail.