2019-11-01 17:38:54 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2015-10-04 04:23:11 +00:00
|
|
|
using System.IO;
|
2016-10-25 19:02:04 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
2015-10-04 04:23:11 +00:00
|
|
|
|
2016-11-11 07:24:36 +00:00
|
|
|
namespace Emby.Server.Implementations.IO
|
2015-10-04 04:23:11 +00:00
|
|
|
{
|
|
|
|
public class MbLinkShortcutHandler : IShortcutHandler
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
public string Extension => ".mblink";
|
2015-10-04 04:23:11 +00:00
|
|
|
|
2021-05-20 19:28:18 +00:00
|
|
|
public string? Resolve(string shortcutPath)
|
2015-10-04 04:23:11 +00:00
|
|
|
{
|
2022-10-13 17:08:00 +00:00
|
|
|
ArgumentException.ThrowIfNullOrEmpty(shortcutPath);
|
2015-10-04 04:23:11 +00:00
|
|
|
|
2023-09-13 15:30:50 +00:00
|
|
|
if (Path.GetExtension(shortcutPath.AsSpan()).Equals(".mblink", StringComparison.OrdinalIgnoreCase))
|
2015-10-04 04:23:11 +00:00
|
|
|
{
|
2019-01-26 22:09:07 +00:00
|
|
|
var path = File.ReadAllText(shortcutPath);
|
2015-10-04 04:23:11 +00:00
|
|
|
|
2023-09-13 15:30:50 +00:00
|
|
|
return Path.TrimEndingDirectorySeparator(path);
|
2015-10-04 04:23:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Create(string shortcutPath, string targetPath)
|
|
|
|
{
|
2022-10-13 17:08:00 +00:00
|
|
|
ArgumentException.ThrowIfNullOrEmpty(shortcutPath);
|
|
|
|
ArgumentException.ThrowIfNullOrEmpty(targetPath);
|
2015-10-04 04:23:11 +00:00
|
|
|
|
2019-01-26 22:09:07 +00:00
|
|
|
File.WriteAllText(shortcutPath, targetPath);
|
2015-10-04 04:23:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|