From ed7d1a675797b0efd1ebb16c88448f3ae30a48bc Mon Sep 17 00:00:00 2001 From: pointfeev Date: Fri, 12 Nov 2021 15:34:54 -0500 Subject: [PATCH] move to appdata --- CreamInstaller/SteamCMD.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CreamInstaller/SteamCMD.cs b/CreamInstaller/SteamCMD.cs index 0abf965..20465c2 100644 --- a/CreamInstaller/SteamCMD.cs +++ b/CreamInstaller/SteamCMD.cs @@ -13,7 +13,7 @@ namespace CreamInstaller { public static class SteamCMD { - public static string DirectoryPath = Path.GetTempPath() + "CreamInstaller"; + public static string DirectoryPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\CreamInstaller"; public static string FilePath = DirectoryPath + @"\steamcmd.exe"; public static string ArchivePath = DirectoryPath + @"\steamcmd.zip"; public static string DllPath = DirectoryPath + @"\steamclient.dll";