Searched refs:rmSync (Results 1 – 8 of 8) sorted by relevance
/third_party/node/test/parallel/ |
D | test-fs-rm.js | 120 fs.rmSync(filePath, { force: true }); 132 fs.rmSync(dir); 135 fs.rmSync(dir, { recursive: false }); 140 fs.rmSync(path.join(tmpdir.path, 'noexist.txt'), { recursive: true }); 152 fs.rmSync(filePath, { recursive: true }); 154 fs.rmSync(filePath, { force: true }); 158 fs.rmSync(dir, { recursive: true }); 161 assert.throws(() => fs.rmSync(dir), { syscall: 'stat' }); 201 fs.rmSync(filePath, { force: true });
|
D | test-policy-parse-integrity.js | 24 fs.rmSync(tmpdirPath, { maxRetries: 3, recursive: true, force: true });
|
/third_party/node/test/common/ |
D | tmpdir.js | 7 function rmSync(pathname) { function 8 fs.rmSync(pathname, { maxRetries: 3, recursive: true, force: true }); 22 rmSync(this.path); 39 rmSync(tmpPath);
|
/third_party/node/benchmark/process/ |
D | coverage.js | 10 const { rmSync } = require('fs'); 28 rmSync(coverageDir, { recursive: true, force: true });
|
/third_party/node/test/pummel/ |
D | test-policy-integrity.js | 123 fs.rmSync(configDirPath, { maxRetries: 3, recursive: true, force: true }); 199 fs.rmSync(configDirPath, { maxRetries: 3, recursive: true, force: true });
|
/third_party/node/test/sequential/ |
D | test-fs-watch.js | 112 fs.rmSync(filepath, { force: true });
|
/third_party/node/lib/ |
D | fs.js | 935 function rmSync(path, options) { function 2147 rmSync,
|
/third_party/node/doc/api/ |
D | fs.md | 4794 description: The `recursive` option is deprecated, use `fs.rmSync` instead. 4839 ### `fs.rmSync(path[, options])`
|