✅ I cant combine folder paths

I was trying to combine folder path with strings with that code

c#
string ilce = duzenleIlce.Text;
string mahalle = duzenleMah.Text;
string ada = duzenleAda.Text;
string parsel = duzenleParsel.Text;
string islem = duzenleIslemCombo.Text;
string klasorAdi = string.IsNullOrEmpty(ada) ? parsel : ada + "_" + parsel;
string baseFolderPath = Settings1.Default.settingsFolderPath + "\\LIHKAB_3100-800\\";

string folderPath = Path.Combine(baseFolderPath, ilce, mahalle, klasorAdi);

But when i click the button, baseFolderPath is still use same path, i need to combine "ilce, mahalle,klasorAdi" strings to reach my folder path. How can i make?
Was this page helpful?