Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/api/fs.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/api/fs.md b/doc/api/fs.md
index 2f15aeeb73c..c0b28fc5073 100644
--- a/doc/api/fs.md
+++ b/doc/api/fs.md
@@ -565,6 +565,11 @@ In general, check for the accessibility of a file only if the file will not be
used directly, for example when its accessibility is a signal from another
process.
+On Windows, access-control policies (ACLs) on a directory may limit access to
+a file or directory. The `fs.access()` function, however, does not check the
+ACL and therefore may report that a path is accessible even if the ACL restricts
+the user from reading or writing to it.
+
## fs.accessSync(path[, mode])
<!-- YAML
added: v0.11.15