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
Is it in principle be possible to add seekdir() support, or is there something fundamental that would prevent that?
If it can't be added directly, is there any way I could implement my own seekdir() but continue to use Rustix's Dir structure, or would I have to roll my own version of opendir(), closedir() and readdir() as well?
The text was updated successfully, but these errors were encountered:
In principle, it is probably possible. I'm not aware of anything fundamental blocking it.
If you only need Linux support, you could probably implement your own seekdir using rustix::fs::seek/lseek. If you want portable support, it would need to be added to Dir.
Is it in principle be possible to add seekdir() support, or is there something fundamental that would prevent that?
If it can't be added directly, is there any way I could implement my own seekdir() but continue to use Rustix's Dir structure, or would I have to roll my own version of opendir(), closedir() and readdir() as well?
The text was updated successfully, but these errors were encountered: