|
@@ -470,14 +470,6 @@ namespace MediaBrowser.Server.Implementations.Providers
|
|
|
{
|
|
|
using (dataToSave)
|
|
|
{
|
|
|
- // If the file already exists but is hidden, the below save will throw an UnauthorizedAccessException
|
|
|
- var existingFileInfo = new FileInfo(path);
|
|
|
-
|
|
|
- if (existingFileInfo.Exists && existingFileInfo.Attributes.HasFlag(FileAttributes.Hidden))
|
|
|
- {
|
|
|
- existingFileInfo.Delete();
|
|
|
- }
|
|
|
-
|
|
|
using (var fs = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read, StreamDefaults.DefaultFileStreamBufferSize, FileOptions.Asynchronous))
|
|
|
{
|
|
|
await dataToSave.CopyToAsync(fs, StreamDefaults.DefaultCopyToBufferSize, cancellationToken).ConfigureAwait(false);
|