update ffmpeg with qsv-compatible version

This commit is contained in:
Luke Pulverenti
2015-09-18 13:50:24 -04:00
parent 5340bfe8da
commit aff7309a08
11 changed files with 42 additions and 18 deletions

View File

@@ -1167,10 +1167,10 @@ namespace MediaBrowser.Providers.TV
{
try
{
foreach (var file in _fileSystem.GetFiles(path, true)
foreach (var file in _fileSystem.GetFilePaths(path, true)
.ToList())
{
_fileSystem.DeleteFile(file.FullName);
_fileSystem.DeleteFile(file);
}
}
catch (DirectoryNotFoundException)