zoukankan      html  css  js  c++  java
  • [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:wenjianjiaa.xml"
                File.Move(strFilePath, @textBox1.Text);
                MessageBox.Show("Success");
            }
        }
    }
  • 相关阅读:
    win10 uwp 装机必备应用 含源代码
    win10 uwp 装机必备应用 含源代码
    win10 uwp clone
    win10 uwp clone
    win10 输入法禁用IME
    win10 输入法禁用IME
    win10 输入法禁用IME
    查看SQL运行时间
    [学习笔记]三元环
    数据库范式
  • 原文地址:https://www.cnblogs.com/beeone/p/3993552.html
Copyright © 2011-2022 走看看