Ran_agro 제보
루트로 지정했을시 폴더 구분자가 중복되어 에러가 나던 문제 해결
This commit is contained in:
2023-05-20 12:54:48 +09:00
parent fb66ad3e6f
commit 7a5c8e3f02
2 changed files with 1 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ namespace Mitria_Minecraft_Launcher
DialogResult result = folderBrowserDialog.ShowDialog();
if(result == DialogResult.OK)
{
textBox_GameDirectory.Text = folderBrowserDialog.SelectedPath + "\\Mitria";
textBox_GameDirectory.Text = CommonLibrary.Extensions.PathCombineW(folderBrowserDialog.SelectedPath,"Mitria");
}
}