I'm writing a small utility for myself that needs to be able to check if a file is a symlink or not.
Using FileType::is_symlink
on Windows always returns false
(goes for both symlinks to directories, and regular files).
Using regular Rust 2018 edition, is there any way to check if a file is a symlink on Windows?
In my searching, I came across: FileTypeExt
- however this requires that you use unstable Rust, as far as I can tell.