jellyfin/MediaBrowser.Model/IO/IShortcutHandler.cs

28 lines
809 B
C#
Raw Normal View History

2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.IO
{
public interface IShortcutHandler
{
/// <summary>
/// Gets the extension.
/// </summary>
/// <value>The extension.</value>
string Extension { get; }
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01: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-04 01:49:27 +01:00
2018-12-28 00:27:57 +01: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);
}
}