aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IShortcutHandler.cs
blob: 5c663aa0d1dc1a9479db70ba9b72497cdbe81ee4 (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
#pragma warning disable CS1591

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);
    }
}