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

36 lines
954 B
C#
Raw Normal View History

2019-11-01 18:38:54 +01:00
#pragma warning disable CS1591
using System;
2015-10-04 06:23:11 +02:00
using System.IO;
2016-10-25 21:02:04 +02:00
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
{
public string Extension => ".mblink";
2015-10-04 06:23:11 +02:00
public string? Resolve(string shortcutPath)
2015-10-04 06:23:11 +02:00
{
ArgumentException.ThrowIfNullOrEmpty(shortcutPath);
2015-10-04 06:23:11 +02:00
if (Path.GetExtension(shortcutPath.AsSpan()).Equals(".mblink", StringComparison.OrdinalIgnoreCase))
2015-10-04 06:23:11 +02:00
{
var path = File.ReadAllText(shortcutPath);
2015-10-04 06:23:11 +02:00
return Path.TrimEndingDirectorySeparator(path);
2015-10-04 06:23:11 +02:00
}
return null;
}
public void Create(string shortcutPath, string targetPath)
{
ArgumentException.ThrowIfNullOrEmpty(shortcutPath);
ArgumentException.ThrowIfNullOrEmpty(targetPath);
2015-10-04 06:23:11 +02:00
File.WriteAllText(shortcutPath, targetPath);
2015-10-04 06:23:11 +02:00
}
}
}