Function std::os::windows::fs::symlink_dir 1.1.0[−][src]
This is supported on Windows only.
Expand description
Creates a new symlink to a directory on the filesystem.
The link
path will be a directory symbolic link pointing to the original
path.
The original
path must be a directory or a symlink to a directory,
otherwise the symlink will be broken. Use symlink_file
for other files.
This function currently corresponds to CreateSymbolicLinkW
.
Note that this may change in the future.
Examples
use std::os::windows::fs;
fn main() -> std::io::Result<()> {
fs::symlink_dir("a", "b")?;
Ok(())
}
Run