このアプリでファイルをディレクトリにコピーしたい。唯一の問題は、元のディレクトリと同じファイル タイプである必要があることです。このコードでは、ファイルの種類を名前の後ろに置く必要があります。ファイルを 2 番目のディレクトリにコピーすると、自動的に .txt になります。最初のディレクトリと同じ拡張子が必要です。どうすればいいですか?これが私のコードです:
using System;
using System.IO;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Transfer_Click(object sender, EventArgs e)
{
File.Copy(@""+textBox1.Text, @""+textBox2.Text+"/"+ textBox3.Text);
label2.Text = "File Transfer Succeeded";
}
private void Filesource_Click(object sender, EventArgs e)
{
DialogResult resDialog = openFileDialog1.ShowDialog();
if (resDialog.ToString() == "OK")
{
textBox1.Text = openFileDialog1.FileName;
}
}
private void Target_Click(object sender, EventArgs e)
{
DialogResult resDialog = folderBrowserDialog1.ShowDialog();
if (resDialog.ToString() == "OK")
{
textBox2.Text = folderBrowserDialog1.SelectedPath;
}
}
}
}