0

我有 2 个按钮(Button1 - 浏览;Button2 - 上传)和 1 个文本框

这是场景。当我单击浏览时,它将打开一个窗口并浏览特定项目。所选项目将显示在文本框中。

private void Browse_Click(object sender, EventArgs e)
{
    btnSample.Title = "Sample File Upload";
    btnSample.InitialDirectory = @"c:\";
    btnSample.Filter = "TIF|*.tif|JPG|*.jpg|GIF|*.gif|PNG|*.png|BMP|*.bmp|PDF|*.pdf|XLS|*.xls|DOC|*.doc|XLSX|*.xlsx|DOCX|*.docx";
    btnSample.FilterIndex = 2;
    btnSample.RestoreDirectory = true;
    if (btnSample.ShowDialog() == DialogResult.OK)
    {
        textBox1.Text = btnSample.FileName;
    }
}

当我单击上传按钮时,文本框中的文件将位于创建的文件夹中。我已完成创建文件夹。但我的问题是如何在文件夹中插入选定的文件。

private void button4_Click(object sender, EventArgs e)
{
    string path = @"C:\SampleFolder\NewFolder";
    if (!Directory.Exists(path))
    {
        Directory.CreateDirectory(path);
        MessageBox.Show("Successfully Created New Directory");
    }
    else
    {
        MessageBox.Show("Filename Exist");
    }
}
4

1 回答 1

0
var sourceFilePath = @"C:\temp\file.txt";
var destFilePath= @"C:\otherFolder\file.txt";

如果要移动文件:

File.Move(sourceFilePath, destFilePath);

如果要复制文件

File.Copy(sourceFilePath, destFilePath);

容易吧?当然,您必须根据问题调整路径...

于 2012-11-07T07:00:14.270 回答