/// Creates a new symbolic link on the filesystem. /// /// The `link` path will be a symbolic link pointing to the `original` path. /// /// This is an async version of [`std::os::unix::fs::symlink`]. pubasyncfn symlink(original: impl AsRef<Path>, link: impl AsRef<Path>) -> io::Result<()> { let original = original.as_ref().to_owned(); let link = link.as_ref().to_owned();
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.