Lines Matching refs:fs
4 const fs = require('node:fs');
16 fs.readFile(testPath, options, common.mustNotCall());
20 fs.readFileSync(testPath, options);
24 fs.readdir(testPath, options, common.mustNotCall());
28 fs.readdirSync(testPath, options);
32 fs.readlink(testPath, options, common.mustNotCall());
36 fs.readlinkSync(testPath, options);
40 fs.writeFile(testPath, 'data', options, common.mustNotCall());
44 fs.writeFileSync(testPath, 'data', options);
48 fs.appendFile(testPath, 'data', options, common.mustNotCall());
52 fs.appendFileSync(testPath, 'data', options);
56 fs.watch(testPath, options, common.mustNotCall());
60 fs.realpath(testPath, options, common.mustNotCall());
64 fs.realpathSync(testPath, options);
68 fs.mkdtemp(testPath, options, common.mustNotCall());
72 fs.mkdtempSync(testPath, options);
76 fs.ReadStream(testPath, options);
80 fs.WriteStream(testPath, options);