aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IShortcutHandler.cs
blob: 69b6f35e719574ba730474e6dd3ed045fb0030a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma warning disable CS1591
#pragma warning disable SA1600

namespace MediaBrowser.Model.IO
{
    public interface IShortcutHandler
    {
        /// <summary>
        /// Gets the extension.
        /// </summary>
        /// <value>The extension.</value>
        string Extension { get; }

        /// <summary>
        /// Resolves the specified shortcut path.
        /// </summary>
        /// <param name="shortcutPath">The shortcut path.</param>
        /// <returns>System.String.</returns>
        string Resolve(string shortcutPath);

        /// <summary>
        /// Creates the specified shortcut path.
        /// </summary>
        /// <param name="shortcutPath">The shortcut path.</param>
        /// <param name="targetPath">The target path.</param>
        /// <returns>System.String.</returns>
        void Create(string shortcutPath, string targetPath);
    }
}