码迷,mamicode.com
首页 > 其他好文 > 详细

批量复制文件

时间:2019-01-05 15:06:37      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:file类   图片   知识   textbox   stat   highlight   har   event   ring   

实现效果:

  技术分享图片

知识运用:

  File类的Copy方法

  public static void Copy (string sourceFileName, string destFileName)

实现代码:

        private void button3_Click(object sender, EventArgs e)
        {
            foreach (object o in listBox1.SelectedItems)
                File.Copy(textBox1.Text + "\\" + o.ToString(), textBox2.Text + "\\" + o.ToString());
        }

 

批量复制文件

标签:file类   图片   知识   textbox   stat   highlight   har   event   ring   

原文地址:https://www.cnblogs.com/feiyucha/p/10224362.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!