2012-02-27 20:09:33 +01:00
|
|
|
|
# File System
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
|
> Stability: 2 - Stable
|
2012-03-03 00:14:03 +01:00
|
|
|
|
|
2012-03-04 02:14:06 +01:00
|
|
|
|
<!--name=fs-->
|
|
|
|
|
|
2010-10-28 14:18:16 +02:00
|
|
|
|
File I/O is provided by simple wrappers around standard POSIX functions. To
|
|
|
|
|
use this module do `require('fs')`. All the methods have asynchronous and
|
2010-11-21 23:22:34 +01:00
|
|
|
|
synchronous forms.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-08-14 21:56:26 +02:00
|
|
|
|
The asynchronous form always takes a completion callback as its last argument.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
The arguments passed to the completion callback depend on the method, but the
|
|
|
|
|
first argument is always reserved for an exception. If the operation was
|
|
|
|
|
completed successfully, then the first argument will be `null` or `undefined`.
|
|
|
|
|
|
2011-08-31 15:12:34 +02:00
|
|
|
|
When using the synchronous form any exceptions are immediately thrown.
|
|
|
|
|
You can use try/catch to handle exceptions or allow them to bubble up.
|
|
|
|
|
|
2010-10-28 14:18:16 +02:00
|
|
|
|
Here is an example of the asynchronous version:
|
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
const fs = require('fs');
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
fs.unlink('/tmp/hello', (err) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
console.log('successfully deleted /tmp/hello');
|
|
|
|
|
});
|
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
|
|
Here is the synchronous version:
|
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
const fs = require('fs');
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
fs.unlinkSync('/tmp/hello');
|
|
|
|
|
console.log('successfully deleted /tmp/hello');
|
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
|
|
With the asynchronous methods there is no guaranteed ordering. So the
|
|
|
|
|
following is prone to error:
|
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
fs.rename('/tmp/hello', '/tmp/world', (err) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
console.log('renamed complete');
|
|
|
|
|
});
|
|
|
|
|
fs.stat('/tmp/world', (err, stats) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
console.log(`stats: ${JSON.stringify(stats)}`);
|
|
|
|
|
});
|
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
|
|
It could be that `fs.stat` is executed before `fs.rename`.
|
|
|
|
|
The correct way to do this is to chain the callbacks.
|
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
fs.rename('/tmp/hello', '/tmp/world', (err) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
fs.stat('/tmp/world', (err, stats) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
console.log(`stats: ${JSON.stringify(stats)}`);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
|
|
In busy processes, the programmer is _strongly encouraged_ to use the
|
|
|
|
|
asynchronous versions of these calls. The synchronous versions will block
|
|
|
|
|
the entire process until they complete--halting all connections.
|
|
|
|
|
|
2015-08-14 21:56:26 +02:00
|
|
|
|
The relative path to a filename can be used. Remember, however, that this path
|
|
|
|
|
will be relative to `process.cwd()`.
|
2012-12-04 03:17:52 +01:00
|
|
|
|
|
|
|
|
|
Most fs functions let you omit the callback argument. If you do, a default
|
2013-03-13 23:36:52 +01:00
|
|
|
|
callback is used that rethrows errors. To get a trace to the original call
|
2015-11-28 00:30:32 +01:00
|
|
|
|
site, set the `NODE_DEBUG` environment variable:
|
2013-03-13 23:36:52 +01:00
|
|
|
|
|
2016-07-09 07:13:09 +02:00
|
|
|
|
```txt
|
2016-01-17 18:39:07 +01:00
|
|
|
|
$ cat script.js
|
|
|
|
|
function bad() {
|
|
|
|
|
require('fs').readFile('/');
|
|
|
|
|
}
|
|
|
|
|
bad();
|
|
|
|
|
|
|
|
|
|
$ env NODE_DEBUG=fs node script.js
|
2016-05-06 15:57:30 +02:00
|
|
|
|
fs.js:88
|
|
|
|
|
throw backtrace;
|
|
|
|
|
^
|
|
|
|
|
Error: EISDIR: illegal operation on a directory, read
|
|
|
|
|
<stack trace.>
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2012-12-04 03:17:52 +01:00
|
|
|
|
|
2016-04-02 15:44:18 +02:00
|
|
|
|
## Buffer API
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v6.0.0
|
|
|
|
|
-->
|
2016-04-02 15:44:18 +02:00
|
|
|
|
|
|
|
|
|
`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
|
2016-04-21 00:12:40 +02:00
|
|
|
|
will always be encoded as UTF-8. On such file systems, passing
|
2016-04-02 15:44:18 +02:00
|
|
|
|
non-UTF-8 encoded Buffers to `fs` functions will not work as expected.
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## Class: fs.FSWatcher
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.5.8
|
|
|
|
|
-->
|
2011-07-14 13:17:40 +02:00
|
|
|
|
|
2016-07-01 10:33:20 +02:00
|
|
|
|
Objects returned from [`fs.watch()`][] are of this type.
|
|
|
|
|
|
|
|
|
|
The `listener` callback provided to `fs.watch()` receives the returned FSWatcher's
|
|
|
|
|
`change` events.
|
|
|
|
|
|
|
|
|
|
The object itself emits these events:
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
### Event: 'change'
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.5.8
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-07-01 10:33:20 +02:00
|
|
|
|
* `eventType` {String} The type of fs change
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `filename` {String | Buffer} The filename that changed (if relevant/available)
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Emitted when something changes in a watched directory or file.
|
2015-11-28 00:30:32 +01:00
|
|
|
|
See more details in [`fs.watch()`][].
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
The `filename` argument may not be provided depending on operating system
|
|
|
|
|
support. If `filename` is provided, it will be provided as a `Buffer` if
|
2016-10-14 00:41:53 +02:00
|
|
|
|
`fs.watch()` is called with its `encoding` option set to `'buffer'`, otherwise
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
`filename` will be a string.
|
|
|
|
|
|
|
|
|
|
```js
|
2016-07-01 10:33:20 +02:00
|
|
|
|
// Example when handled through fs.watch listener
|
|
|
|
|
fs.watch('./tmp', {encoding: 'buffer'}, (eventType, filename) => {
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
if (filename)
|
|
|
|
|
console.log(filename);
|
|
|
|
|
// Prints: <Buffer ...>
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
### Event: 'error'
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.5.8
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-01-19 17:03:15 +01:00
|
|
|
|
* `error` {Error}
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Emitted when an error occurs.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
### watcher.close()
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.5.8
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Stop watching for changes on the given `fs.FSWatcher`.
|
2012-08-04 21:39:11 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## Class: fs.ReadStream
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.93
|
|
|
|
|
-->
|
2012-08-04 21:39:11 +02:00
|
|
|
|
|
2015-11-14 04:21:49 +01:00
|
|
|
|
`ReadStream` is a [Readable Stream][].
|
2012-08-04 21:39:11 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
### Event: 'open'
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.93
|
|
|
|
|
-->
|
2012-08-04 21:39:11 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer} Integer file descriptor used by the ReadStream.
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Emitted when the ReadStream's file is opened.
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2016-05-01 09:58:16 +02:00
|
|
|
|
### Event: 'close'
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.93
|
|
|
|
|
-->
|
2016-05-01 09:58:16 +02:00
|
|
|
|
|
|
|
|
|
Emitted when the `ReadStream`'s underlying file descriptor has been closed
|
|
|
|
|
using the `fs.close()` method.
|
|
|
|
|
|
2016-08-01 21:31:16 +02:00
|
|
|
|
### readStream.bytesRead
|
|
|
|
|
<!-- YAML
|
2016-08-15 15:51:55 +02:00
|
|
|
|
added: 6.4.0
|
2016-08-01 21:31:16 +02:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
The number of bytes read so far.
|
|
|
|
|
|
2015-12-20 18:15:54 +01:00
|
|
|
|
### readStream.path
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.93
|
|
|
|
|
-->
|
2015-12-20 18:15:54 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
The path to the file the stream is reading from as specified in the first
|
|
|
|
|
argument to `fs.createReadStream()`. If `path` is passed as a string, then
|
|
|
|
|
`readStream.path` will be a string. If `path` is passed as a `Buffer`, then
|
|
|
|
|
`readStream.path` will be a `Buffer`.
|
2015-12-20 18:15:54 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## Class: fs.Stats
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.21
|
|
|
|
|
-->
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
Objects returned from [`fs.stat()`][], [`fs.lstat()`][] and [`fs.fstat()`][] and their
|
2015-11-04 18:07:07 +01:00
|
|
|
|
synchronous counterparts are of this type.
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
- `stats.isFile()`
|
|
|
|
|
- `stats.isDirectory()`
|
|
|
|
|
- `stats.isBlockDevice()`
|
|
|
|
|
- `stats.isCharacterDevice()`
|
2015-11-28 00:30:32 +01:00
|
|
|
|
- `stats.isSymbolicLink()` (only valid with [`fs.lstat()`][])
|
2015-11-04 18:07:07 +01:00
|
|
|
|
- `stats.isFIFO()`
|
|
|
|
|
- `stats.isSocket()`
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
For a regular file [`util.inspect(stats)`][] would return a string very
|
2015-11-04 18:07:07 +01:00
|
|
|
|
similar to this:
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
{
|
|
|
|
|
dev: 2114,
|
|
|
|
|
ino: 48064969,
|
|
|
|
|
mode: 33188,
|
|
|
|
|
nlink: 1,
|
|
|
|
|
uid: 85,
|
|
|
|
|
gid: 100,
|
|
|
|
|
rdev: 0,
|
|
|
|
|
size: 527,
|
|
|
|
|
blksize: 4096,
|
|
|
|
|
blocks: 8,
|
|
|
|
|
atime: Mon, 10 Oct 2011 23:24:11 GMT,
|
|
|
|
|
mtime: Mon, 10 Oct 2011 23:24:11 GMT,
|
|
|
|
|
ctime: Mon, 10 Oct 2011 23:24:11 GMT,
|
|
|
|
|
birthtime: Mon, 10 Oct 2011 23:24:11 GMT
|
|
|
|
|
}
|
|
|
|
|
```
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Please note that `atime`, `mtime`, `birthtime`, and `ctime` are
|
2015-11-28 00:30:32 +01:00
|
|
|
|
instances of [`Date`][MDN-Date] object and to compare the values of
|
2015-11-04 18:07:07 +01:00
|
|
|
|
these objects you should use appropriate methods. For most general
|
2015-11-28 00:30:32 +01:00
|
|
|
|
uses [`getTime()`][MDN-Date-getTime] will return the number of
|
2015-11-04 18:07:07 +01:00
|
|
|
|
milliseconds elapsed since _1 January 1970 00:00:00 UTC_ and this
|
|
|
|
|
integer should be sufficient for any comparison, however there are
|
|
|
|
|
additional methods which can be used for displaying fuzzy information.
|
|
|
|
|
More details can be found in the [MDN JavaScript Reference][MDN-Date]
|
|
|
|
|
page.
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
### Stat Time Values
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
The times in the stat object have the following semantics:
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
* `atime` "Access Time" - Time when file data last accessed. Changed
|
2016-11-16 03:00:30 +01:00
|
|
|
|
by the mknod(2), utimes(2), and read(2) system calls.
|
2015-11-04 18:07:07 +01:00
|
|
|
|
* `mtime` "Modified Time" - Time when file data last modified.
|
2016-11-16 03:00:30 +01:00
|
|
|
|
Changed by the mknod(2), utimes(2), and write(2) system calls.
|
2015-11-04 18:07:07 +01:00
|
|
|
|
* `ctime` "Change Time" - Time when file status was last changed
|
2016-11-16 03:00:30 +01:00
|
|
|
|
(inode data modification). Changed by the chmod(2), chown(2),
|
|
|
|
|
link(2), mknod(2), rename(2), unlink(2), utimes(2),
|
|
|
|
|
read(2), and write(2) system calls.
|
2015-11-04 18:07:07 +01:00
|
|
|
|
* `birthtime` "Birth Time" - Time of file creation. Set once when the
|
|
|
|
|
file is created. On filesystems where birthtime is not available,
|
|
|
|
|
this field may instead hold either the `ctime` or
|
2016-02-28 22:28:17 +01:00
|
|
|
|
`1970-01-01T00:00Z` (ie, unix epoch timestamp `0`). Note that this
|
|
|
|
|
value may be greater than `atime` or `mtime` in this case. On Darwin
|
|
|
|
|
and other FreeBSD variants, also set if the `atime` is explicitly
|
|
|
|
|
set to an earlier value than the current `birthtime` using the
|
2016-11-16 03:00:30 +01:00
|
|
|
|
utimes(2) system call.
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Prior to Node v0.12, the `ctime` held the `birthtime` on Windows
|
|
|
|
|
systems. Note that as of v0.12, `ctime` is not "creation time", and
|
|
|
|
|
on Unix systems, it never was.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## Class: fs.WriteStream
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.93
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-14 04:21:49 +01:00
|
|
|
|
`WriteStream` is a [Writable Stream][].
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
### Event: 'open'
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.93
|
|
|
|
|
-->
|
2010-11-21 23:22:34 +01:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer} Integer file descriptor used by the WriteStream.
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Emitted when the WriteStream's file is opened.
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2016-05-01 09:58:16 +02:00
|
|
|
|
### Event: 'close'
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.93
|
|
|
|
|
-->
|
2016-05-01 09:58:16 +02:00
|
|
|
|
|
|
|
|
|
Emitted when the `WriteStream`'s underlying file descriptor has been closed
|
|
|
|
|
using the `fs.close()` method.
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
### writeStream.bytesWritten
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.4.7
|
|
|
|
|
-->
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
The number of bytes written so far. Does not include data that is still queued
|
|
|
|
|
for writing.
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2015-12-20 18:15:54 +01:00
|
|
|
|
### writeStream.path
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.93
|
|
|
|
|
-->
|
2015-12-20 18:15:54 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
The path to the file the stream is writing to as specified in the first
|
|
|
|
|
argument to `fs.createWriteStream()`. If `path` is passed as a string, then
|
|
|
|
|
`writeStream.path` will be a string. If `path` is passed as a `Buffer`, then
|
|
|
|
|
`writeStream.path` will be a `Buffer`.
|
2015-12-20 18:15:54 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.access(path[, mode], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
2016-06-14 21:57:22 +02:00
|
|
|
|
added: v0.11.15
|
2016-05-12 20:52:39 +02:00
|
|
|
|
-->
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2016-06-02 19:39:39 +02:00
|
|
|
|
Tests a user's permissions for the file or directory specified by `path`.
|
|
|
|
|
The `mode` argument is an optional integer that specifies the accessibility
|
|
|
|
|
checks to be performed. The following constants define the possible values of
|
|
|
|
|
`mode`. It is possible to create a mask consisting of the bitwise OR of two or
|
|
|
|
|
more values.
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2016-06-02 19:39:39 +02:00
|
|
|
|
- `fs.constants.F_OK` - `path` is visible to the calling process. This is useful
|
2016-05-02 19:27:12 +02:00
|
|
|
|
for determining if a file exists, but says nothing about `rwx` permissions.
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Default if no `mode` is specified.
|
2016-06-02 19:39:39 +02:00
|
|
|
|
- `fs.constants.R_OK` - `path` can be read by the calling process.
|
|
|
|
|
- `fs.constants.W_OK` - `path` can be written by the calling process.
|
|
|
|
|
- `fs.constants.X_OK` - `path` can be executed by the calling process. This has
|
|
|
|
|
no effect on Windows (will behave like `fs.constants.F_OK`).
|
2012-06-30 02:23:03 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
The final argument, `callback`, is a callback function that is invoked with
|
|
|
|
|
a possible error argument. If any of the accessibility checks fail, the error
|
|
|
|
|
argument will be populated. The following example checks if the file
|
|
|
|
|
`/etc/passwd` can be read and written by the current process.
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
2016-05-02 19:27:12 +02:00
|
|
|
|
fs.access('/etc/passwd', fs.constants.R_OK | fs.constants.W_OK, (err) => {
|
2016-01-17 18:39:07 +01:00
|
|
|
|
console.log(err ? 'no access!' : 'can read/write');
|
|
|
|
|
});
|
|
|
|
|
```
|
2011-04-02 02:46:18 +02:00
|
|
|
|
|
2016-07-22 09:30:45 +02:00
|
|
|
|
Using `fs.access()` to check for the accessibility of a file before calling
|
|
|
|
|
`fs.open()`, `fs.readFile()` or `fs.writeFile()` is not recommended. Doing
|
|
|
|
|
so introduces a race condition, since other processes may change the file's
|
|
|
|
|
state between the two calls. Instead, user code should open/read/write the
|
|
|
|
|
file directly and handle the error raised if the file is not accessible.
|
|
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
**write (NOT RECOMMENDED)**
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
fs.access('myfile', (err) => {
|
|
|
|
|
if (!err) {
|
|
|
|
|
console.error('myfile already exists');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fs.open('myfile', 'wx', (err, fd) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
writeMyData(fd);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**write (RECOMMENDED)**
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
fs.open('myfile', 'wx', (err, fd) => {
|
|
|
|
|
if (err) {
|
|
|
|
|
if (err.code === "EEXIST") {
|
|
|
|
|
console.error('myfile already exists');
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
throw err;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
writeMyData(fd);
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**read (NOT RECOMMENDED)**
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
fs.access('myfile', (err) => {
|
|
|
|
|
if (err) {
|
|
|
|
|
if (err.code === "ENOENT") {
|
|
|
|
|
console.error('myfile does not exist');
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
throw err;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fs.open('myfile', 'r', (err, fd) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
readMyData(fd);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**read (RECOMMENDED)**
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
fs.open('myfile', 'r', (err, fd) => {
|
|
|
|
|
if (err) {
|
|
|
|
|
if (err.code === "ENOENT") {
|
|
|
|
|
console.error('myfile does not exist');
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
throw err;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
readMyData(fd);
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The "not recommended" examples above check for accessibility and then use the
|
|
|
|
|
file; the "recommended" examples are better because they use the file directly
|
|
|
|
|
and handle the error, if any.
|
|
|
|
|
|
|
|
|
|
In general, check for the accessibility of a file only if the file won’t be
|
|
|
|
|
used directly, for example when its accessibility is a signal from another
|
|
|
|
|
process.
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.accessSync(path[, mode])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
2016-06-14 21:57:22 +02:00
|
|
|
|
added: v0.11.15
|
2016-05-12 20:52:39 +02:00
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
|
2016-06-02 19:39:39 +02:00
|
|
|
|
Synchronous version of [`fs.access()`][]. This throws if any accessibility
|
2016-05-02 19:27:12 +02:00
|
|
|
|
checks fail, and does nothing otherwise.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.appendFile(file, data[, options], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.6.7
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `file` {String | Buffer | Number} filename or file descriptor
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `data` {String | Buffer}
|
|
|
|
|
* `options` {Object | String}
|
|
|
|
|
* `encoding` {String | Null} default = `'utf8'`
|
|
|
|
|
* `mode` {Integer} default = `0o666`
|
2015-11-04 18:07:07 +01:00
|
|
|
|
* `flag` {String} default = `'a'`
|
|
|
|
|
* `callback` {Function}
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronously append data to a file, creating the file if it does not yet exist.
|
|
|
|
|
`data` can be a string or a buffer.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Example:
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
fs.appendFile('message.txt', 'data to append', (err) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
console.log('The "data to append" was appended to file!');
|
|
|
|
|
});
|
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
If `options` is a string, then it specifies the encoding. Example:
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
fs.appendFile('message.txt', 'data to append', 'utf8', callback);
|
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Any specified file descriptor has to have been opened for appending.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-07-06 14:12:58 +02:00
|
|
|
|
_Note: If a file descriptor is specified as the `file`, it will not be closed
|
|
|
|
|
automatically._
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.appendFileSync(file, data[, options])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.6.7
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-05-12 08:29:29 +02:00
|
|
|
|
* `file` {String | Buffer | Number} filename or file descriptor
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `data` {String | Buffer}
|
|
|
|
|
* `options` {Object | String}
|
|
|
|
|
* `encoding` {String | Null} default = `'utf8'`
|
|
|
|
|
* `mode` {Integer} default = `0o666`
|
|
|
|
|
* `flag` {String} default = `'a'`
|
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
The synchronous version of [`fs.appendFile()`][]. Returns `undefined`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.chmod(path, mode, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.30
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous chmod(2). No arguments other than a possible exception are given
|
|
|
|
|
to the completion callback.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.chmodSync(path, mode)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.6.7
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous chmod(2). Returns `undefined`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.chown(path, uid, gid, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.97
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `uid` {Integer}
|
|
|
|
|
* `gid` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous chown(2). No arguments other than a possible exception are given
|
2010-11-17 17:04:21 +01:00
|
|
|
|
to the completion callback.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.chownSync(path, uid, gid)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.97
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `uid` {Integer}
|
|
|
|
|
* `gid` {Integer}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous chown(2). Returns `undefined`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.close(fd, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.0.2
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous close(2). No arguments other than a possible exception are given
|
|
|
|
|
to the completion callback.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.closeSync(fd)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.21
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous close(2). Returns `undefined`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-05-02 19:27:12 +02:00
|
|
|
|
## fs.constants
|
|
|
|
|
|
|
|
|
|
Returns an object containing commonly used constants for file system
|
|
|
|
|
operations. The specific constants currently defined are described in
|
|
|
|
|
[FS Constants][].
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.createReadStream(path[, options])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `options` {String | Object}
|
|
|
|
|
* `flags` {String}
|
|
|
|
|
* `encoding` {String}
|
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
* `autoClose` {Boolean}
|
|
|
|
|
* `start` {Integer}
|
|
|
|
|
* `end` {Integer}
|
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
Returns a new [`ReadStream`][] object. (See [Readable Stream][]).
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Be aware that, unlike the default value set for `highWaterMark` on a
|
|
|
|
|
readable stream (16 kb), the stream returned by this method has a
|
|
|
|
|
default value of 64 kb for the same parameter.
|
2012-04-16 23:52:44 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
`options` is an object or string with the following defaults:
|
2012-04-16 23:52:44 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
{
|
|
|
|
|
flags: 'r',
|
|
|
|
|
encoding: null,
|
|
|
|
|
fd: null,
|
|
|
|
|
mode: 0o666,
|
|
|
|
|
autoClose: true
|
|
|
|
|
}
|
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
`options` can include `start` and `end` values to read a range of bytes from
|
|
|
|
|
the file instead of the entire file. Both `start` and `end` are inclusive and
|
2016-12-01 22:03:55 +01:00
|
|
|
|
start counting at 0. If `fd` is specified and `start` is omitted or `undefined`,
|
|
|
|
|
`fs.createReadStream()` reads sequentially from the current file position.
|
|
|
|
|
The `encoding` can be any one of those accepted by [`Buffer`][].
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
If `fd` is specified, `ReadStream` will ignore the `path` argument and will use
|
2016-06-02 19:39:39 +02:00
|
|
|
|
the specified file descriptor. This means that no `'open'` event will be
|
|
|
|
|
emitted. Note that `fd` should be blocking; non-blocking `fd`s should be passed
|
2016-05-02 19:27:12 +02:00
|
|
|
|
to [`net.Socket`][].
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
If `autoClose` is false, then the file descriptor won't be closed, even if
|
|
|
|
|
there's an error. It is your responsibility to close it and make sure
|
|
|
|
|
there's no file descriptor leak. If `autoClose` is set to true (default
|
|
|
|
|
behavior), on `error` or `end` the file descriptor will be closed
|
|
|
|
|
automatically.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
`mode` sets the file mode (permission and sticky bits), but only if the
|
|
|
|
|
file was created.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
An example to read the last 10 bytes of a file which is 100 bytes long:
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
fs.createReadStream('sample.txt', {start: 90, end: 99});
|
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
If `options` is a string, then it specifies the encoding.
|
|
|
|
|
|
|
|
|
|
## fs.createWriteStream(path[, options])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `options` {String | Object}
|
|
|
|
|
* `flags` {String}
|
|
|
|
|
* `defaultEncoding` {String}
|
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
* `autoClose` {Boolean}
|
|
|
|
|
* `start` {Integer}
|
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
Returns a new [`WriteStream`][] object. (See [Writable Stream][]).
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
|
|
|
|
`options` is an object or string with the following defaults:
|
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
{
|
|
|
|
|
flags: 'w',
|
|
|
|
|
defaultEncoding: 'utf8',
|
|
|
|
|
fd: null,
|
|
|
|
|
mode: 0o666,
|
|
|
|
|
autoClose: true
|
|
|
|
|
}
|
|
|
|
|
```
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
|
|
|
|
`options` may also include a `start` option to allow writing data at
|
|
|
|
|
some position past the beginning of the file. Modifying a file rather
|
|
|
|
|
than replacing it may require a `flags` mode of `r+` rather than the
|
2016-05-02 19:27:12 +02:00
|
|
|
|
default mode `w`. The `defaultEncoding` can be any one of those accepted by
|
|
|
|
|
[`Buffer`][].
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2015-11-29 16:11:19 +01:00
|
|
|
|
If `autoClose` is set to true (default behavior) on `error` or `end`
|
|
|
|
|
the file descriptor will be closed automatically. If `autoClose` is false,
|
|
|
|
|
then the file descriptor won't be closed, even if there's an error.
|
2016-03-13 22:34:58 +01:00
|
|
|
|
It is your responsibility to close it and make sure
|
2015-11-29 16:11:19 +01:00
|
|
|
|
there's no file descriptor leak.
|
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
Like [`ReadStream`][], if `fd` is specified, `WriteStream` will ignore the
|
2015-11-04 18:07:07 +01:00
|
|
|
|
`path` argument and will use the specified file descriptor. This means that no
|
2015-11-28 00:30:32 +01:00
|
|
|
|
`'open'` event will be emitted. Note that `fd` should be blocking; non-blocking
|
|
|
|
|
`fd`s should be passed to [`net.Socket`][].
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
|
|
|
|
If `options` is a string, then it specifies the encoding.
|
|
|
|
|
|
|
|
|
|
## fs.exists(path, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.0.2
|
|
|
|
|
deprecated: v1.0.0
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
|
> Stability: 0 - Deprecated: Use [`fs.stat()`][] or [`fs.access()`][] instead.
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Test whether or not the given path exists by checking with the file system.
|
|
|
|
|
Then call the `callback` argument with either true or false. Example:
|
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
fs.exists('/etc/passwd', (exists) => {
|
|
|
|
|
console.log(exists ? 'it\'s there' : 'no passwd!');
|
|
|
|
|
});
|
|
|
|
|
```
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2016-09-01 01:10:04 +02:00
|
|
|
|
**Note that the parameter to this callback is not consistent with other
|
|
|
|
|
Node.js callbacks.** Normally, the first parameter to a Node.js callback is
|
|
|
|
|
an `err` parameter, optionally followed by other parameters. The
|
|
|
|
|
`fs.exists()` callback has only one boolean parameter. This is one reason
|
|
|
|
|
`fs.access()` is recommended instead of `fs.exists()`.
|
|
|
|
|
|
2016-07-22 09:30:45 +02:00
|
|
|
|
Using `fs.exists()` to check for the existence of a file before calling
|
|
|
|
|
`fs.open()`, `fs.readFile()` or `fs.writeFile()` is not recommended. Doing
|
|
|
|
|
so introduces a race condition, since other processes may change the file's
|
|
|
|
|
state between the two calls. Instead, user code should open/read/write the
|
|
|
|
|
file directly and handle the error raised if the file does not exist.
|
|
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
|
|
**write (NOT RECOMMENDED)**
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
fs.exists('myfile', (exists) => {
|
|
|
|
|
if (exists) {
|
|
|
|
|
console.error('myfile already exists');
|
|
|
|
|
} else {
|
|
|
|
|
fs.open('myfile', 'wx', (err, fd) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
writeMyData(fd);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**write (RECOMMENDED)**
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
fs.open('myfile', 'wx', (err, fd) => {
|
|
|
|
|
if (err) {
|
|
|
|
|
if (err.code === "EEXIST") {
|
|
|
|
|
console.error('myfile already exists');
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
throw err;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
writeMyData(fd);
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**read (NOT RECOMMENDED)**
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
fs.exists('myfile', (exists) => {
|
|
|
|
|
if (exists) {
|
|
|
|
|
fs.open('myfile', 'r', (err, fd) => {
|
|
|
|
|
readMyData(fd);
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
console.error('myfile does not exist');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**read (RECOMMENDED)**
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
fs.open('myfile', 'r', (err, fd) => {
|
|
|
|
|
if (err) {
|
|
|
|
|
if (err.code === "ENOENT") {
|
|
|
|
|
console.error('myfile does not exist');
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
throw err;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
readMyData(fd);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The "not recommended" examples above check for existence and then use the
|
|
|
|
|
file; the "recommended" examples are better because they use the file directly
|
|
|
|
|
and handle the error, if any.
|
|
|
|
|
|
|
|
|
|
In general, check for the existence of a file only if the file won’t be
|
|
|
|
|
used directly, for example when its existence is a signal from another
|
|
|
|
|
process.
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
|
|
|
|
## fs.existsSync(path)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.21
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
Synchronous version of [`fs.exists()`][].
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Returns `true` if the file exists, `false` otherwise.
|
|
|
|
|
|
2016-09-01 01:10:04 +02:00
|
|
|
|
Note that `fs.exists()` is deprecated, but `fs.existsSync()` is not.
|
|
|
|
|
(The `callback` parameter to `fs.exists()` accepts parameters that are
|
|
|
|
|
inconsistent with other Node.js callbacks. `fs.existsSync()` does not use
|
|
|
|
|
a callback.)
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.fchmod(fd, mode, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.4.7
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous fchmod(2). No arguments other than a possible exception
|
|
|
|
|
are given to the completion callback.
|
|
|
|
|
|
|
|
|
|
## fs.fchmodSync(fd, mode)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.4.7
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous fchmod(2). Returns `undefined`.
|
|
|
|
|
|
|
|
|
|
## fs.fchown(fd, uid, gid, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.4.7
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
* `uid` {Integer}
|
|
|
|
|
* `gid` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous fchown(2). No arguments other than a possible exception are given
|
2010-11-17 17:04:21 +01:00
|
|
|
|
to the completion callback.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.fchownSync(fd, uid, gid)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.4.7
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
* `uid` {Integer}
|
|
|
|
|
* `gid` {Integer}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous fchown(2). Returns `undefined`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-02-24 04:41:05 +01:00
|
|
|
|
## fs.fdatasync(fd, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.96
|
|
|
|
|
-->
|
2016-02-24 04:41:05 +01:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2016-02-24 04:41:05 +01:00
|
|
|
|
Asynchronous fdatasync(2). No arguments other than a possible exception are
|
|
|
|
|
given to the completion callback.
|
|
|
|
|
|
|
|
|
|
## fs.fdatasyncSync(fd)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.96
|
|
|
|
|
-->
|
2016-02-24 04:41:05 +01:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
|
2016-02-24 04:41:05 +01:00
|
|
|
|
Synchronous fdatasync(2). Returns `undefined`.
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.fstat(fd, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.95
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous fstat(2). The callback gets two arguments `(err, stats)` where
|
2016-10-29 01:49:41 +02:00
|
|
|
|
`stats` is an [`fs.Stats`][] object. `fstat()` is identical to [`stat()`][],
|
2016-04-30 03:09:34 +02:00
|
|
|
|
except that the file to be stat-ed is specified by the file descriptor `fd`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.fstatSync(fd)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.95
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
|
2016-10-28 22:41:47 +02:00
|
|
|
|
Synchronous fstat(2). Returns an instance of [`fs.Stats`][].
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.fsync(fd, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.96
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous fsync(2). No arguments other than a possible exception are given
|
|
|
|
|
to the completion callback.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.fsyncSync(fd)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.96
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous fsync(2). Returns `undefined`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.ftruncate(fd, len, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.8.6
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
2016-08-27 12:23:14 +02:00
|
|
|
|
* `len` {Integer} default = `0`
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous ftruncate(2). No arguments other than a possible exception are
|
|
|
|
|
given to the completion callback.
|
|
|
|
|
|
2016-08-27 12:23:14 +02:00
|
|
|
|
If the file referred to by the file descriptor was larger than `len` bytes, only
|
|
|
|
|
the first `len` bytes will be retained in the file.
|
|
|
|
|
|
|
|
|
|
For example, the following program retains only the first four bytes of the file
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
console.log(fs.readFileSync('temp.txt', 'utf8'));
|
2016-11-08 21:04:57 +01:00
|
|
|
|
// Prints: Node.js
|
2016-08-27 12:23:14 +02:00
|
|
|
|
|
|
|
|
|
// get the file descriptor of the file to be truncated
|
|
|
|
|
const fd = fs.openSync('temp.txt', 'r+');
|
|
|
|
|
|
|
|
|
|
// truncate the file to first four bytes
|
|
|
|
|
fs.ftruncate(fd, 4, (err) => {
|
|
|
|
|
assert.ifError(err);
|
|
|
|
|
console.log(fs.readFileSync('temp.txt', 'utf8'));
|
|
|
|
|
});
|
2016-11-08 21:04:57 +01:00
|
|
|
|
// Prints: Node
|
2016-08-27 12:23:14 +02:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
If the file previously was shorter than `len` bytes, it is extended, and the
|
|
|
|
|
extended part is filled with null bytes ('\0'). For example,
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
console.log(fs.readFileSync('temp.txt', 'utf-8'));
|
2016-11-08 21:04:57 +01:00
|
|
|
|
// Prints: Node.js
|
2016-08-27 12:23:14 +02:00
|
|
|
|
|
|
|
|
|
// get the file descriptor of the file to be truncated
|
|
|
|
|
const fd = fs.openSync('temp.txt', 'r+');
|
|
|
|
|
|
|
|
|
|
// truncate the file to 10 bytes, whereas the actual size is 7 bytes
|
|
|
|
|
fs.ftruncate(fd, 10, (err) => {
|
|
|
|
|
assert.ifError(!err);
|
|
|
|
|
console.log(fs.readFileSync('temp.txt'));
|
|
|
|
|
});
|
2016-11-08 21:04:57 +01:00
|
|
|
|
// Prints: <Buffer 4e 6f 64 65 2e 6a 73 00 00 00>
|
|
|
|
|
// ('Node.js\0\0\0' in UTF8)
|
2016-08-27 12:23:14 +02:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The last three bytes are null bytes ('\0'), to compensate the over-truncation.
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.ftruncateSync(fd, len)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.8.6
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
2016-08-27 12:23:14 +02:00
|
|
|
|
* `len` {Integer} default = `0`
|
2016-03-18 22:52:11 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous ftruncate(2). Returns `undefined`.
|
|
|
|
|
|
|
|
|
|
## fs.futimes(fd, atime, mtime, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.4.2
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
* `atime` {Integer}
|
|
|
|
|
* `mtime` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Change the file timestamps of a file referenced by the supplied file
|
|
|
|
|
descriptor.
|
|
|
|
|
|
|
|
|
|
## fs.futimesSync(fd, atime, mtime)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.4.2
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
|
|
|
|
* `atime` {Integer}
|
|
|
|
|
* `mtime` {Integer}
|
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
Synchronous version of [`fs.futimes()`][]. Returns `undefined`.
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
|
|
|
|
## fs.lchmod(path, mode, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
deprecated: v0.4.7
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous lchmod(2). No arguments other than a possible exception
|
|
|
|
|
are given to the completion callback.
|
|
|
|
|
|
|
|
|
|
Only available on Mac OS X.
|
|
|
|
|
|
|
|
|
|
## fs.lchmodSync(path, mode)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
deprecated: v0.4.7
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous lchmod(2). Returns `undefined`.
|
|
|
|
|
|
|
|
|
|
## fs.lchown(path, uid, gid, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
deprecated: v0.4.7
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `uid` {Integer}
|
|
|
|
|
* `gid` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous lchown(2). No arguments other than a possible exception are given
|
2010-11-17 17:04:21 +01:00
|
|
|
|
to the completion callback.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.lchownSync(path, uid, gid)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
deprecated: v0.4.7
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `uid` {Integer}
|
|
|
|
|
* `gid` {Integer}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous lchown(2). Returns `undefined`.
|
|
|
|
|
|
2016-10-18 05:04:50 +02:00
|
|
|
|
## fs.link(existingPath, newPath, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2016-10-18 05:04:50 +02:00
|
|
|
|
* `existingPath` {String | Buffer}
|
|
|
|
|
* `newPath` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous link(2). No arguments other than a possible exception are given to
|
|
|
|
|
the completion callback.
|
|
|
|
|
|
2016-10-18 05:04:50 +02:00
|
|
|
|
## fs.linkSync(existingPath, newPath)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2016-10-18 05:04:50 +02:00
|
|
|
|
* `existingPath` {String | Buffer}
|
|
|
|
|
* `newPath` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous link(2). Returns `undefined`.
|
|
|
|
|
|
|
|
|
|
## fs.lstat(path, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.30
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous lstat(2). The callback gets two arguments `(err, stats)` where
|
2016-04-30 03:09:34 +02:00
|
|
|
|
`stats` is a [`fs.Stats`][] object. `lstat()` is identical to `stat()`,
|
|
|
|
|
except that if `path` is a symbolic link, then the link itself is stat-ed,
|
|
|
|
|
not the file that it refers to.
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
|
|
|
|
## fs.lstatSync(path)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.30
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
|
2016-10-28 22:41:47 +02:00
|
|
|
|
Synchronous lstat(2). Returns an instance of [`fs.Stats`][].
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
|
|
|
|
## fs.mkdir(path[, mode], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.8
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous mkdir(2). No arguments other than a possible exception are given
|
|
|
|
|
to the completion callback. `mode` defaults to `0o777`.
|
|
|
|
|
|
|
|
|
|
## fs.mkdirSync(path[, mode])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.21
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous mkdir(2). Returns `undefined`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-07-22 20:33:24 +02:00
|
|
|
|
## fs.mkdtemp(prefix[, options], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v5.10.0
|
|
|
|
|
-->
|
2016-02-24 22:17:44 +01:00
|
|
|
|
|
2016-07-22 20:33:24 +02:00
|
|
|
|
* `prefix` {String}
|
|
|
|
|
* `options` {String | Object}
|
|
|
|
|
* `encoding` {String} default = `'utf8'`
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2016-02-24 22:17:44 +01:00
|
|
|
|
Creates a unique temporary directory.
|
|
|
|
|
|
|
|
|
|
Generates six random characters to be appended behind a required
|
|
|
|
|
`prefix` to create a unique temporary directory.
|
|
|
|
|
|
|
|
|
|
The created folder path is passed as a string to the callback's second
|
|
|
|
|
parameter.
|
|
|
|
|
|
2016-07-22 20:33:24 +02:00
|
|
|
|
The optional `options` argument can be a string specifying an encoding, or an
|
|
|
|
|
object with an `encoding` property specifying the character encoding to use.
|
|
|
|
|
|
2016-02-24 22:17:44 +01:00
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
fs.mkdtemp('/tmp/foo-', (err, folder) => {
|
2016-07-22 20:33:24 +02:00
|
|
|
|
if (err) throw err;
|
2016-02-24 22:17:44 +01:00
|
|
|
|
console.log(folder);
|
2016-11-08 21:04:57 +01:00
|
|
|
|
// Prints: /tmp/foo-itXde2
|
2016-02-24 22:17:44 +01:00
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
2016-05-17 06:40:17 +02:00
|
|
|
|
*Note*: The `fs.mkdtemp()` method will append the six randomly selected
|
|
|
|
|
characters directly to the `prefix` string. For instance, given a directory
|
|
|
|
|
`/tmp`, if the intention is to create a temporary directory *within* `/tmp`,
|
|
|
|
|
the `prefix` *must* end with a trailing platform-specific path separator
|
|
|
|
|
(`require('path').sep`).
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
// The parent directory for the new temporary directory
|
|
|
|
|
const tmpDir = '/tmp';
|
|
|
|
|
|
|
|
|
|
// This method is *INCORRECT*:
|
|
|
|
|
fs.mkdtemp(tmpDir, (err, folder) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
console.log(folder);
|
2016-11-08 21:04:57 +01:00
|
|
|
|
// Will print something similar to `/tmpabc123`.
|
|
|
|
|
// Note that a new temporary directory is created
|
|
|
|
|
// at the file system root rather than *within*
|
|
|
|
|
// the /tmp directory.
|
2016-05-17 06:40:17 +02:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// This method is *CORRECT*:
|
|
|
|
|
const path = require('path');
|
|
|
|
|
fs.mkdtemp(tmpDir + path.sep, (err, folder) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
console.log(folder);
|
2016-11-08 21:04:57 +01:00
|
|
|
|
// Will print something similar to `/tmp/abc123`.
|
|
|
|
|
// A new temporary directory is created within
|
|
|
|
|
// the /tmp directory.
|
2016-05-17 06:40:17 +02:00
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
2016-07-22 20:33:24 +02:00
|
|
|
|
## fs.mkdtempSync(prefix[, options])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v5.10.0
|
|
|
|
|
-->
|
2016-02-24 22:17:44 +01:00
|
|
|
|
|
2016-07-22 20:33:24 +02:00
|
|
|
|
* `prefix` {String}
|
|
|
|
|
* `options` {String | Object}
|
|
|
|
|
* `encoding` {String} default = `'utf8'`
|
|
|
|
|
|
2016-02-24 22:17:44 +01:00
|
|
|
|
The synchronous version of [`fs.mkdtemp()`][]. Returns the created
|
|
|
|
|
folder path.
|
|
|
|
|
|
2016-07-22 20:33:24 +02:00
|
|
|
|
The optional `options` argument can be a string specifying an encoding, or an
|
|
|
|
|
object with an `encoding` property specifying the character encoding to use.
|
|
|
|
|
|
2014-09-25 00:41:31 +02:00
|
|
|
|
## fs.open(path, flags[, mode], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.0.2
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `flags` {String | Number}
|
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2011-07-09 09:59:35 +02:00
|
|
|
|
Asynchronous file open. See open(2). `flags` can be:
|
|
|
|
|
|
|
|
|
|
* `'r'` - Open file for reading.
|
|
|
|
|
An exception occurs if the file does not exist.
|
|
|
|
|
|
2011-10-12 00:30:29 +02:00
|
|
|
|
* `'r+'` - Open file for reading and writing.
|
2011-07-09 09:59:35 +02:00
|
|
|
|
An exception occurs if the file does not exist.
|
|
|
|
|
|
2016-05-13 10:21:40 +02:00
|
|
|
|
* `'rs+'` - Open file for reading and writing in synchronous mode. Instructs
|
|
|
|
|
the operating system to bypass the local file system cache.
|
2012-05-17 06:18:25 +02:00
|
|
|
|
|
|
|
|
|
This is primarily useful for opening files on NFS mounts as it allows you to
|
|
|
|
|
skip the potentially stale local cache. It has a very real impact on I/O
|
2013-08-02 21:41:24 +02:00
|
|
|
|
performance so don't use this flag unless you need it.
|
2012-05-17 06:18:25 +02:00
|
|
|
|
|
|
|
|
|
Note that this doesn't turn `fs.open()` into a synchronous blocking call.
|
|
|
|
|
If that's what you want then you should be using `fs.openSync()`
|
2012-05-16 00:10:25 +02:00
|
|
|
|
|
2011-07-09 09:59:35 +02:00
|
|
|
|
* `'w'` - Open file for writing.
|
|
|
|
|
The file is created (if it does not exist) or truncated (if it exists).
|
|
|
|
|
|
2013-08-02 21:41:24 +02:00
|
|
|
|
* `'wx'` - Like `'w'` but fails if `path` exists.
|
2012-01-31 01:36:57 +01:00
|
|
|
|
|
2011-07-09 09:59:35 +02:00
|
|
|
|
* `'w+'` - Open file for reading and writing.
|
|
|
|
|
The file is created (if it does not exist) or truncated (if it exists).
|
|
|
|
|
|
2013-08-02 21:41:24 +02:00
|
|
|
|
* `'wx+'` - Like `'w+'` but fails if `path` exists.
|
2012-01-31 01:36:57 +01:00
|
|
|
|
|
2011-07-09 09:59:35 +02:00
|
|
|
|
* `'a'` - Open file for appending.
|
|
|
|
|
The file is created if it does not exist.
|
|
|
|
|
|
2013-08-02 21:41:24 +02:00
|
|
|
|
* `'ax'` - Like `'a'` but fails if `path` exists.
|
2012-01-31 01:36:57 +01:00
|
|
|
|
|
2011-07-09 09:59:35 +02:00
|
|
|
|
* `'a+'` - Open file for reading and appending.
|
|
|
|
|
The file is created if it does not exist.
|
|
|
|
|
|
2013-08-02 21:41:24 +02:00
|
|
|
|
* `'ax+'` - Like `'a+'` but fails if `path` exists.
|
2012-01-31 01:36:57 +01:00
|
|
|
|
|
2013-08-02 21:41:24 +02:00
|
|
|
|
`mode` sets the file mode (permission and sticky bits), but only if the file was
|
2016-01-29 18:58:50 +01:00
|
|
|
|
created. It defaults to `0666`, readable and writable.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2013-08-02 21:41:24 +02:00
|
|
|
|
The callback gets two arguments `(err, fd)`.
|
|
|
|
|
|
|
|
|
|
The exclusive flag `'x'` (`O_EXCL` flag in open(2)) ensures that `path` is newly
|
|
|
|
|
created. On POSIX systems, `path` is considered to exist even if it is a symlink
|
|
|
|
|
to a non-existent file. The exclusive flag may or may not work with network file
|
|
|
|
|
systems.
|
2012-01-31 01:36:57 +01:00
|
|
|
|
|
2015-11-03 02:53:59 +01:00
|
|
|
|
`flags` can also be a number as documented by open(2); commonly used constants
|
2016-05-02 19:27:12 +02:00
|
|
|
|
are available from `fs.constants`. On Windows, flags are translated to
|
2015-11-03 02:53:59 +01:00
|
|
|
|
their equivalent ones where applicable, e.g. `O_WRONLY` to `FILE_GENERIC_WRITE`,
|
|
|
|
|
or `O_EXCL|O_CREAT` to `CREATE_NEW`, as accepted by CreateFileW.
|
|
|
|
|
|
2013-04-08 00:41:33 +02:00
|
|
|
|
On Linux, positional writes don't work when the file is opened in append mode.
|
|
|
|
|
The kernel ignores the position argument and always appends the data to
|
|
|
|
|
the end of the file.
|
|
|
|
|
|
2016-04-21 09:49:59 +02:00
|
|
|
|
_Note: The behavior of `fs.open()` is platform specific for some flags. As such,
|
|
|
|
|
opening a directory on OS X and Linux with the `'a+'` flag - see example below -
|
2016-04-30 07:17:28 +02:00
|
|
|
|
will return an error. In contrast, on Windows and FreeBSD, a file descriptor
|
|
|
|
|
will be returned._
|
2016-04-21 09:49:59 +02:00
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
// OS X and Linux
|
|
|
|
|
fs.open('<directory>', 'a+', (err, fd) => {
|
|
|
|
|
// => [Error: EISDIR: illegal operation on a directory, open <directory>]
|
2016-07-15 07:41:29 +02:00
|
|
|
|
});
|
2016-04-21 09:49:59 +02:00
|
|
|
|
|
|
|
|
|
// Windows and FreeBSD
|
|
|
|
|
fs.open('<directory>', 'a+', (err, fd) => {
|
|
|
|
|
// => null, <fd>
|
2016-07-15 07:41:29 +02:00
|
|
|
|
});
|
2016-04-21 09:49:59 +02:00
|
|
|
|
```
|
|
|
|
|
|
2014-09-25 00:41:31 +02:00
|
|
|
|
## fs.openSync(path, flags[, mode])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.21
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `flags` {String | Number}
|
|
|
|
|
* `mode` {Integer}
|
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
Synchronous version of [`fs.open()`][]. Returns an integer representing the file
|
2015-03-08 03:52:18 +01:00
|
|
|
|
descriptor.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.read(fd, buffer, offset, length, position, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.0.2
|
|
|
|
|
-->
|
2010-10-29 12:38:13 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
2016-12-21 08:27:34 +01:00
|
|
|
|
* `buffer` {String | Buffer | Uint8Array}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `offset` {Integer}
|
|
|
|
|
* `length` {Integer}
|
|
|
|
|
* `position` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Read data from the file specified by `fd`.
|
2010-10-29 12:38:13 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
`buffer` is the buffer that the data will be written to.
|
2015-08-15 18:30:31 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
`offset` is the offset in the buffer to start writing at.
|
2015-08-15 18:30:31 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
`length` is an integer specifying the number of bytes to read.
|
2015-03-08 03:52:18 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
`position` is an integer specifying where to begin reading from in the file.
|
|
|
|
|
If `position` is `null`, data will be read from the current file position.
|
2015-03-08 03:52:18 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
The callback is given the three arguments, `(err, bytesRead, buffer)`.
|
2015-03-08 03:52:18 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
## fs.readdir(path[, options], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.8
|
|
|
|
|
-->
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
|
|
|
|
|
* `path` {String | Buffer}
|
|
|
|
|
* `options` {String | Object}
|
|
|
|
|
* `encoding` {String} default = `'utf8'`
|
|
|
|
|
* `callback` {Function}
|
2010-10-29 12:38:13 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous readdir(3). Reads the contents of a directory.
|
|
|
|
|
The callback gets two arguments `(err, files)` where `files` is an array of
|
|
|
|
|
the names of the files in the directory excluding `'.'` and `'..'`.
|
2010-10-29 12:38:13 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
The optional `options` argument can be a string specifying an encoding, or an
|
|
|
|
|
object with an `encoding` property specifying the character encoding to use for
|
|
|
|
|
the filenames passed to the callback. If the `encoding` is set to `'buffer'`,
|
|
|
|
|
the filenames returned will be passed as `Buffer` objects.
|
|
|
|
|
|
|
|
|
|
## fs.readdirSync(path[, options])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.21
|
|
|
|
|
-->
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
|
|
|
|
|
* `path` {String | Buffer}
|
|
|
|
|
* `options` {String | Object}
|
|
|
|
|
* `encoding` {String} default = `'utf8'`
|
2015-03-08 03:52:18 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous readdir(3). Returns an array of filenames excluding `'.'` and
|
|
|
|
|
`'..'`.
|
2015-03-08 03:52:18 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
The optional `options` argument can be a string specifying an encoding, or an
|
|
|
|
|
object with an `encoding` property specifying the character encoding to use for
|
|
|
|
|
the filenames passed to the callback. If the `encoding` is set to `'buffer'`,
|
|
|
|
|
the filenames returned will be passed as `Buffer` objects.
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.readFile(file[, options], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.29
|
|
|
|
|
-->
|
2011-05-03 23:56:04 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `file` {String | Buffer | Integer} filename or file descriptor
|
2015-11-04 18:07:07 +01:00
|
|
|
|
* `options` {Object | String}
|
|
|
|
|
* `encoding` {String | Null} default = `null`
|
|
|
|
|
* `flag` {String} default = `'r'`
|
|
|
|
|
* `callback` {Function}
|
2011-05-03 23:56:04 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronously reads the entire contents of a file. Example:
|
2011-05-03 23:56:04 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
fs.readFile('/etc/passwd', (err, data) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
console.log(data);
|
|
|
|
|
});
|
|
|
|
|
```
|
2010-10-29 12:38:13 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
The callback is passed two arguments `(err, data)`, where `data` is the
|
|
|
|
|
contents of the file.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
If no encoding is specified, then the raw buffer is returned.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
If `options` is a string, then it specifies the encoding. Example:
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
fs.readFile('/etc/passwd', 'utf8', callback);
|
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Any specified file descriptor has to support reading.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-07-06 14:12:58 +02:00
|
|
|
|
_Note: If a file descriptor is specified as the `file`, it will not be closed
|
|
|
|
|
automatically._
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.readFileSync(file[, options])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.8
|
|
|
|
|
-->
|
2013-04-08 00:41:33 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `file` {String | Buffer | Integer} filename or file descriptor
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `options` {Object | String}
|
|
|
|
|
* `encoding` {String | Null} default = `null`
|
|
|
|
|
* `flag` {String} default = `'r'`
|
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
Synchronous version of [`fs.readFile`][]. Returns the contents of the `file`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
If the `encoding` option is specified then this function returns a
|
|
|
|
|
string. Otherwise it returns a buffer.
|
2013-07-02 09:27:26 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
## fs.readlink(path[, options], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
|
|
|
|
|
* `path` {String | Buffer}
|
|
|
|
|
* `options` {String | Object}
|
|
|
|
|
* `encoding` {String} default = `'utf8'`
|
|
|
|
|
* `callback` {Function}
|
2013-07-02 09:27:26 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous readlink(2). The callback gets two arguments `(err,
|
|
|
|
|
linkString)`.
|
2013-07-02 09:27:26 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
The optional `options` argument can be a string specifying an encoding, or an
|
|
|
|
|
object with an `encoding` property specifying the character encoding to use for
|
|
|
|
|
the link path passed to the callback. If the `encoding` is set to `'buffer'`,
|
|
|
|
|
the link path returned will be passed as a `Buffer` object.
|
|
|
|
|
|
|
|
|
|
## fs.readlinkSync(path[, options])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
|
|
|
|
|
* `path` {String | Buffer}
|
|
|
|
|
* `options` {String | Object}
|
|
|
|
|
* `encoding` {String} default = `'utf8'`
|
2013-07-02 09:27:26 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous readlink(2). Returns the symbolic link's string value.
|
2013-07-02 09:27:26 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
The optional `options` argument can be a string specifying an encoding, or an
|
|
|
|
|
object with an `encoding` property specifying the character encoding to use for
|
|
|
|
|
the link path passed to the callback. If the `encoding` is set to `'buffer'`,
|
|
|
|
|
the link path returned will be passed as a `Buffer` object.
|
|
|
|
|
|
2016-04-26 16:27:18 +02:00
|
|
|
|
## fs.readSync(fd, buffer, offset, length, position)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.21
|
|
|
|
|
-->
|
2016-04-26 16:27:18 +02:00
|
|
|
|
|
|
|
|
|
* `fd` {Integer}
|
2016-12-21 08:27:34 +01:00
|
|
|
|
* `buffer` {String | Buffer | Uint8Array}
|
2016-04-26 16:27:18 +02:00
|
|
|
|
* `offset` {Integer}
|
|
|
|
|
* `length` {Integer}
|
|
|
|
|
* `position` {Integer}
|
|
|
|
|
|
|
|
|
|
Synchronous version of [`fs.read()`][]. Returns the number of `bytesRead`.
|
|
|
|
|
|
2016-04-11 16:48:34 +02:00
|
|
|
|
## fs.realpath(path[, options], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
2013-03-01 18:10:26 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-04-11 16:48:34 +02:00
|
|
|
|
* `options` {String | Object}
|
|
|
|
|
* `encoding` {String} default = `'utf8'`
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2016-04-28 21:41:31 +02:00
|
|
|
|
Asynchronous realpath(3). The `callback` gets two arguments `(err,
|
2016-04-11 16:48:34 +02:00
|
|
|
|
resolvedPath)`. May use `process.cwd` to resolve relative paths.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-09-18 21:47:27 +02:00
|
|
|
|
Only paths that can be converted to UTF8 strings are supported.
|
2016-07-27 00:18:35 +02:00
|
|
|
|
|
2016-04-11 16:48:34 +02:00
|
|
|
|
The optional `options` argument can be a string specifying an encoding, or an
|
|
|
|
|
object with an `encoding` property specifying the character encoding to use for
|
|
|
|
|
the path passed to the callback. If the `encoding` is set to `'buffer'`,
|
|
|
|
|
the path returned will be passed as a `Buffer` object.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-04-11 16:48:34 +02:00
|
|
|
|
## fs.realpathSync(path[, options])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
2015-10-03 02:06:42 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer};
|
2016-04-11 16:48:34 +02:00
|
|
|
|
* `options` {String | Object}
|
|
|
|
|
* `encoding` {String} default = `'utf8'`
|
2016-03-18 22:52:11 +01:00
|
|
|
|
|
2016-04-28 21:41:31 +02:00
|
|
|
|
Synchronous realpath(3). Returns the resolved path.
|
2016-04-11 16:48:34 +02:00
|
|
|
|
|
2016-07-27 00:18:35 +02:00
|
|
|
|
Only paths that can be converted to UTF8 strings are supported.
|
|
|
|
|
|
2016-04-11 16:48:34 +02:00
|
|
|
|
The optional `options` argument can be a string specifying an encoding, or an
|
|
|
|
|
object with an `encoding` property specifying the character encoding to use for
|
2016-07-27 00:18:35 +02:00
|
|
|
|
the returned value. If the `encoding` is set to `'buffer'`, the path returned
|
|
|
|
|
will be passed as a `Buffer` object.
|
2015-10-03 02:06:42 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.rename(oldPath, newPath, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.0.2
|
|
|
|
|
-->
|
2015-10-03 02:06:42 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `oldPath` {String | Buffer}
|
|
|
|
|
* `newPath` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous rename(2). No arguments other than a possible exception are given
|
|
|
|
|
to the completion callback.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.renameSync(oldPath, newPath)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.21
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `oldPath` {String | Buffer}
|
|
|
|
|
* `newPath` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous rename(2). Returns `undefined`.
|
2013-03-01 18:10:26 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.rmdir(path, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.0.2
|
|
|
|
|
-->
|
2011-11-02 19:06:16 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous rmdir(2). No arguments other than a possible exception are given
|
|
|
|
|
to the completion callback.
|
2011-11-02 19:06:16 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.rmdirSync(path)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.21
|
|
|
|
|
-->
|
2011-11-02 19:06:16 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous rmdir(2). Returns `undefined`.
|
2011-11-02 19:06:16 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.stat(path, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.0.2
|
|
|
|
|
-->
|
2015-05-27 05:11:38 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous stat(2). The callback gets two arguments `(err, stats)` where
|
2016-10-29 01:49:41 +02:00
|
|
|
|
`stats` is an [`fs.Stats`][] object.
|
2015-05-27 05:11:38 +02:00
|
|
|
|
|
2016-09-17 11:03:04 +02:00
|
|
|
|
In case of an error, the `err.code` will be one of [Common System Errors][].
|
|
|
|
|
|
|
|
|
|
Using `fs.stat()` to check for the existence of a file before calling
|
|
|
|
|
`fs.open()`, `fs.readFile()` or `fs.writeFile()` is not recommended.
|
|
|
|
|
Instead, user code should open/read/write the file directly and handle the
|
|
|
|
|
error raised if the file is not available.
|
|
|
|
|
|
|
|
|
|
To check if a file exists without manipulating it afterwards, [`fs.access()`]
|
|
|
|
|
is recommended.
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.statSync(path)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.21
|
|
|
|
|
-->
|
2015-10-03 02:06:42 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
Synchronous stat(2). Returns an instance of [`fs.Stats`][].
|
2015-10-03 02:06:42 +02:00
|
|
|
|
|
2015-11-25 05:40:42 +01:00
|
|
|
|
## fs.symlink(target, path[, type], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
2011-11-02 19:06:16 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `target` {String | Buffer}
|
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `type` {String}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous symlink(2). No arguments other than a possible exception are given
|
2016-05-02 19:27:12 +02:00
|
|
|
|
to the completion callback. The `type` argument can be set to `'dir'`,
|
|
|
|
|
`'file'`, or `'junction'` (default is `'file'`) and is only available on
|
|
|
|
|
Windows (ignored on other platforms). Note that Windows junction points require
|
|
|
|
|
the destination path to be absolute. When using `'junction'`, the `target`
|
|
|
|
|
argument will automatically be normalized to absolute path.
|
2011-11-02 19:06:16 +01:00
|
|
|
|
|
2015-11-25 05:40:42 +01:00
|
|
|
|
Here is an example below:
|
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
fs.symlink('./foo', './new-port');
|
|
|
|
|
```
|
2015-11-25 05:40:42 +01:00
|
|
|
|
|
2016-03-04 09:53:31 +01:00
|
|
|
|
It creates a symbolic link named "new-port" that points to "foo".
|
2015-11-25 05:40:42 +01:00
|
|
|
|
|
|
|
|
|
## fs.symlinkSync(target, path[, type])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `target` {String | Buffer}
|
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `type` {String}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous symlink(2). Returns `undefined`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.truncate(path, len, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.8.6
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-08-27 12:23:14 +02:00
|
|
|
|
* `len` {Integer} default = `0`
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous truncate(2). No arguments other than a possible exception are
|
|
|
|
|
given to the completion callback. A file descriptor can also be passed as the
|
|
|
|
|
first argument. In this case, `fs.ftruncate()` is called.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.truncateSync(path, len)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.8.6
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-08-27 12:23:14 +02:00
|
|
|
|
* `len` {Integer} default = `0`
|
2016-03-18 22:52:11 +01:00
|
|
|
|
|
2016-08-27 12:23:14 +02:00
|
|
|
|
Synchronous truncate(2). Returns `undefined`. A file descriptor can also be
|
|
|
|
|
passed as the first argument. In this case, `fs.ftruncateSync()` is called.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.unlink(path, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.0.2
|
|
|
|
|
-->
|
2011-02-07 22:11:03 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronous unlink(2). No arguments other than a possible exception are given
|
|
|
|
|
to the completion callback.
|
2015-07-01 17:13:54 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.unlinkSync(path)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.21
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Synchronous unlink(2). Returns `undefined`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-05-23 02:01:10 +02:00
|
|
|
|
## fs.unwatchFile(filename[, listener])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
2012-03-04 01:23:31 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `filename` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `listener` {Function}
|
|
|
|
|
|
2012-07-08 16:31:07 +02:00
|
|
|
|
Stop watching for changes on `filename`. If `listener` is specified, only that
|
|
|
|
|
particular listener is removed. Otherwise, *all* listeners are removed and you
|
|
|
|
|
have effectively stopped watching `filename`.
|
|
|
|
|
|
|
|
|
|
Calling `fs.unwatchFile()` with a filename that is not being watched is a
|
|
|
|
|
no-op, not an error.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
_Note: [`fs.watch()`][] is more efficient than `fs.watchFile()` and `fs.unwatchFile()`.
|
|
|
|
|
`fs.watch()` should be used instead of `fs.watchFile()` and `fs.unwatchFile()`
|
2015-05-23 02:01:10 +02:00
|
|
|
|
when possible._
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.utimes(path, atime, mtime, callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.4.2
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `atime` {Integer}
|
|
|
|
|
* `mtime` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Change file timestamps of the file referenced by the supplied path.
|
|
|
|
|
|
2016-09-18 21:47:27 +02:00
|
|
|
|
Note: the arguments `atime` and `mtime` of the following related functions
|
|
|
|
|
follow these rules:
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2016-09-18 21:47:27 +02:00
|
|
|
|
- The value should be a Unix timestamp in seconds. For example, `Date.now()`
|
|
|
|
|
returns milliseconds, so it should be divided by 1000 before passing it in.
|
|
|
|
|
- If the value is a numeric string like `'123456789'`, the value will get
|
|
|
|
|
converted to the corresponding number.
|
|
|
|
|
- If the value is `NaN` or `Infinity`, the value will get converted to
|
|
|
|
|
`Date.now() / 1000`.
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
|
|
|
|
## fs.utimesSync(path, atime, mtime)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.4.2
|
|
|
|
|
-->
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `path` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `atime` {Integer}
|
|
|
|
|
* `mtime` {Integer}
|
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
Synchronous version of [`fs.utimes()`][]. Returns `undefined`.
|
2015-11-04 18:07:07 +01:00
|
|
|
|
|
2015-05-23 02:01:10 +02:00
|
|
|
|
## fs.watch(filename[, options][, listener])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.5.10
|
|
|
|
|
-->
|
2012-03-04 01:23:31 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `filename` {String | Buffer}
|
|
|
|
|
* `options` {String | Object}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `persistent` {Boolean} Indicates whether the process should continue to run
|
|
|
|
|
as long as files are being watched. default = `true`
|
|
|
|
|
* `recursive` {Boolean} Indicates whether all subdirectories should be
|
|
|
|
|
watched, or only the current directory. The applies when a directory is
|
|
|
|
|
specified, and only on supported platforms (See [Caveats][]). default =
|
|
|
|
|
`false`
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `encoding` {String} Specifies the character encoding to be used for the
|
|
|
|
|
filename passed to the listener. default = `'utf8'`
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `listener` {Function}
|
|
|
|
|
|
2011-10-12 01:01:37 +02:00
|
|
|
|
Watch for changes on `filename`, where `filename` is either a file or a
|
2015-11-28 00:30:32 +01:00
|
|
|
|
directory. The returned object is a [`fs.FSWatcher`][].
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
The second argument is optional. If `options` is provided as a string, it
|
|
|
|
|
specifies the `encoding`. Otherwise `options` should be passed as an object.
|
|
|
|
|
|
2016-07-01 10:33:20 +02:00
|
|
|
|
The listener callback gets two arguments `(eventType, filename)`. `eventType` is either
|
2015-11-28 00:30:32 +01:00
|
|
|
|
`'rename'` or `'change'`, and `filename` is the name of the file which triggered
|
2011-10-12 01:01:37 +02:00
|
|
|
|
the event.
|
|
|
|
|
|
2016-10-27 19:49:21 +02:00
|
|
|
|
Note that on most platforms, `'rename'` is emitted whenever a filename appears
|
|
|
|
|
or disappears in the directory.
|
|
|
|
|
|
|
|
|
|
Also note the listener callback is attached to the `'change'` event fired by
|
|
|
|
|
[`fs.FSWatcher`][], but it is not the same thing as the `'change'` value of
|
|
|
|
|
`eventType`.
|
2016-07-01 10:33:20 +02:00
|
|
|
|
|
2012-03-04 01:23:31 +01:00
|
|
|
|
### Caveats
|
|
|
|
|
|
|
|
|
|
<!--type=misc-->
|
|
|
|
|
|
|
|
|
|
The `fs.watch` API is not 100% consistent across platforms, and is
|
|
|
|
|
unavailable in some situations.
|
|
|
|
|
|
2015-09-28 05:08:43 +02:00
|
|
|
|
The recursive option is only supported on OS X and Windows.
|
2013-10-22 04:08:28 +02:00
|
|
|
|
|
2012-03-04 01:23:31 +01:00
|
|
|
|
#### Availability
|
|
|
|
|
|
|
|
|
|
<!--type=misc-->
|
|
|
|
|
|
|
|
|
|
This feature depends on the underlying operating system providing a way
|
|
|
|
|
to be notified of filesystem changes.
|
|
|
|
|
|
2016-05-30 23:12:17 +02:00
|
|
|
|
* On Linux systems, this uses [`inotify`]
|
|
|
|
|
* On BSD systems, this uses [`kqueue`]
|
|
|
|
|
* On OS X, this uses [`kqueue`] for files and [`FSEvents`] for directories.
|
|
|
|
|
* On SunOS systems (including Solaris and SmartOS), this uses [`event ports`].
|
|
|
|
|
* On Windows systems, this feature depends on [`ReadDirectoryChangesW`].
|
|
|
|
|
* On Aix systems, this feature depends on [`AHAFS`], which must be enabled.
|
2012-03-04 01:23:31 +01:00
|
|
|
|
|
|
|
|
|
If the underlying functionality is not available for some reason, then
|
2016-05-17 15:10:25 +02:00
|
|
|
|
`fs.watch` will not be able to function. For example, watching files or
|
|
|
|
|
directories can be unreliable, and in some cases impossible, on network file
|
|
|
|
|
systems (NFS, SMB, etc), or host file systems when using virtualization software
|
|
|
|
|
such as Vagrant, Docker, etc.
|
2012-09-12 17:04:31 +02:00
|
|
|
|
|
|
|
|
|
You can still use `fs.watchFile`, which uses stat polling, but it is slower and
|
|
|
|
|
less reliable.
|
2012-03-04 01:23:31 +01:00
|
|
|
|
|
2016-04-07 14:36:39 +02:00
|
|
|
|
#### Inodes
|
|
|
|
|
|
|
|
|
|
<!--type=misc-->
|
|
|
|
|
|
|
|
|
|
On Linux and OS X systems, `fs.watch()` resolves the path to an [inode][] and
|
|
|
|
|
watches the inode. If the watched path is deleted and recreated, it is assigned
|
|
|
|
|
a new inode. The watch will emit an event for the delete but will continue
|
|
|
|
|
watching the *original* inode. Events for the new inode will not be emitted.
|
|
|
|
|
This is expected behavior.
|
|
|
|
|
|
2016-12-02 06:55:02 +01:00
|
|
|
|
In AIX, save and close of a file being watched causes two notifications -
|
|
|
|
|
one for adding new content, and one for truncation. Moreover, save and
|
|
|
|
|
close operations on some platforms cause inode changes that force watch
|
|
|
|
|
operations to become invalid and ineffective. AIX retains inode for the
|
|
|
|
|
lifetime of a file, that way though this is different from Linux / OS X,
|
|
|
|
|
this improves the usability of file watching. This is expected behavior.
|
|
|
|
|
|
2012-03-04 01:23:31 +01:00
|
|
|
|
#### Filename Argument
|
|
|
|
|
|
|
|
|
|
<!--type=misc-->
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Providing `filename` argument in the callback is only supported on Linux and
|
2015-09-28 05:08:43 +02:00
|
|
|
|
Windows. Even on supported platforms, `filename` is not always guaranteed to
|
|
|
|
|
be provided. Therefore, don't assume that `filename` argument is always
|
|
|
|
|
provided in the callback, and have some fallback logic if it is null.
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
2016-07-01 10:33:20 +02:00
|
|
|
|
fs.watch('somedir', (eventType, filename) => {
|
|
|
|
|
console.log(`event type is: ${eventType}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
if (filename) {
|
|
|
|
|
console.log(`filename provided: ${filename}`);
|
|
|
|
|
} else {
|
|
|
|
|
console.log('filename not provided');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
```
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.watchFile(filename[, options], listener)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
2014-12-15 16:44:46 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `filename` {String | Buffer}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `options` {Object}
|
|
|
|
|
* `persistent` {Boolean}
|
|
|
|
|
* `interval` {Integer}
|
|
|
|
|
* `listener` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Watch for changes on `filename`. The callback `listener` will be called each
|
|
|
|
|
time the file is accessed.
|
2014-12-15 16:44:46 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
The `options` argument may be omitted. If provided, it should be an object. The
|
|
|
|
|
`options` object may contain a boolean named `persistent` that indicates
|
|
|
|
|
whether the process should continue to run as long as files are being watched.
|
|
|
|
|
The `options` object may specify an `interval` property indicating how often the
|
|
|
|
|
target should be polled in milliseconds. The default is
|
|
|
|
|
`{ persistent: true, interval: 5007 }`.
|
2014-12-15 16:44:46 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
The `listener` gets two arguments the current stat object and the previous
|
|
|
|
|
stat object:
|
2014-12-15 16:44:46 +01:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
fs.watchFile('message.text', (curr, prev) => {
|
|
|
|
|
console.log(`the current mtime is: ${curr.mtime}`);
|
|
|
|
|
console.log(`the previous mtime was: ${prev.mtime}`);
|
|
|
|
|
});
|
|
|
|
|
```
|
2014-12-15 16:44:46 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
These stat objects are instances of `fs.Stat`.
|
2015-06-24 05:42:49 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
If you want to be notified when the file was modified, not just accessed,
|
|
|
|
|
you need to compare `curr.mtime` and `prev.mtime`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
_Note: when an `fs.watchFile` operation results in an `ENOENT` error, it will
|
|
|
|
|
invoke the listener once, with all the fields zeroed (or, for dates, the Unix
|
|
|
|
|
Epoch). In Windows, `blksize` and `blocks` fields will be `undefined`, instead
|
|
|
|
|
of zero. If the file is created later on, the listener will be called again,
|
|
|
|
|
with the latest stat objects. This is a change in functionality since v0.10._
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-05-02 19:27:12 +02:00
|
|
|
|
_Note: [`fs.watch()`][] is more efficient than `fs.watchFile` and
|
|
|
|
|
`fs.unwatchFile`. `fs.watch` should be used instead of `fs.watchFile` and
|
|
|
|
|
`fs.unwatchFile` when possible._
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-07-23 22:43:41 +02:00
|
|
|
|
## fs.write(fd, buffer[, offset[, length[, position]]], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.0.2
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
2016-12-21 08:27:34 +01:00
|
|
|
|
* `buffer` {Buffer | Uint8Array}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `offset` {Integer}
|
|
|
|
|
* `length` {Integer}
|
|
|
|
|
* `position` {Integer}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Write `buffer` to the file specified by `fd`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-11-25 00:35:15 +01:00
|
|
|
|
`offset` determines the part of the buffer to be written, and `length` is
|
|
|
|
|
an integer specifying the number of bytes to write.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
`position` refers to the offset from the beginning of the file where this data
|
|
|
|
|
should be written. If `typeof position !== 'number'`, the data will be written
|
|
|
|
|
at the current position. See pwrite(2).
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
The callback will be given three arguments `(err, written, buffer)` where
|
|
|
|
|
`written` specifies how many _bytes_ were written from `buffer`.
|
2011-04-14 22:45:32 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Note that it is unsafe to use `fs.write` multiple times on the same file
|
|
|
|
|
without waiting for the callback. For this scenario,
|
|
|
|
|
`fs.createWriteStream` is strongly recommended.
|
2011-04-14 22:45:32 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
On Linux, positional writes don't work when the file is opened in append mode.
|
|
|
|
|
The kernel ignores the position argument and always appends the data to
|
|
|
|
|
the end of the file.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-07-23 22:43:41 +02:00
|
|
|
|
## fs.write(fd, string[, position[, encoding]], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.11.5
|
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
2016-07-23 22:43:41 +02:00
|
|
|
|
* `string` {String}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `position` {Integer}
|
|
|
|
|
* `encoding` {String}
|
|
|
|
|
* `callback` {Function}
|
|
|
|
|
|
2016-07-23 22:43:41 +02:00
|
|
|
|
Write `string` to the file specified by `fd`. If `string` is not a string, then
|
|
|
|
|
the value will be coerced to one.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
`position` refers to the offset from the beginning of the file where this data
|
|
|
|
|
should be written. If `typeof position !== 'number'` the data will be written at
|
|
|
|
|
the current position. See pwrite(2).
|
2011-09-11 22:30:01 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
`encoding` is the expected string encoding.
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
The callback will receive the arguments `(err, written, string)` where `written`
|
|
|
|
|
specifies how many _bytes_ the passed string required to be written. Note that
|
2015-11-28 00:30:32 +01:00
|
|
|
|
bytes written is not the same as string characters. See [`Buffer.byteLength`][].
|
2014-07-26 16:04:46 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Unlike when writing `buffer`, the entire string must be written. No substring
|
|
|
|
|
may be specified. This is because the byte offset of the resulting data may not
|
|
|
|
|
be the same as the string offset.
|
2014-07-26 16:04:46 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Note that it is unsafe to use `fs.write` multiple times on the same file
|
|
|
|
|
without waiting for the callback. For this scenario,
|
|
|
|
|
`fs.createWriteStream` is strongly recommended.
|
2012-02-27 20:09:33 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
On Linux, positional writes don't work when the file is opened in append mode.
|
|
|
|
|
The kernel ignores the position argument and always appends the data to
|
|
|
|
|
the end of the file.
|
2012-02-27 20:09:33 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.writeFile(file, data[, options], callback)
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.29
|
|
|
|
|
-->
|
2012-02-27 20:09:33 +01:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `file` {String | Buffer | Integer} filename or file descriptor
|
2016-12-21 08:27:34 +01:00
|
|
|
|
* `data` {String | Buffer | Uint8Array}
|
2015-11-04 18:07:07 +01:00
|
|
|
|
* `options` {Object | String}
|
|
|
|
|
* `encoding` {String | Null} default = `'utf8'`
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `mode` {Integer} default = `0o666`
|
2015-11-04 18:07:07 +01:00
|
|
|
|
* `flag` {String} default = `'w'`
|
|
|
|
|
* `callback` {Function}
|
2012-02-27 20:09:33 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Asynchronously writes data to a file, replacing the file if it already exists.
|
|
|
|
|
`data` can be a string or a buffer.
|
2012-02-27 20:09:33 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
The `encoding` option is ignored if `data` is a buffer. It defaults
|
|
|
|
|
to `'utf8'`.
|
2012-02-27 20:09:33 +01:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Example:
|
2012-02-27 20:09:33 +01:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
fs.writeFile('message.txt', 'Hello Node.js', (err) => {
|
|
|
|
|
if (err) throw err;
|
|
|
|
|
console.log('It\'s saved!');
|
|
|
|
|
});
|
|
|
|
|
```
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
If `options` is a string, then it specifies the encoding. Example:
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
fs.writeFile('message.txt', 'Hello Node.js', 'utf8', callback);
|
|
|
|
|
```
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Any specified file descriptor has to support writing.
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
Note that it is unsafe to use `fs.writeFile` multiple times on the same file
|
|
|
|
|
without waiting for the callback. For this scenario,
|
|
|
|
|
`fs.createWriteStream` is strongly recommended.
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
2016-07-06 14:12:58 +02:00
|
|
|
|
_Note: If a file descriptor is specified as the `file`, it will not be closed
|
|
|
|
|
automatically._
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
2015-11-04 18:07:07 +01:00
|
|
|
|
## fs.writeFileSync(file, data[, options])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.29
|
|
|
|
|
-->
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
fs: Buffer and encoding enhancements to fs API
This makes several changes:
1. Allow path/filename to be passed in as a Buffer on fs methods
2. Add `options.encoding` to fs.readdir, fs.readdirSync, fs.readlink,
fs.readlinkSync and fs.watch.
3. Documentation updates
For 1... it's now possible to do:
```js
fs.open(Buffer('/fs/foo/bar'), 'w+', (err, fd) => { });
```
For 2...
```js
fs.readdir('/fs/foo/bar', {encoding:'hex'}, (err,list) => { });
fs.readdir('/fs/foo/bar', {encoding:'buffer'}, (err, list) => { });
```
encoding can also be passed as a string
```js
fs.readdir('/fs/foo/bar', 'hex', (err,list) => { });
```
The default encoding is set to UTF8 so this addresses the
discrepency that existed previously between fs.readdir and
fs.watch handling filenames differently.
Fixes: https://github.com/nodejs/node/issues/2088
Refs: https://github.com/nodejs/node/issues/3519
PR-URL: https://github.com/nodejs/node/pull/5616
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
2016-03-09 05:58:45 +01:00
|
|
|
|
* `file` {String | Buffer | Integer} filename or file descriptor
|
2016-12-21 08:27:34 +01:00
|
|
|
|
* `data` {String | Buffer | Uint8Array}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `options` {Object | String}
|
|
|
|
|
* `encoding` {String | Null} default = `'utf8'`
|
|
|
|
|
* `mode` {Integer} default = `0o666`
|
|
|
|
|
* `flag` {String} default = `'w'`
|
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
The synchronous version of [`fs.writeFile()`][]. Returns `undefined`.
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
2016-07-23 22:43:41 +02:00
|
|
|
|
## fs.writeSync(fd, buffer[, offset[, length[, position]]])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.21
|
|
|
|
|
-->
|
2011-10-12 01:01:37 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
2016-12-21 08:27:34 +01:00
|
|
|
|
* `buffer` {Buffer | Uint8Array}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `offset` {Integer}
|
|
|
|
|
* `length` {Integer}
|
|
|
|
|
* `position` {Integer}
|
|
|
|
|
|
2016-07-23 22:43:41 +02:00
|
|
|
|
## fs.writeSync(fd, string[, position[, encoding]])
|
2016-05-12 20:52:39 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.11.5
|
|
|
|
|
-->
|
2015-08-20 00:37:52 +02:00
|
|
|
|
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `fd` {Integer}
|
2016-07-23 22:43:41 +02:00
|
|
|
|
* `string` {String}
|
2016-03-18 22:52:11 +01:00
|
|
|
|
* `position` {Integer}
|
|
|
|
|
* `encoding` {String}
|
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
Synchronous versions of [`fs.write()`][]. Returns the number of bytes written.
|
|
|
|
|
|
2016-05-02 19:27:12 +02:00
|
|
|
|
## FS Constants
|
|
|
|
|
|
|
|
|
|
The following constants are exported by `fs.constants`. **Note:** Not every
|
|
|
|
|
constant will be available on every operating system.
|
|
|
|
|
|
|
|
|
|
### File Access Constants
|
|
|
|
|
|
|
|
|
|
The following constants are meant for use with [`fs.access()`][].
|
|
|
|
|
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Constant</th>
|
|
|
|
|
<th>Description</th>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>F_OK</code></td>
|
|
|
|
|
<td>Flag indicating that the file is visible to the calling process.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>R_OK</code></td>
|
|
|
|
|
<td>Flag indicating that the file can be read by the calling process.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>W_OK</code></td>
|
|
|
|
|
<td>Flag indicating that the file can be written by the calling
|
|
|
|
|
process.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>X_OK</code></td>
|
|
|
|
|
<td>Flag indicating that the file can be executed by the calling
|
|
|
|
|
process.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
### File Open Constants
|
|
|
|
|
|
|
|
|
|
The following constants are meant for use with `fs.open()`.
|
|
|
|
|
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Constant</th>
|
|
|
|
|
<th>Description</th>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_RDONLY</code></td>
|
|
|
|
|
<td>Flag indicating to open a file for read-only access.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_WRONLY</code></td>
|
|
|
|
|
<td>Flag indicating to open a file for write-only access.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_RDWR</code></td>
|
|
|
|
|
<td>Flag indicating to open a file for read-write access.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_CREAT</code></td>
|
|
|
|
|
<td>Flag indicating to create the file if it does not already exist.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_EXCL</code></td>
|
|
|
|
|
<td>Flag indicating that opening a file should fail if the
|
|
|
|
|
<code>O_CREAT</code> flag is set and the file already exists.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_NOCTTY</code></td>
|
|
|
|
|
<td>Flag indicating that if path identifies a terminal device, opening the
|
|
|
|
|
path shall not cause that terminal to become the controlling terminal for
|
|
|
|
|
the process (if the process does not already have one).</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_TRUNC</code></td>
|
|
|
|
|
<td>Flag indicating that if the file exists and is a regular file, and the
|
|
|
|
|
file is opened successfully for write access, its length shall be truncated
|
|
|
|
|
to zero.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_APPEND</code></td>
|
|
|
|
|
<td>Flag indicating that data will be appended to the end of the file.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_DIRECTORY</code></td>
|
|
|
|
|
<td>Flag indicating that the open should fail if the path is not a
|
|
|
|
|
directory.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_NOATIME</code></td>
|
|
|
|
|
<td>Flag indicating reading accesses to the file system will no longer
|
|
|
|
|
result in an update to the `atime` information associated with the file.
|
|
|
|
|
This flag is available on Linux operating systems only.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_NOFOLLOW</code></td>
|
|
|
|
|
<td>Flag indicating that the open should fail if the path is a symbolic
|
|
|
|
|
link.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_SYNC</code></td>
|
|
|
|
|
<td>Flag indicating that the file is opened for synchronous I/O.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_SYMLINK</code></td>
|
2016-06-02 19:39:39 +02:00
|
|
|
|
<td>Flag indicating to open the symbolic link itself rather than the
|
2016-05-02 19:27:12 +02:00
|
|
|
|
resource it is pointing to.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_DIRECT</code></td>
|
|
|
|
|
<td>When set, an attempt will be made to minimize caching effects of file
|
|
|
|
|
I/O.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>O_NONBLOCK</code></td>
|
|
|
|
|
<td>Flag indicating to open the file in nonblocking mode when possible.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
### File Type Constants
|
|
|
|
|
|
|
|
|
|
The following constants are meant for use with the [`fs.Stats`][] object's
|
|
|
|
|
`mode` property for determining a file's type.
|
|
|
|
|
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Constant</th>
|
|
|
|
|
<th>Description</th>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IFMT</code></td>
|
|
|
|
|
<td>Bit mask used to extract the file type code.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IFREG</code></td>
|
|
|
|
|
<td>File type constant for a regular file.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IFDIR</code></td>
|
|
|
|
|
<td>File type constant for a directory.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IFCHR</code></td>
|
|
|
|
|
<td>File type constant for a character-oriented device file.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IFBLK</code></td>
|
|
|
|
|
<td>File type constant for a block-oriented device file.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IFIFO</code></td>
|
|
|
|
|
<td>File type constant for a FIFO/pipe.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IFLNK</code></td>
|
|
|
|
|
<td>File type constant for a symbolic link.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IFSOCK</code></td>
|
|
|
|
|
<td>File type constant for a socket.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
### File Mode Constants
|
|
|
|
|
|
|
|
|
|
The following constants are meant for use with the [`fs.Stats`][] object's
|
|
|
|
|
`mode` property for determining the access permissions for a file.
|
|
|
|
|
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Constant</th>
|
|
|
|
|
<th>Description</th>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IRWXU</code></td>
|
|
|
|
|
<td>File mode indicating readable, writable and executable by owner.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IRUSR</code></td>
|
|
|
|
|
<td>File mode indicating readable by owner.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IWUSR</code></td>
|
|
|
|
|
<td>File mode indicating writable by owner.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IXUSR</code></td>
|
|
|
|
|
<td>File mode indicating executable by owner.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IRWXG</code></td>
|
|
|
|
|
<td>File mode indicating readable, writable and executable by group.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IRGRP</code></td>
|
|
|
|
|
<td>File mode indicating readable by group.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IWGRP</code></td>
|
|
|
|
|
<td>File mode indicating writable by group.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IXGRP</code></td>
|
|
|
|
|
<td>File mode indicating executable by group.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IRWXO</code></td>
|
|
|
|
|
<td>File mode indicating readable, writable and executable by others.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IROTH</code></td>
|
|
|
|
|
<td>File mode indicating readable by others.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IWOTH</code></td>
|
|
|
|
|
<td>File mode indicating writable by others.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><code>S_IXOTH</code></td>
|
|
|
|
|
<td>File mode indicating executable by others.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
|
[`Buffer.byteLength`]: buffer.html#buffer_class_method_buffer_bytelength_string_encoding
|
|
|
|
|
[`Buffer`]: buffer.html#buffer_buffer
|
2016-01-05 11:49:54 +01:00
|
|
|
|
[Caveats]: #fs_caveats
|
2015-11-28 00:30:32 +01:00
|
|
|
|
[`fs.access()`]: #fs_fs_access_path_mode_callback
|
|
|
|
|
[`fs.appendFile()`]: fs.html#fs_fs_appendfile_file_data_options_callback
|
|
|
|
|
[`fs.exists()`]: fs.html#fs_fs_exists_path_callback
|
|
|
|
|
[`fs.fstat()`]: #fs_fs_fstat_fd_callback
|
|
|
|
|
[`fs.FSWatcher`]: #fs_class_fs_fswatcher
|
|
|
|
|
[`fs.futimes()`]: #fs_fs_futimes_fd_atime_mtime_callback
|
|
|
|
|
[`fs.lstat()`]: #fs_fs_lstat_path_callback
|
2016-10-31 14:59:08 +01:00
|
|
|
|
[`fs.mkdtemp()`]: #fs_fs_mkdtemp_prefix_options_callback
|
2015-11-28 00:30:32 +01:00
|
|
|
|
[`fs.open()`]: #fs_fs_open_path_flags_mode_callback
|
|
|
|
|
[`fs.read()`]: #fs_fs_read_fd_buffer_offset_length_position_callback
|
|
|
|
|
[`fs.readFile`]: #fs_fs_readfile_file_options_callback
|
|
|
|
|
[`fs.stat()`]: #fs_fs_stat_path_callback
|
|
|
|
|
[`fs.Stats`]: #fs_class_fs_stats
|
|
|
|
|
[`fs.utimes()`]: #fs_fs_futimes_fd_atime_mtime_callback
|
|
|
|
|
[`fs.watch()`]: #fs_fs_watch_filename_options_listener
|
|
|
|
|
[`fs.write()`]: #fs_fs_write_fd_buffer_offset_length_position_callback
|
|
|
|
|
[`fs.writeFile()`]: #fs_fs_writefile_file_data_options_callback
|
|
|
|
|
[`net.Socket`]: net.html#net_class_net_socket
|
|
|
|
|
[`ReadStream`]: #fs_class_fs_readstream
|
|
|
|
|
[`stat()`]: fs.html#fs_fs_stat_path_callback
|
|
|
|
|
[`util.inspect(stats)`]: util.html#util_util_inspect_object_options
|
|
|
|
|
[`WriteStream`]: #fs_class_fs_writestream
|
2015-11-14 04:21:49 +01:00
|
|
|
|
[MDN-Date-getTime]: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/getTime
|
2015-11-28 00:30:32 +01:00
|
|
|
|
[MDN-Date]: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date
|
|
|
|
|
[Readable Stream]: stream.html#stream_class_stream_readable
|
2015-11-14 04:21:49 +01:00
|
|
|
|
[Writable Stream]: stream.html#stream_class_stream_writable
|
2016-10-05 15:43:55 +02:00
|
|
|
|
[inode]: https://en.wikipedia.org/wiki/Inode
|
2016-11-08 00:36:40 +01:00
|
|
|
|
[FS Constants]: #fs_fs_constants_1
|
2016-05-30 23:12:17 +02:00
|
|
|
|
[`inotify`]: http://man7.org/linux/man-pages/man7/inotify.7.html
|
|
|
|
|
[`kqueue`]: https://www.freebsd.org/cgi/man.cgi?kqueue
|
|
|
|
|
[`FSEvents`]: https://developer.apple.com/library/mac/documentation/Darwin/Conceptual/FSEvents_ProgGuide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40005289-CH1-SW1
|
|
|
|
|
[`event ports`]: http://illumos.org/man/port_create
|
|
|
|
|
[`ReadDirectoryChangesW`]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa365465%28v=vs.85%29.aspx
|
|
|
|
|
[`AHAFS`]: https://www.ibm.com/developerworks/aix/library/au-aix_event_infrastructure/
|
2016-10-31 14:59:08 +01:00
|
|
|
|
[Common System Errors]: errors.html#errors_common_system_errors
|