From cf29b2f815967ab9e5638dd6e3138a040fa775f9 Mon Sep 17 00:00:00 2001 From: Nikolai Vavilov Date: Sat, 2 Apr 2016 16:44:18 +0300 Subject: [PATCH] doc: document intention and dangers of fs module Buffer API PR-URL: https://github.com/nodejs/node/pull/6020 Reviewed-By: James M Snell --- doc/api/fs.markdown | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown index 8a05ffa3c23ea9..22eb14c9dab5de 100644 --- a/doc/api/fs.markdown +++ b/doc/api/fs.markdown @@ -94,6 +94,18 @@ Error: EISDIR, read ``` +## Buffer API + +`fs` functions support passing and receiving paths as both strings +and Buffers. The latter is intended to make it possible to work with +filesystems that allow for non-UTF-8 filenames. For most typical +uses, working with paths as Buffers will be unnecessary, as the string +API converts to and from UTF-8 automatically. + +*Note* that on certain file systems (such as NTFS and HFS+) filenames +will always be encoded as UTF-8. On such file systems, passing +non-UTF-8 encoded Buffers to `fs` functions will not work as expected. + ## Class: fs.FSWatcher Objects returned from `fs.watch()` are of this type.