Node: fs.readFile does not account file system flag 'a+' in Node 14.11

Created on 22 Sep 2020  路  5Comments  路  Source: nodejs/node

I tried to find similar issues but couldn't, sorry if it is already reported.

  • Version:
    v14.11.0
  • Platform:
    Darwin MacBook-Pro-Daniil.local 18.7.0 Darwin Kernel Version 18.7.0: Thu Jun 20 18:42:21 PDT 2019; root:xnu-4903.270.47~4/RELEASE_X86_64 x86_64

What steps will reproduce the bug?

With a+ flag file should be created if it does not exist. It works with readFileSync, but fails with readFile
There is also similar problem with w+ flag and maybe others, but I did not tested all of them.

const fs = require('fs');

const content = fs.readFileSync('./nonexistingfile1', {
  encoding: 'utf-8',
  flag: 'a+',
});

console.log(content); // content is empty string, so file was created

fs.readFile(
  './nonexistingfile2',
  { encoding: 'utf-8', flag: 'a+' },
  (err, data) => {
    console.log(err, data);
    // [Error: ENOENT: no such file or directory, open './nonexistingfile2'] {
    //   errno: -2,
    //   code: 'ENOENT',
    //   syscall: 'open',
    //   path: './nonexistingfile2'
    // }
  }
);

How often does it reproduce? Is there a required condition?

Always with node v14.11
Works fine in node v12.18.4

What is the expected behavior?

File is created before reading and there is no ENOENT error

What do you see instead?

ENOENT error

    [Error: ENOENT: no such file or directory, open './nonexistingfile2'] {
      errno: -2,
      code: 'ENOENT',
      syscall: 'open',
      path: './nonexistingfile2'
    }

confirmed-bug fs regression

All 5 comments

I am not sure, since I'm new to Node source codebase, but it might be connected to this PR https://github.com/nodejs/node/pull/27044/files#diff-9a205ef7ee967ee32efee02e58b3482dL314

Possible typo since there is no such thing as options.flags only options.flag.

I have no idea how to test it yet, but I can make PR if this is the problem

@O4epegb a PR would be great. This seems to be a typo.

Ok, I'll make it soon!

This issue made me realize that we have a big inconsistency regarding this option: all methods expect it to be flag in the options object, except the stream ones (createReadStream, createWriteStream), which look for the flags property...

I guess this issue could be closed now?

Fixed here: https://github.com/nodejs/node/pull/35292

Was this page helpful?
0 / 5 - 0 ratings

Related issues

danialkhansari picture danialkhansari  路  3Comments

jmichae3 picture jmichae3  路  3Comments

cong88 picture cong88  路  3Comments

seishun picture seishun  路  3Comments

willnwhite picture willnwhite  路  3Comments