/// <summary> /// Defines a symbolic link for a directory /// </summary> /// <param name="source">The folder to which a link will be created</param> /// <param name="link">The link that will reference the source folder</param> /// <param name="overwrite"></param> /// <returns></returns> public static Option <FolderSymLink> link(FolderPath link, FolderPath source, bool overwrite = true) => source.CreateSymLink(link, overwrite);