Skip to content

Commit 076e82c

Browse files
anonrigaduh95
authored andcommitted
fs: move ToNamespacedPath dir calls to c++
PR-URL: #53630 Reviewed-By: Vinícius Lourenço Claro Cardoso <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Stephen Belanger <[email protected]>
1 parent 77936c3 commit 076e82c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/internal/fs/dir.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ class Dir {
155155
readSyncRecursive(dirent) {
156156
const path = pathModule.join(dirent.parentPath, dirent.name);
157157
const handle = dirBinding.opendir(
158-
pathModule.toNamespacedPath(path),
158+
path,
159159
this.#options.encoding,
160160
);
161161

@@ -298,7 +298,7 @@ function opendir(path, options, callback) {
298298
req.oncomplete = opendirCallback;
299299

300300
dirBinding.opendir(
301-
pathModule.toNamespacedPath(path),
301+
path,
302302
options.encoding,
303303
req,
304304
);
@@ -308,9 +308,7 @@ function opendirSync(path, options) {
308308
path = getValidatedPath(path);
309309
options = getOptions(options, { encoding: 'utf8' });
310310

311-
const handle = dirBinding.opendirSync(
312-
pathModule.toNamespacedPath(path),
313-
);
311+
const handle = dirBinding.opendirSync(path);
314312

315313
return new Dir(handle, path, options);
316314
}

src/node_dir.cc

+2
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,7 @@ static void OpenDir(const FunctionCallbackInfo<Value>& args) {
363363

364364
BufferValue path(isolate, args[0]);
365365
CHECK_NOT_NULL(*path);
366+
ToNamespacedPath(env, &path);
366367

367368
const enum encoding encoding = ParseEncoding(isolate, args[1], UTF8);
368369

@@ -406,6 +407,7 @@ static void OpenDirSync(const FunctionCallbackInfo<Value>& args) {
406407

407408
BufferValue path(isolate, args[0]);
408409
CHECK_NOT_NULL(*path);
410+
ToNamespacedPath(env, &path);
409411
THROW_IF_INSUFFICIENT_PERMISSIONS(
410412
env, permission::PermissionScope::kFileSystemRead, path.ToStringView());
411413

0 commit comments

Comments
 (0)