标签:style blog color io ar for 文件 sp div
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"); } } }
标签:style blog color io ar for 文件 sp div
原文地址:http://www.cnblogs.com/beeone/p/3993552.html