-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
fs::FileType and Metadata should document that is_file, is_dir, and is_symlink are mutually exclusive. #48345
Comments
fs::FileType
should document that is_file
, is_dir
, and is_symlink
are mutually exclusive.
But yes, this ought to be documented, especially given that the mutually exclusive behavior may be surprising to Windows developers. |
Similar goes for |
Well you can always call |
…l exclusion The methods on the structures `fs::FileType` and `fs::Metadata` of (respectively) `is_file`, `is_dir`, and `is_symlink` had some ambiguity in documentation, where it was not noted whether files will pass those tests exclusively or not. It is now written that the tests are mutually exclusive. Fixes rust-lang#48345.
…docfix, r=bluss Fix Issue rust-lang#48345, is_file, is_dir, and is_symlink note mutual exclusion The methods on the structures `fs::FileType` and `fs::Metadata` of (respectively) `is_file`, `is_dir`, and `is_symlink` had some ambiguity in documentation, where it was not noted whether files will pass those tests exclusively or not. It is now written that the tests are mutually exclusive. Fixes rust-lang#48345.
…docfix, r=bluss Fix Issue rust-lang#48345, is_file, is_dir, and is_symlink note mutual exclusion The methods on the structures `fs::FileType` and `fs::Metadata` of (respectively) `is_file`, `is_dir`, and `is_symlink` had some ambiguity in documentation, where it was not noted whether files will pass those tests exclusively or not. It is now written that the tests are mutually exclusive. Fixes rust-lang#48345.
fs::FileType
should document thatis_file()
,is_dir()
, andis_symlink()
are all mutually exclusive. (and that it may also be the case that none of them are true)Why? Because
Path::is_file()
returns true for both files and symlinks to files, and this tends to make me paranoid that afs::FileType
will share similar characteristics and perhaps claim that bothx.is_file()
andx.is_symlink()
. The only way to convince myself that FileType's behavior is indeed sane is to write a little test program---again.Surely I can't be alone in this.
The text was updated successfully, but these errors were encountered: