From 72540290a141c230a5a12d0563faa789e3657558 Mon Sep 17 00:00:00 2001 From: Livia Medeiros Date: Mon, 25 Sep 2023 23:57:19 +0900 Subject: [PATCH] doc: deprecate `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` PR-URL: https://github.com/nodejs/node/pull/49683 Reviewed-By: Yagiz Nizipli --- doc/api/deprecations.md | 14 ++++++++++++++ doc/api/fs.md | 4 ++++ 2 files changed, 18 insertions(+) diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index 418be70775a01c..0db6f238ec232b 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -3414,6 +3414,20 @@ Type: Documentation-only The [`util.toUSVString()`][] API is deprecated. Please use [`String.prototype.toWellFormed`][] instead. +### DEP0175: `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` + + + +Type: Documentation-only + +`F_OK`, `R_OK`, `W_OK` and `X_OK` getters exposed directly on `node:fs` are +deprecated. Get them from `fs.constants` or `fs.promises.constants` instead. + [NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf [RFC 6066]: https://tools.ietf.org/html/rfc6066#section-3 [RFC 8247 Section 2.4]: https://www.rfc-editor.org/rfc/rfc8247#section-2.4 diff --git a/doc/api/fs.md b/doc/api/fs.md index 07d5ec9a439835..98abd7eadd8714 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -1830,6 +1830,10 @@ concurrent modifications on the same file or data corruption may occur.