From 50ad643abef0ace70f3959f8532f0e85fef78562 Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Thu, 12 May 2022 09:50:48 +0800 Subject: [PATCH] Update Utils.cs --- v2rayN/v2rayN/Tool/Utils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2rayN/v2rayN/Tool/Utils.cs b/v2rayN/v2rayN/Tool/Utils.cs index 825b0069..f1062818 100644 --- a/v2rayN/v2rayN/Tool/Utils.cs +++ b/v2rayN/v2rayN/Tool/Utils.cs @@ -982,7 +982,7 @@ namespace v2rayN // return path to store temporary files public static string GetTempPath(string filename = "") { - string _tempPath = Path.Combine(StartupPath(), "guiTemp"); + string _tempPath = Path.Combine(StartupPath(), "guiTemps"); if (!Directory.Exists(_tempPath)) { Directory.CreateDirectory(_tempPath);