-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: some fs doc improvements #17692
Conversation
doc/api/fs.md
Outdated
following is prone to error: | ||
Note that there is no guaranteed ordering when using asynchronous methods. | ||
So the following is prone to error because the `fs.stat()` operation may | ||
completely before the `fs.rename()` operation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be completely
-> complete
instead?
doc/api/fs.md
Outdated
* Returns: {boolean} | ||
|
||
Returns `true` if the `fs.Stats` object describes a character device. | ||
### stats.isDirectory() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: can we add a new line before this for consistency?
doc/api/fs.md
Outdated
* Returns: {boolean} | ||
|
||
Returns `true` if the `fs.Stats` object describes a file system directory. | ||
### stats.isFIFO() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto.
doc/api/fs.md
Outdated
|
||
* Value: {number} | ||
|
||
The timestamp indicating the last time this files status was changed expressed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:%s/files/file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this files
-> the file
or this file's
doc/api/fs.md
Outdated
|
||
* Value: {Date} | ||
|
||
The timestamp indicating the last time this files status was changed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:%s/files/file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this files
-> the file
or this file's
doc/api/fs.md
Outdated
The `fs` module provides an API for interacting with the file system in a | ||
manner closely modeled around standard POSIX functions. | ||
|
||
To use this module, use: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A nit: I am not sure, but are these two use a bit monotonous?
doc/api/fs.md
Outdated
Most `fs` operations accept filepaths that may be specified in the form of | ||
a string, a [`Buffer`][], or a [`URL`][] object using the `file:` protocol. | ||
|
||
String form paths are interpretted as UTF-8 character sequences identifying |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
interpretted -> interpreted ?
doc/api/fs.md
Outdated
Example using an absolute path on POSIX: | ||
|
||
```js | ||
fs.open(Buffer.from('/open/some/file.txt'), (err, fd) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing flag? ('r'
?)
doc/api/fs.md
Outdated
operations use these file descriptors to identify and track each specific | ||
file. Windows systems use a different but conceptually similar mechanism for | ||
tracking resources. To simplify things for users, Node.js abstracts away the | ||
specific differences between operating sytems and assigns all open files a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sytems -> systems
|
||
The object itself emits these events: | ||
All `fs.FSWatcher` objects are [`EventEmitter`][]'s that will emit a `'change'` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing reference?
doc/api/fs.md
Outdated
@@ -321,20 +401,12 @@ changes: | |||
description: Added times as numbers. | |||
--> | |||
|
|||
An `fs.Stats` object provides information about a file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An -> A ?
Returns `true` if the `fs.Stats` object describes a symbolic link. | ||
|
||
*Note*: This method is only valid when using [`fs.lstat()`][] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A nit: delete the extra new line?
doc/api/fs.md
Outdated
@@ -1715,6 +1936,11 @@ a colon, Node.js will open a file system stream, as described by | |||
Functions based on `fs.open()` exhibit this behavior as well. eg. | |||
`fs.writeFile()`, `fs.readFile()`, etc. | |||
|
|||
*Note:* On Windows, opening an existing hidden file using the `w` flag (either | |||
through `fs.open` or `fs.writeFile`) will fail with `EPERM`. Existing hidden |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fs.open
-> fs.open()
?
fs.writeFile
-> fs.writeFile()
?
doc/api/fs.md
Outdated
@@ -1715,6 +1936,11 @@ a colon, Node.js will open a file system stream, as described by | |||
Functions based on `fs.open()` exhibit this behavior as well. eg. | |||
`fs.writeFile()`, `fs.readFile()`, etc. | |||
|
|||
*Note:* On Windows, opening an existing hidden file using the `w` flag (either | |||
through `fs.open` or `fs.writeFile`) will fail with `EPERM`. Existing hidden | |||
files can be opened for writing with the `r+` flag. A call to `fs.ftruncate` can |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fs.ftruncate
-> fs.ftruncate()
?
doc/api/fs.md
Outdated
@@ -3324,6 +3325,7 @@ The following constants are meant for use with the [`fs.Stats`][] object's | |||
[`URL`]: url.html#url_the_whatwg_url_api | |||
[`UV_THREADPOOL_SIZE`]: cli.html#cli_uv_threadpool_size_size | |||
[`WriteStream`]: #fs_class_fs_writestream | |||
[`EventEmitter']: events.html |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Erroneous single quote instead of backtick?
PR-URL: #17692 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Vse Mozhet Byt <[email protected]>
Landed in 400e73a |
PR-URL: #17692 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Vse Mozhet Byt <[email protected]>
PR-URL: #17692 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Vse Mozhet Byt <[email protected]>
Are these changes applicable to 6.x or 8.x? |
Some improvements
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
fs doc