We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e8c922 commit 573f35eCopy full SHA for 573f35e
src/SharpGLTF.Toolkit/IO/WavefrontWriter.cs
@@ -67,7 +67,7 @@ public void WriteFiles(string filePath)
67
foreach (var fileNameAndGenerator in _GetFileGenerators(System.IO.Path.GetFileNameWithoutExtension(filePath)))
68
{
69
var fpath = System.IO.Path.Combine(dir, fileNameAndGenerator.Key);
70
- using var fs = File.OpenWrite(fpath);
+ using var fs = File.Create(fpath);
71
fileNameAndGenerator.Value(fs);
72
}
73
0 commit comments