jellyfin/Emby.Server.Implementations/IO/MbLinkShortcutHandler.cs

56 lines
1.4 KiB
C#
Raw Normal View History

2015-10-04 06:23:11 +02:00
using System;
using System.IO;
2017-05-26 08:48:54 +02:00
2016-10-25 21:02:04 +02:00
using MediaBrowser.Controller.IO;
using MediaBrowser.Model.IO;
2015-10-04 06:23:11 +02:00
2016-11-11 08:24:36 +01:00
namespace Emby.Server.Implementations.IO
2015-10-04 06:23:11 +02:00
{
public class MbLinkShortcutHandler : IShortcutHandler
{
private readonly IFileSystem _fileSystem;
public MbLinkShortcutHandler(IFileSystem fileSystem)
{
_fileSystem = fileSystem;
}
public string Extension
{
get { return ".mblink"; }
}
public string Resolve(string shortcutPath)
{
if (string.IsNullOrEmpty(shortcutPath))
{
throw new ArgumentNullException("filenshortcutPathame");
}
if (string.Equals(Path.GetExtension(shortcutPath), ".mblink", StringComparison.OrdinalIgnoreCase))
{
var path = _fileSystem.ReadAllText(shortcutPath);
return _fileSystem.NormalizePath(path);
}
return null;
}
public void Create(string shortcutPath, string targetPath)
{
if (string.IsNullOrEmpty(shortcutPath))
{
throw new ArgumentNullException("shortcutPath");
}
if (string.IsNullOrEmpty(targetPath))
{
throw new ArgumentNullException("targetPath");
}
2016-11-11 08:24:36 +01:00
_fileSystem.WriteAllText(shortcutPath, targetPath);
2015-10-04 06:23:11 +02:00
}
}
}