Trong bài này tôi sẽ hướng dẫn cách sao chép(copy) một tập tới một vị trí được chỉ định nào đó trong ngôn ngữ lập trình C#.
File.Copy()
Là một trong nhưng phương thức cơ bản của lớp File được sử dụng để sao chép(copy) một tập tin đến một vị trí được chỉ định.
Lưu ý nếu tập tin được copy đã tồn tại trong vị trí(folder) được chỉ định thì lệnh copy sẽ không được thực thị vì nó không cho phép chép đề lên tập tin đã tồn tại.
Cú pháp - Syntax
public static void Copy (
string sourceFileName,
string destFileName
)
string sourceFileName,
string destFileName
)
Ví dụ - Example
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//@author: Bui Ngoc Son
//@web: vnlives.net
namespace CopyFile
{
class Program
{
static void Main(string[] args)
{
string file_name_old = "D:/Z-Test/A/vnlives_file_01.txt";
string file_name_new = "D:/Z-Test/B/vnlives_file_01.txt";
System.IO.File.Copy(file_name_old, file_name_new);
System.Console.WriteLine("File copy is succed.");
System.Console.ReadLine();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
//@author: Bui Ngoc Son
//@web: vnlives.net
namespace CopyFile
{
class Program
{
static void Main(string[] args)
{
string file_name_old = "D:/Z-Test/A/vnlives_file_01.txt";
string file_name_new = "D:/Z-Test/B/vnlives_file_01.txt";
System.IO.File.Copy(file_name_old, file_name_new);
System.Console.WriteLine("File copy is succed.");
System.Console.ReadLine();
}
}
}
Kết quả - Result
No comments:
Post a Comment