Fixed broken path tests

Fixes #8132

(cherry picked from commit 5a22afc42bb03c9cdfb0a46d470d084dbdd495d5)
This commit is contained in:
Qstick 2020-12-07 22:39:52 -05:00
parent 189603c756
commit dfc9f74116
1 changed files with 5 additions and 0 deletions

View File

@ -190,6 +190,11 @@ namespace NzbDrone.Windows.Disk
private IMount GetReparsePoint(string path)
{
if (!Directory.Exists(path))
{
return null;
}
var di = new DirectoryInfo(path);
var isReparsePoint = di.Attributes.HasFlag(FileAttributes.ReparsePoint);