Home
last modified time | relevance | path

Searched refs:rmSync (Results 1 – 8 of 8) sorted by relevance

/third_party/node/test/parallel/
Dtest-fs-rm.js120 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 });
Dtest-policy-parse-integrity.js24 fs.rmSync(tmpdirPath, { maxRetries: 3, recursive: true, force: true });
/third_party/node/test/common/
Dtmpdir.js7 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/
Dcoverage.js10 const { rmSync } = require('fs');
28 rmSync(coverageDir, { recursive: true, force: true });
/third_party/node/test/pummel/
Dtest-policy-integrity.js123 fs.rmSync(configDirPath, { maxRetries: 3, recursive: true, force: true });
199 fs.rmSync(configDirPath, { maxRetries: 3, recursive: true, force: true });
/third_party/node/test/sequential/
Dtest-fs-watch.js112 fs.rmSync(filepath, { force: true });
/third_party/node/lib/
Dfs.js935 function rmSync(path, options) { function
2147 rmSync,
/third_party/node/doc/api/
Dfs.md4794 description: The `recursive` option is deprecated, use `fs.rmSync` instead.
4839 ### `fs.rmSync(path[, options])`