Add scandir#62164
Open
IanButterworth wants to merge 2 commits into
Open
Conversation
Split out of JuliaLang#55358 at triage's request, stacked on the `DirEntry` / `readdir(dir, DirEntry)` work. `scandir(dir)` returns a stateful, single-pass `DirEntryIterator` that streams filename `String`s one entry at a time via `uv_fs_opendir` / `uv_fs_readdir`, without first materializing the full listing. This is useful for very large directories or when iteration is short-circuited (e.g. `break` or `Iterators.take`). `scandir(dir, DirEntry)` yields `DirEntry` objects instead, and a do-block form `scandir(f, dir[, DirEntry])` releases the underlying directory handle as soon as `f` returns; otherwise cleanup happens at end-of-iteration, on `close`, or via a finalizer. The element-type selector uses a trailing type argument to match `readdir(dir, DirEntry)`. New runtime helpers `jl_uv_fs_opendir`, `jl_uv_fs_readdir`, and `jl_uv_fs_closedir` wrap the libuv directory API and hide the `uv_dir_t` layout from Julia. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2be7147 to
f1ceb21
Compare
IanButterworth
commented
Jun 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
scandir, a lazy version ofreaddir