[C#常用代码]如何把指定文件夹中的文件移动到指定的文件夹

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string strPath = Application.StartupPath +"\\"+ "path" + "\\";
            if (!Directory.Exists(strPath))
            {
                Directory.CreateDirectory(strPath);
            }
            string strFilePath = strPath + "a.xml";

            string strPathSuccess = Application.StartupPath +"\\"+ "pathSuccess" + "\\";
            if (!Directory.Exists(strPathSuccess))
            {
                Directory.CreateDirectory(strPathSuccess);
            }
            string strFilePathSuccess = strPathSuccess + "a.xml";
            //File.Move(strFilePath,strFilePathSuccess);
            //textBox1.Text="D:\wenjianjia\a.xml"
            File.Move(strFilePath, @textBox1.Text);
            MessageBox.Show("Success");
        }
    }
}

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。