string dosya2 = textBox5.Text;if (File.Exists("D:\\toros kişi data\\" + dosya2 + ".txt") == true) // dizindeki dosya var mı ?{MessageBox.Show("bu dosyalarda var kaydediliyor");textBox7.Text = comboBox4.Text;textBox3.Text = comboBox3.Text;textBox6.Text = comboBox1.Text;String dosya1;dosya1 = textBox5.Text;StreamWriter dosya;dosya = File.AppendText("D:\\toros kişi data\\" + dosya1 + ".txt");dosya.WriteLine(" ");dosya.WriteLine("AD SOYAD=" + textBox1.Text);dosya.WriteLine("TELEFON NO=" + textBox2.Text);dosya.WriteLine("ADRES=" + textBox3.Text);dosya.WriteLine("TARİH=" + textBox4.Text);dosya.WriteLine("MODEL=" + textBox7.Text);dosya.WriteLine("ÜCRET=" + comboBox5.Text);dosya.WriteLine("PUAN=" + comboBox2.Text);dosya.WriteLine("İŞ=" + textBox6.Text);dosya.Close();MessageBox.Show("KAYIT ALINMIŞTIR");şimdi benim istediğim şey şu c# da eğer if çalışıyorsa bunu yapsın ama alttaki komutu yapmasın eğer çalışmıyorsa şu çalışsın:textBox7.Text = comboBox4.Text;textBox3.Text = comboBox3.Text;textBox6.Text = comboBox1.Text;String dosya12;dosya12 = textBox5.Text;StreamWriter SW = new StreamWriter("D:\\toros kişi data\\" + dosya12 + ".txt");SW.WriteLine("AD SOYAD=" + textBox1.Text);SW.WriteLine("TELEFON NO=" + textBox2.Text);SW.WriteLine("ADRES=" + textBox3.Text);SW.WriteLine("TARİH=" + textBox4.Text);SW.WriteLine("MODEL=" + textBox7.Text);SW.WriteLine("ÜCRET=" + comboBox5.Text);SW.WriteLine("PUAN=" + comboBox2.Text);SW.WriteLine("İŞ=" + textBox6.Text);SW.Close();MessageBox.Show("KAYIT ALINMIŞTIR");bana yardım ederseniz sevinirim şimdiden teşekkürler.