1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-04 10:34:59 +02:00

Fixed: Improve paths longer than 256 on Windows failing to hardlink

This commit is contained in:
Mark McDowall 2024-04-18 21:40:22 -07:00 committed by Mark McDowall
parent d738035fed
commit a97fbcc40a

View File

@ -170,6 +170,11 @@ public override bool TryCreateHardLink(string source, string destination)
{
try
{
if (source.Length > 256 && !source.StartsWith(@"\\?\"))
{
source = @"\\?\" + source;
}
return CreateHardLink(destination, source, IntPtr.Zero);
}
catch (Exception ex)