Thanks a lot for your fix of #3329
However, I found that the current implementation in v3.10.0 of the now deprecated Files.walk() ignores some of its parameters.
def walk(start: Path, maxDepth: Int, followLinks: Boolean): Stream[F, Path] =
walk(start, WalkOptions.Default)
should be implemented like this:
walk(start, WalkOptions.Default.withMaxDepth(maxDepth).withFollowLinks(followLinks))