jellyfin/MediaBrowser.Model/IO/IShortcutHandler.cs

28 lines
809 B
C#
Raw Normal View History

2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.IO
{
public interface IShortcutHandler
{
/// <summary>
/// Gets the extension.
/// </summary>
/// <value>The extension.</value>
string Extension { get; }
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Resolves the specified shortcut path.
/// </summary>
/// <param name="shortcutPath">The shortcut path.</param>
/// <returns>System.String.</returns>
string? Resolve(string shortcutPath);
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Creates the specified shortcut path.
/// </summary>
/// <param name="shortcutPath">The shortcut path.</param>
/// <param name="targetPath">The target path.</param>
void Create(string shortcutPath, string targetPath);
}
}