Lines Matching refs:path
7 const path = require('path');
12 'In future versions of Node.js, fs.rmdir(path, { recursive: true }) ' +
13 'will be removed. Use fs.rm(path, { recursive: true }) instead',
21 path.join(tmpdir.path, `${name}-${count++}`);
25 fs.writeFileSync(path.join(dirname, 'text.txt'), 'hello', 'utf8');
30 fs.writeFileSync(path.join(dirname, `f-${depth}-${f}`), '', options);
37 path.join(dirname, `link-${depth}-good`),
44 path.join(dirname, `link-${depth}-bad`),
50 fs.writeFileSync(path.join(dirname, '[a-z0-9].txt'), '', options);
59 path.join(dirname, `folder-${depth}-${f}`),
66 path.join(dirname, `d-${depth}-${f}`),
234 fs.rmdirSync = (path, options) => {
239 return original(path, options);