Skip to content

Commit 32acafe

Browse files
aduh95targos
authored andcommitted
fs: introduce dirent.parentPath
The goal is to replace `dirent.path` using a name that's less likely to create confusion. `dirent.path` value has not been stable, moving it to a different property name should avoid breaking some upgrading user expectations. PR-URL: #50976 Reviewed-By: Ethan Arrowood <[email protected]> Reviewed-By: LiviaMedeiros <[email protected]>
1 parent 099ebdb commit 32acafe

File tree

5 files changed

+22
-6
lines changed

5 files changed

+22
-6
lines changed

doc/api/fs.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -6614,6 +6614,19 @@ The file name that this {fs.Dirent} object refers to. The type of this
66146614
value is determined by the `options.encoding` passed to [`fs.readdir()`][] or
66156615
[`fs.readdirSync()`][].
66166616
6617+
#### `dirent.parentPath`
6618+
6619+
<!-- YAML
6620+
added:
6621+
- REPLACEME
6622+
-->
6623+
6624+
> Stability: 1 – Experimental
6625+
6626+
* {string}
6627+
6628+
The path to the parent directory of the file this {fs.Dirent} object refers to.
6629+
66176630
#### `dirent.path`
66186631
66196632
<!-- YAML
@@ -6624,7 +6637,7 @@ added:
66246637
66256638
* {string}
66266639
6627-
The base path that this {fs.Dirent} object refers to.
6640+
Alias for `dirent.parentPath`.
66286641
66296642
### Class: `fs.FSWatcher`
66306643

lib/fs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1426,7 +1426,7 @@ function readdirSyncRecursive(basePath, options) {
14261426
const dirent = getDirent(path, readdirResult[0][i], readdirResult[1][i]);
14271427
ArrayPrototypePush(readdirResults, dirent);
14281428
if (dirent.isDirectory()) {
1429-
ArrayPrototypePush(pathsQueue, pathModule.join(dirent.path, dirent.name));
1429+
ArrayPrototypePush(pathsQueue, pathModule.join(dirent.parentPath, dirent.name));
14301430
}
14311431
}
14321432
} else {

lib/internal/fs/dir.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ class Dir {
161161
}
162162

163163
readSyncRecursive(dirent) {
164-
const path = pathModule.join(dirent.path, dirent.name);
164+
const path = pathModule.join(dirent.parentPath, dirent.name);
165165
const ctx = { path };
166166
const handle = dirBinding.opendir(
167167
pathModule.toNamespacedPath(path),

lib/internal/fs/utils.js

+1
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ function assertEncoding(encoding) {
165165
class Dirent {
166166
constructor(name, type, path) {
167167
this.name = name;
168+
this.parentPath = path;
168169
this.path = path;
169170
this[kType] = type;
170171
}

test/parallel/test-fs-opendir.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,11 @@ const invalidCallbackObj = {
4848
const entries = files.map(() => {
4949
const dirent = dir.readSync();
5050
assertDirent(dirent);
51-
return dirent.name;
52-
});
53-
assert.deepStrictEqual(files, entries.sort());
51+
return { name: dirent.name, path: dirent.path, parentPath: dirent.parentPath, toString() { return dirent.name; } };
52+
}).sort();
53+
assert.deepStrictEqual(entries.map((d) => d.name), files);
54+
assert.deepStrictEqual(entries.map((d) => d.path), Array(entries.length).fill(testDir));
55+
assert.deepStrictEqual(entries.map((d) => d.parentPath), Array(entries.length).fill(testDir));
5456

5557
// dir.read should return null when no more entries exist
5658
assert.strictEqual(dir.readSync(), null);

0 commit comments

Comments
 (0)