Function symlink::remove_symlink_file [] [src]

pub fn remove_symlink_file<P: AsRef<Path>>(path: P) -> Result<()>

Remove a file symlink.

This just calls std::fs::remove_file, but the function is provided here to correspond to remove_symlink_dir.

On Unix, this corresponds to std::fs::remove_file.