mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 08:42:45 +00:00

PR-URL: https://github.com/nodejs/node/pull/35683 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ben Coe <bencoe@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
22 lines
653 B
JavaScript
22 lines
653 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
tmpdir.refresh();
|
|
|
|
{
|
|
// Should warn when trying to delete a file
|
|
common.expectWarning(
|
|
'DeprecationWarning',
|
|
'In future versions of Node.js, fs.rmdir(path, { recursive: true }) ' +
|
|
'will throw if path does not exist or is a file. Use fs.rm(path, ' +
|
|
'{ recursive: true, force: true }) instead',
|
|
'DEP0147'
|
|
);
|
|
const filePath = path.join(tmpdir.path, 'rmdir-recursive.txt');
|
|
fs.writeFileSync(filePath, '');
|
|
fs.rmdir(filePath, { recursive: true }, common.mustSucceed());
|
|
}
|