Skip to content
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: fs - add path property to Write/ReadStream #4368

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions doc/api/fs.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ Stop watching for changes on the given `fs.FSWatcher`.

Emitted when the ReadStream's file is opened.

### readStream.path

The path to the file the stream is reading from.

## Class: fs.Stats

Objects returned from `fs.stat()`, `fs.lstat()` and `fs.fstat()` and their
Expand Down Expand Up @@ -196,6 +200,10 @@ Emitted when the WriteStream's file is opened.
The number of bytes written so far. Does not include data that is still queued
for writing.

### writeStream.path

The path to the file the stream is writing to.

## fs.access(path[, mode], callback)

Tests a user's permissions for the file specified by `path`. `mode` is an
Expand Down