Asynchronously removes a file or symbolic link. No arguments other than a
possible exception are given to the completion callback.
import { unlink } from'fs'; // Assuming that 'path/file.txt' is a regular file. unlink('path/file.txt', (err) => { if (err) throwerr; console.log('path/file.txt was deleted'); });
fs.unlink() will not work on a directory, empty or otherwise. To remove a
directory, use rmdir.
See the POSIX unlink(2) documentation for more details.
Asynchronously removes a file or symbolic link. No arguments other than a possible exception are given to the completion callback.
fs.unlink()
will not work on a directory, empty or otherwise. To remove a directory, use rmdir.See the POSIX
unlink(2)
documentation for more details.Since
v0.0.2