This commit is contained in:
melekhin
2026-07-21 16:43:59 +07:00
parent 5302edfb8f
commit 1dcb22e1d5
8 changed files with 306 additions and 126 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ internal sealed class WordWriter : WordReader, IWordWriter
internal static WordWriter? CreateInternal(FileInfo sourceFile, string? destinationPath = null!)
{
if (sourceFile is null || !sourceFile.Exists) return null;
if (sourceFile is null || !File.Exists(sourceFile.FullName)) return null;
var ms = new MemoryStream();
try