|
|
|
@ -203,10 +203,10 @@ namespace MediaBrowser.XbmcMetadata.Savers
|
|
|
|
|
var directory = Path.GetDirectoryName(path) ?? throw new ArgumentException($"Provided path ({path}) is not valid.", nameof(path));
|
|
|
|
|
Directory.CreateDirectory(directory);
|
|
|
|
|
|
|
|
|
|
// On Windows, savint the file will fail if the file is hidden or readonly
|
|
|
|
|
// On Windows, saving the file will fail if the file is hidden or readonly
|
|
|
|
|
FileSystem.SetAttributes(path, false, false);
|
|
|
|
|
|
|
|
|
|
using (var filestream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read))
|
|
|
|
|
using (var filestream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.None))
|
|
|
|
|
{
|
|
|
|
|
stream.CopyTo(filestream);
|
|
|
|
|
}
|
|
|
|
|