pub async fn symlink_file(
src: impl AsRef<Path>,
dst: impl AsRef<Path>,
) -> Result<()>
Available on crate feature
tokio
only.Expand description
Creates a new file symbolic link on the filesystem.
Wrapper for tokio::fs::symlink_file
.