Function junction::exists

source ·
pub fn exists<P: AsRef<Path>>(junction: P) -> Result<bool>
Expand description

Determines whether the specified path exists and refers to a junction point.

§Example

use std::io;
fn main() -> io::Result<()> {
    assert!(exists(r"C:\Users\Default User")?);
    Ok(())
}