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

36 lines
954 B
C#
Raw Normal View History

2019-11-01 13:38:54 -04:00
#pragma warning disable CS1591
using System;
2015-10-04 00:23:11 -04:00
using System.IO;
2016-10-25 15:02:04 -04:00
using MediaBrowser.Model.IO;
2015-10-04 00:23:11 -04:00
2016-11-11 02:24:36 -05:00
namespace Emby.Server.Implementations.IO
2015-10-04 00:23:11 -04:00
{
public class MbLinkShortcutHandler : IShortcutHandler
{
public string Extension => ".mblink";
2015-10-04 00:23:11 -04:00
public string? Resolve(string shortcutPath)
2015-10-04 00:23:11 -04:00
{
ArgumentException.ThrowIfNullOrEmpty(shortcutPath);
2015-10-04 00:23:11 -04:00
if (Path.GetExtension(shortcutPath.AsSpan()).Equals(".mblink", StringComparison.OrdinalIgnoreCase))
2015-10-04 00:23:11 -04:00
{
var path = File.ReadAllText(shortcutPath);
2015-10-04 00:23:11 -04:00
return Path.TrimEndingDirectorySeparator(path);
2015-10-04 00:23:11 -04:00
}
return null;
}
public void Create(string shortcutPath, string targetPath)
{
ArgumentException.ThrowIfNullOrEmpty(shortcutPath);
ArgumentException.ThrowIfNullOrEmpty(targetPath);
2015-10-04 00:23:11 -04:00
File.WriteAllText(shortcutPath, targetPath);
2015-10-04 00:23:11 -04:00
}
}
}