Skip to content

Commit 77cbe27

Browse files
joyeecheungMayaLekova
authored andcommitted
fs: throw errors from fs.unlinkSync in JS
PR-URL: nodejs#18348 Refs: nodejs#18106 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 3195da9 commit 77cbe27

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

lib/fs.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1328,7 +1328,11 @@ fs.unlinkSync = function(path) {
13281328
handleError((path = getPathFromURL(path)));
13291329
nullCheck(path);
13301330
validatePath(path);
1331-
return binding.unlink(pathModule.toNamespacedPath(path));
1331+
const ctx = { path };
1332+
binding.unlink(pathModule.toNamespacedPath(path), undefined, ctx);
1333+
if (ctx.errno !== undefined) {
1334+
throw new errors.uvException(ctx);
1335+
}
13321336
};
13331337

13341338
fs.fchmod = function(fd, mode, callback) {

src/node_file.cc

+9-5
Original file line numberDiff line numberDiff line change
@@ -777,17 +777,21 @@ static void Fsync(const FunctionCallbackInfo<Value>& args) {
777777
static void Unlink(const FunctionCallbackInfo<Value>& args) {
778778
Environment* env = Environment::GetCurrent(args);
779779

780-
CHECK_GE(args.Length(), 1);
780+
const int argc = args.Length();
781+
CHECK_GE(argc, 2);
781782

782783
BufferValue path(env->isolate(), args[0]);
783784
CHECK_NE(*path, nullptr);
784785

785-
if (args[1]->IsObject()) {
786-
CHECK_EQ(args.Length(), 2);
786+
if (args[1]->IsObject()) { // unlink(fd, req)
787+
CHECK_EQ(argc, 2);
787788
AsyncCall(env, args, "unlink", UTF8, AfterNoArgs,
788789
uv_fs_unlink, *path);
789-
} else {
790-
SYNC_CALL(unlink, *path, *path)
790+
} else { // unlink(fd, undefined, ctx)
791+
CHECK_EQ(argc, 3);
792+
fs_req_wrap req_wrap;
793+
SyncCall(env, args[2], &req_wrap, "unlink",
794+
uv_fs_unlink, *path);
791795
}
792796
}
793797

0 commit comments

Comments
 (0)