-
Notifications
You must be signed in to change notification settings - Fork 31.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change Dirent with stat in fs.readdir with withFileTypes #23055
Comments
There are cases where |
That's it, I'm also would like to have benefit of 300% performance gain with no need to call The thing is what the option |
It isn't just The As @silverwind has mentioned, there are cases where most That being said, as @silverwind also mentioned, there's certainly some utility in having full |
Just published fs-readdir-sync-with-file-types and fs-readdir-with-file-types |
It seems like everything has been answered here, so I'm going to go ahead and close this. Please feel free to reopen/comment if you have additional related questions or if you think something has been left unanswered. |
Just my 2c, but it doesn't seem that this was indeed answered (resolved) as indicated by @bengl. I personally would be in favor of an option to add additional stat properties, as the OP requested. It would be great to see this reopened (forgive me if this was tabled or discussed elsewhere). |
Old but interesting. FWIW, If one insists not to call
|
In node v10.10.0 with merge request #22020 was added a new flag
withFileTypes
to fs.readdir:It is really great addition and I have a couple ideas to share.
Would be great if fs.Dirent contain all information fs.Stat has. I can see no reason to create new entity for such simple data structure which is half duplicated.
Lets compare them:
fs.Dirent
dirent.isBlockDevice()
dirent.isCharacterDevice()
dirent.isDirectory()
dirent.isFIFO()
dirent.isFile()
dirent.isSocket()
dirent.isSymbolicLink()
dirent.name
fs.Stats
stats.isBlockDevice()
stats.isCharacterDevice()
stats.isDirectory()
stats.isFIFO()
stats.isFile()
stats.isSocket()
stats.isSymbolicLink()
stats.dev
stats.ino
stats.mode
stats.nlink
stats.uid
stats.gid
stats.rdev
stats.size
stats.blksize
stats.blocks
stats.atimeMs
stats.mtimeMs
stats.ctimeMs
stats.birthtimeMs
stats.atime
stats.mtime
stats.ctime
stats.birthtime
The only thing that missing in
fs.Stats
it's name.Is your feature request related to a problem? Please describe.
I'm working on file manager for the web Cloud Commander, so I do such things all the time: read directory content and then get stat of every file. Now this all done in readify. And I would like to use the new approach of reading files with stats, it can simplify my code a lot, and make node
API
cleaner.Right now if I use a flag
withFileTypes
I will need to callfs.stat
anyways because I need not only divide files and directories but also get theirsize
,mode
,uid
andmtime
.Describe the solution you'd like
I suggest to change
withFileTypes
behavior to get realstat
information: likesize
,mtime
,uid
in method call:And remove this
fs.Dirent
.Describe alternatives you've considered
Also we can use something like
withFileStats
to get full stats (maybe with names).The text was updated successfully, but these errors were encountered: