@@ -1048,6 +1048,16 @@ Renames `oldPath` to `newPath`.
1048
1048
<!-- YAML
1049
1049
added: v10.0.0
1050
1050
changes:
1051
+ - version: REPLACEME
1052
+ pr-url: https://github.com/nodejs/node/pull/37216
1053
+ description: " Using ` fsPromises.rmdir(path, { recursive: true })` on a ` path`
1054
+ that is a file is no longer permitted and results in an
1055
+ ` ENOENT` error on Windows and an ` ENOTDIR` error on POSIX ."
1056
+ - version: REPLACEME
1057
+ pr-url: https://github.com/nodejs/node/pull/37216
1058
+ description: " Using ` fsPromises.rmdir(path, { recursive: true })` on a ` path`
1059
+ that does not exist is no longer permitted and results in a
1060
+ ` ENOENT` error."
1051
1061
- version: REPLACEME
1052
1062
pr-url: https://github.com/nodejs/node/pull/37302
1053
1063
description: The `recursive` option is deprecated, using it triggers a
@@ -1075,8 +1085,8 @@ changes:
1075
1085
represents the number of retries. This option is ignored if the `recursive`
1076
1086
option is not `true`. **Default:** `0`.
1077
1087
* `recursive` {boolean} If `true`, perform a recursive directory removal. In
1078
- recursive mode, errors are not reported if `path` does not exist, and
1079
- operations are retried on failure. **Default:** `false`. **Deprecated**.
1088
+ recursive mode, operations are retried on failure. **Default:** `false`.
1089
+ **Deprecated**.
1080
1090
* `retryDelay` {integer} The amount of time in milliseconds to wait between
1081
1091
retries. This option is ignored if the `recursive` option is not `true`.
1082
1092
**Default:** `100`.
@@ -1088,10 +1098,8 @@ Using `fsPromises.rmdir()` on a file (not a directory) results in the
1088
1098
promise being rejected with an `ENOENT` error on Windows and an `ENOTDIR`
1089
1099
error on POSIX.
1090
1100
1091
- Setting `recursive` to `true` results in behavior similar to the Unix command
1092
- `rm -rf`: an error will not be raised for paths that do not exist, and paths
1093
- that represent files will be deleted. The `recursive` option is deprecated,
1094
- `ENOTDIR` and `ENOENT` will be thrown in the future.
1101
+ To get a behavior similar to the `rm -rf` Unix command, use
1102
+ [`fsPromises.rm()`][] with options `{ recursive: true, force: true }`.
1095
1103
1096
1104
### `fsPromises.rm(path[, options])`
1097
1105
<!-- YAML
@@ -3146,6 +3154,16 @@ rename('oldFile.txt', 'newFile.txt', (err) => {
3146
3154
<!-- YAML
3147
3155
added: v0.0 .2
3148
3156
changes:
3157
+ - version: REPLACEME
3158
+ pr- url: https: // github.com/nodejs/node/pull/37216
3159
+ description: " Using `fs.rmdir(path, { recursive: true })` on a `path` that is
3160
+ a file is no longer permitted and results in an `ENOENT` error
3161
+ on Windows and an `ENOTDIR` error on POSIX."
3162
+ - version: REPLACEME
3163
+ pr- url: https: // github.com/nodejs/node/pull/37216
3164
+ description: " Using `fs.rmdir(path, { recursive: true })` on a `path` that
3165
+ does not exist is no longer permitted and results in a `ENOENT`
3166
+ error."
3149
3167
- version: REPLACEME
3150
3168
pr- url: https: // github.com/nodejs/node/pull/37302
3151
3169
description: The ` recursive` option is deprecated, using it triggers a
@@ -3185,8 +3203,8 @@ changes:
3185
3203
represents the number of retries . This option is ignored if the ` recursive`
3186
3204
option is not ` true` . ** Default: ** ` 0` .
3187
3205
* ` recursive` {boolean} If ` true` , perform a recursive directory removal . In
3188
- recursive mode, errors are not reported if ` path ` does not exist, and
3189
- operations are retried on failure. ** Default : ** ` false ` . ** Deprecated** .
3206
+ recursive mode, operations are retried on failure. ** Default : ** ` false ` .
3207
+ ** Deprecated** .
3190
3208
* ` retryDelay` {integer} The amount of time in milliseconds to wait between
3191
3209
retries . This option is ignored if the ` recursive` option is not ` true` .
3192
3210
** Default: ** ` 100` .
@@ -3199,10 +3217,8 @@ to the completion callback.
3199
3217
Using ` fs.rmdir()` on a file (not a directory) results in an ` ENOENT` error on
3200
3218
Windows and an ` ENOTDIR` error on POSIX .
3201
3219
3202
- Setting ` recursive` to ` true` results in behavior similar to the Unix command
3203
- ` rm -rf` : an error will not be raised for paths that do not exist, and paths
3204
- that represent files will be deleted . The ` recursive` option is deprecated,
3205
- ` ENOTDIR` and ` ENOENT` will be thrown in the future.
3220
+ To get a behavior similar to the ` rm -rf` Unix command, use [` fs.rm()` ][]
3221
+ with options ` { recursive: true, force: true }` .
3206
3222
3207
3223
### ` fs.rm(path[, options], callback)`
3208
3224
<!-- YAML
@@ -4777,6 +4793,16 @@ See the POSIX rename(2) documentation for more details.
4777
4793
<!-- YAML
4778
4794
added: v0.1.21
4779
4795
changes:
4796
+ - version: REPLACEME
4797
+ pr-url: https://github.com/nodejs/node/pull/37216
4798
+ description: "Using ` fs .rmdirSync (path, { recursive: true })` on a ` path`
4799
+ that is a file is no longer permitted and results in an
4800
+ ` ENOENT ` error on Windows and an ` ENOTDIR ` error on POSIX."
4801
+ - version: REPLACEME
4802
+ pr-url: https://github.com/nodejs/node/pull/37216
4803
+ description: "Using ` fs .rmdirSync (path, { recursive: true })` on a ` path`
4804
+ that does not exist is no longer permitted and results in a
4805
+ ` ENOENT ` error."
4780
4806
- version: REPLACEME
4781
4807
pr-url: https://github.com/nodejs/node/pull/37302
4782
4808
description: The ` recursive` option is deprecated, using it triggers a
@@ -4808,8 +4834,8 @@ changes:
4808
4834
represents the number of retries. This option is ignored if the ` recursive`
4809
4835
option is not ` true ` . **Default:** ` 0 ` .
4810
4836
* ` recursive` {boolean} If ` true ` , perform a recursive directory removal. In
4811
- recursive mode, errors are not reported if ` path ` does not exist, and
4812
- operations are retried on failure. **Default:** ` false ` . **Deprecated**.
4837
+ recursive mode, operations are retried on failure. **Default:** ` false ` .
4838
+ **Deprecated**.
4813
4839
* ` retryDelay` {integer} The amount of time in milliseconds to wait between
4814
4840
retries. This option is ignored if the ` recursive` option is not ` true ` .
4815
4841
**Default:** ` 100 ` .
@@ -4819,10 +4845,8 @@ Synchronous rmdir(2). Returns `undefined`.
4819
4845
Using ` fs .rmdirSync ()` on a file (not a directory) results in an ` ENOENT ` error
4820
4846
on Windows and an ` ENOTDIR ` error on POSIX.
4821
4847
4822
- Setting ` recursive` to ` true ` results in behavior similar to the Unix command
4823
- ` rm - rf` : an error will not be raised for paths that do not exist, and paths
4824
- that represent files will be deleted. The ` recursive` option is deprecated,
4825
- ` ENOTDIR ` and ` ENOENT ` will be thrown in the future.
4848
+ To get a behavior similar to the ` rm - rf` Unix command, use [` fs .rmSync ()` ][]
4849
+ with options ` { recursive: true , force: true }` .
4826
4850
4827
4851
### ` fs .rmSync (path[, options])`
4828
4852
<!-- YAML
@@ -6670,6 +6694,8 @@ the file contents.
6670
6694
[` fs .readdirSync ()` ]: #fs_fs_readdirsync_path_options
6671
6695
[` fs .readv ()` ]: #fs_fs_readv_fd_buffers_position_callback
6672
6696
[` fs .realpath ()` ]: #fs_fs_realpath_path_options_callback
6697
+ [` fs .rm ()` ]: #fs_fs_rm_path_options_callback
6698
+ [` fs .rmSync ()` ]: #fs_fs_rmsync_path_options
6673
6699
[` fs .rmdir ()` ]: #fs_fs_rmdir_path_options_callback
6674
6700
[` fs .stat ()` ]: #fs_fs_stat_path_options_callback
6675
6701
[` fs .symlink ()` ]: #fs_fs_symlink_target_path_type_callback
@@ -6681,6 +6707,7 @@ the file contents.
6681
6707
[` fs .writev ()` ]: #fs_fs_writev_fd_buffers_position_callback
6682
6708
[` fsPromises .open ()` ]: #fs_fspromises_open_path_flags_mode
6683
6709
[` fsPromises .opendir ()` ]: #fs_fspromises_opendir_path_options
6710
+ [` fsPromises .rm ()` ]: #fs_fspromises_rm_path_options
6684
6711
[` fsPromises .utimes ()` ]: #fs_fspromises_utimes_path_atime_mtime
6685
6712
[` inotify (7 )` ]: https://man7.org/linux/man-pages/man7/inotify.7.html
6686
6713
[` kqueue (2 )` ]: https://www.freebsd.org/cgi/man.cgi?query=kqueue&sektion=2
0 commit comments