02/10/2018, 00:05
Hướng dẫn lập trình copy một file từ folder này sang folder khác
Hôm nay, mình xin tiếp tục hướng dẫn các cách copy một file từ folder này sang folder khác trong Csharp. Ta thiết kế giao diện form như hình bên dưới: Bây giờ, chúng ta sẽ kiểm tra đường dẫn thư mục Source code của chương ...
Hôm nay, mình xin tiếp tục hướng dẫn các cách copy một file từ folder này sang folder khác trong Csharp.
Ta thiết kế giao diện form như hình bên dưới:
Bây giờ, chúng ta sẽ kiểm tra đường dẫn thư mục
Source code của chương trình:
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; namespace WindowsFormsApplication2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { try { string fileName = "TestFile.txt"; string sourcePath = textBox1.Text; string targetPath = textBox2.Text; //Combine file và đường dẫn string sourceFile = System.IO.Path.Combine(sourcePath, fileName); string destFile = System.IO.Path.Combine(targetPath, fileName); //Copy file từ file nguồn đến file đích System.IO.File.Copy(sourceFile, destFile, true); MessageBox.Show("Copy done successfully."); } catch (Exception ex) { MessageBox.Show(ex.Message.ToString()); } } } }
Kết quả của chương trình:
CHÚC CÁC BẠN THÀNH CÔNG!