瀏覽代碼

Open disk log with write-only access

ghorsington 4 年之前
父節點
當前提交
1fa25edf4b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      BepInEx/Logging/DiskLogListener.cs

+ 1 - 1
BepInEx/Logging/DiskLogListener.cs

@@ -26,7 +26,7 @@ namespace BepInEx.Logging
 
 
 			FileStream fileStream;
 			FileStream fileStream;
 
 
-			while (!Utility.TryOpenFileStream(Path.Combine(Paths.BepInExRootPath, localPath), appendLog ? FileMode.Append : FileMode.Create, out fileStream, share: FileShare.Read))
+			while (!Utility.TryOpenFileStream(Path.Combine(Paths.BepInExRootPath, localPath), appendLog ? FileMode.Append : FileMode.Create, out fileStream, share: FileShare.Read, access: FileAccess.Write))
 			{
 			{
 				if (counter == 5)
 				if (counter == 5)
 				{
 				{