-
Notifications
You must be signed in to change notification settings - Fork 13.3k
lstat implementation on windows #12795
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
Labels
O-windows
Operating system: Windows
Comments
lbonn
added a commit
to lbonn/rust
that referenced
this issue
Mar 10, 2014
For now, the windows version uses stat, just as before. We should switch back to lstat as soon as rust-lang#12795 is closed.
lbonn
added a commit
to lbonn/rust
that referenced
this issue
Mar 10, 2014
The rmdir test is blocked by rust-lang#12795 on windows.
After a little search, I noticed that rust is an outlier by trying to support links on windows: python and golang don't provide link functions and alias However, libuv looks interesting in this regard: |
Seems to exist now. 🎊 |
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Jul 25, 2022
…r=jonas-schievink feat: Support the 1.64 nightly proc macro ABI Should resolve rust-lang/rust-analyzer#12600 Not sure why I thought the Rust version was the same as on beta, that's never the case (but future nightly changes can break the ABI again).
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
May 30, 2024
… r=y21 Correctly handle closing parens in `missing_backticks` doc lint Fixes rust-lang#12795. changelog: Correctly handle closing parens in `doc_markdown` lint
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Link and symlink capabilities exist on
win32
platform, yetlstat
's implementation is still missing.Some fs operations need it to work properly, for example
rmdir_recursive
(#12573)The text was updated successfully, but these errors were encountered: