diff --git a/doc/api/fs.md b/doc/api/fs.md index 114a51c15dc5d6..7fc5bbfed7c518 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -1001,7 +1001,8 @@ changes: * `errorOnExist` {boolean} when `force` is `false`, and the destination exists, throw an error. **Default:** `false`. * `filter` {Function} Function to filter copied files/directories. Return - `true` to copy the item, `false` to ignore it. Can also return a `Promise` + `true` to copy the item, `false` to ignore it. When ignoring a directory, + all of its contents will be skipped as well. Can also return a `Promise` that resolves to `true` or `false` **Default:** `undefined`. * `src` {string} source path to copy. * `dest` {string} destination path to copy to. @@ -2351,7 +2352,8 @@ changes: * `errorOnExist` {boolean} when `force` is `false`, and the destination exists, throw an error. **Default:** `false`. * `filter` {Function} Function to filter copied files/directories. Return - `true` to copy the item, `false` to ignore it. Can also return a `Promise` + `true` to copy the item, `false` to ignore it. When ignoring a directory, + all of its contents will be skipped as well. Can also return a `Promise` that resolves to `true` or `false` **Default:** `undefined`. * `src` {string} source path to copy. * `dest` {string} destination path to copy to. @@ -5278,7 +5280,8 @@ changes: * `errorOnExist` {boolean} when `force` is `false`, and the destination exists, throw an error. **Default:** `false`. * `filter` {Function} Function to filter copied files/directories. Return - `true` to copy the item, `false` to ignore it. **Default:** `undefined` + `true` to copy the item, `false` to ignore it. When ignoring a directory, + all of its contents will be skipped as well. **Default:** `undefined` * `src` {string} source path to copy. * `dest` {string} destination path to copy to. * Returns: {boolean}