We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Form1.csの1311行目 backgroundWorker1_DoWorkの中
using (FileStream fs = new FileStream( _TemporaryHtmlFilePath, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.Read | FileShare.Delete)) { fs.Write(bytesData, 0, bytesData.Length); e.Result = _TemporaryHtmlFilePath; }
FileMode.OpenOrCreateをFileMode.Create になってほしいです。
長いmarkdownファイルを開いて後ろの方をたくさん削除した場合 fs.Write(bytesData, 0, bytesData.Length); で上書きしているのでプレビュー用HTMLに以前のデータの残骸が残り、HTMLが壊れてしまいます。
FileMode.Createにして常に新しい内容で書き換えるようになりませんか?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Form1.csの1311行目
backgroundWorker1_DoWorkの中
FileMode.OpenOrCreateをFileMode.Create
になってほしいです。
長いmarkdownファイルを開いて後ろの方をたくさん削除した場合
fs.Write(bytesData, 0, bytesData.Length);
で上書きしているのでプレビュー用HTMLに以前のデータの残骸が残り、HTMLが壊れてしまいます。
FileMode.Createにして常に新しい内容で書き換えるようになりませんか?
The text was updated successfully, but these errors were encountered: