doc: improved documentation for fs.unlink()
Refs: https://github.com/nodejs/node/issues/11135 PR-URL: https://github.com/nodejs/node/pull/18843 Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matheus Marchini <matheus@sthima.com>
This commit is contained in:
parent
2caa1f5458
commit
e83adf87f5
@ -2749,8 +2749,21 @@ changes:
|
||||
* `callback` {Function}
|
||||
* `err` {Error}
|
||||
|
||||
Asynchronous unlink(2). No arguments other than a possible exception are given
|
||||
to the completion callback.
|
||||
Asynchronously removes a file or symbolic link. No arguments other than a
|
||||
possible exception are given to the completion callback.
|
||||
|
||||
```js
|
||||
// Assuming that 'path/file.txt' is a regular file.
|
||||
fs.unlink('path/file.txt', (err) => {
|
||||
if (err) throw err;
|
||||
console.log('path/file.txt was deleted');
|
||||
});
|
||||
```
|
||||
|
||||
`fs.unlink()` will not work on a directory, empty or otherwise. To remove a
|
||||
directory, use [`fs.rmdir()`][].
|
||||
|
||||
See also: unlink(2)
|
||||
|
||||
## fs.unlinkSync(path)
|
||||
<!-- YAML
|
||||
@ -4472,6 +4485,7 @@ The following constants are meant for use with the [`fs.Stats`][] object's
|
||||
[`fs.read()`]: #fs_fs_read_fd_buffer_offset_length_position_callback
|
||||
[`fs.readFile()`]: #fs_fs_readfile_path_options_callback
|
||||
[`fs.readFileSync()`]: #fs_fs_readfilesync_path_options
|
||||
[`fs.rmdir()`]: #fs_fs_rmdir_path_callback
|
||||
[`fs.stat()`]: #fs_fs_stat_path_callback
|
||||
[`fs.utimes()`]: #fs_fs_utimes_path_atime_mtime_callback
|
||||
[`fs.watch()`]: #fs_fs_watch_filename_options_listener
|
||||
|
Loading…
x
Reference in New Issue
Block a user