exterminate File.OpenWrite usage

This commit is contained in:
Morilli 2024-06-01 08:15:32 +02:00
parent 43d449be8b
commit 1da58888ff
3 changed files with 5 additions and 5 deletions

View File

@ -283,7 +283,7 @@ namespace BizHawk.Client.EmuHawk
{
var buffer = new byte[(int)size];
_lib.rc_runtime_serialize_progress(buffer, _runtime, IntPtr.Zero);
using var file = File.OpenWrite(path + ".rap");
using var file = File.Create(path + ".rap");
file.Write(buffer, 0, buffer.Length);
}
}
@ -697,4 +697,4 @@ namespace BizHawk.Client.EmuHawk
#endif
}
}
}
}

View File

@ -438,8 +438,8 @@ namespace BizHawk.Emulation.DiscSystem
var buf2448 = new byte[2448];
var dsr = new DiscSectorReader(disc);
using var imgFile = File.OpenWrite(imgPath);
using var subFile = File.OpenWrite(subPath);
using var imgFile = File.Create(imgPath);
using var subFile = File.Create(subPath);
var nLBA = disc.Sessions[disc.Sessions.Count - 1].LeadoutLBA;
for (var lba = 0; lba < nLBA; lba++)
{

View File

@ -878,7 +878,7 @@ namespace BizHawk.Emulation.DiscSystem
throw new NotSupportedException("CHD does not support multisession discs");
}
using var fs = File.OpenWrite(path);
using var fs = File.Create(path);
using var bw = new BinaryWriter(fs);
// write header