fixed remove path validation

pull/702/head
LukePulverenti 12 years ago
parent 16b36d4d89
commit 05b9500175

@ -98,16 +98,15 @@ namespace MediaBrowser.Api.Library
if (!Directory.Exists(path))
{
throw new DirectoryNotFoundException("The media folder does not exist");
throw new DirectoryNotFoundException(string.Format("The media collection {0} does not exist", virtualFolderName));
}
var shortcut = Directory.EnumerateFiles(path, "*.lnk", SearchOption.AllDirectories).FirstOrDefault(f => FileSystem.ResolveShortcut(f).Equals(mediaPath, StringComparison.OrdinalIgnoreCase));
if (string.IsNullOrEmpty(shortcut))
if (!string.IsNullOrEmpty(shortcut))
{
throw new DirectoryNotFoundException("The media folder does not exist");
File.Delete(shortcut);
}
File.Delete(shortcut);
}
/// <summary>

Loading…
Cancel
Save