Trong bài viết này tôi sẽ hướng dẫn cách sử dụng phương thức File.Move() để chuyển đổi tên của một tập tin được chỉ định thành một tên mới, chỗ này tôi cũng hiểu tai sao Microsoft lại sử dụng phương thức này để thực hiện việc đổi tên ^^!
File.Move()
Là một trong nhưng phương thức cơ bản của lớp file được sử dụng để di chuyển một tập tin từ vị trí hiện tại sang một vị trí khác trong đó có bao gồm luôn khả năng đổi tên của tập tin được di chuyển, vì vậy ta có thể sử dụng phương thức này để đổi tên của một tập tin.
Cú pháp - Syntax
public static void Move (
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 HowToRenameFile
{
class Program
{
static void Main(string[] args)
{
string file_name_old = "D:/vnlives_file_01.txt";
string file_name_new = "D:/VNLIVES_NET.txt";
System.IO.File.Move(file_name_old, file_name_new);
System.Console.WriteLine("File rename is succed.");
System.Console.ReadLine();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
//@author: BUI NGOC SON
//@web: vnlives.net
namespace HowToRenameFile
{
class Program
{
static void Main(string[] args)
{
string file_name_old = "D:/vnlives_file_01.txt";
string file_name_new = "D:/VNLIVES_NET.txt";
System.IO.File.Move(file_name_old, file_name_new);
System.Console.WriteLine("File rename is succed.");
System.Console.ReadLine();
}
}
}
Kết quả - Result
No comments:
Post a Comment