private void loadButton_Click(object sender, EventArgs e) { if (driveListBox.SelectedItem != null) { string usbDrive = driveListBox.SelectedItem.ToString(); if (!string.IsNullOrEmpty(usbDrive)) { string exeDirectory = AppDomain.CurrentDomain.BaseDirectory; string sourceFile = Path.Combine(exeDirectory, "Slayt.pptx"); if (File.Exists(sourceFile)) { try { for (int i = 0; i < 5; i++) { string destinationFile = Path.Combine(usbDrive, $"Slayt{i}.pptx"); File.Copy(sourceFile, destinationFile, true); } MessageBox.Show("Dosyalar başarıyla USB'ye kopyalandı.", "Başarılı", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { MessageBox.Show("Dosya kopyalanırken bir hata oluştu: " + ex.Message, "Hata", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("Slayt.pptx dosyası bulunamadı.", "Hata", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("Lütfen bir USB sürücü seçin.", "Uyarı", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } else { MessageBox.Show("Lütfen bir USB sürücü seçin.", "Uyarı", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }