You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we use walkDirRec which traverses recursively into directories automatically. This means glob potentially walks over a lot of files that the given pattern might completely ignore. Instead it should probably use walkDir so that we can decide whether to recurse into the directories as we come across them.
The text was updated successfully, but these errors were encountered:
@data-man thanks although I ended up basically modifying walkDirRec and adding logic as needed. Any chance you could check out the PR? I want to run a comparison test on a fairly large directory structure before merging, but it should be good otherwise.
Right now we use
walkDirRec
which traverses recursively into directories automatically. This meansglob
potentially walks over a lot of files that the given pattern might completely ignore. Instead it should probably usewalkDir
so that we can decide whether to recurse into the directories as we come across them.The text was updated successfully, but these errors were encountered: