W3cubDocs

/Rust

Trait std::os::windows::fs::FileTypeExt

pub trait FileTypeExt {
    fn is_symlink_dir(&self) -> bool;
    fn is_symlink_file(&self) -> bool;
}
🔬 This is a nightly-only experimental API. (windows_file_type_ext)This is supported on Windows only.

Windows-specific extensions to fs::FileType.

On Windows, a symbolic link knows whether it is a file or directory.

Required methods

🔬 This is a nightly-only experimental API. (windows_file_type_ext)This is supported on Windows only.

Returns true if this file type is a symbolic link that is also a directory.

🔬 This is a nightly-only experimental API. (windows_file_type_ext)This is supported on Windows only.

Returns true if this file type is a symbolic link that is also a file.

Loading content...

Implementors

impl FileTypeExt for FileType[src]

Loading content...

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/os/windows/fs/trait.FileTypeExt.html