Chia sẻ

The Replace method replaces the contents of a specified file with the contents of another file. This method deletes the original file and creates a backup of the replaced file.
The following code snippet moves the contents of the original file into the replaced file and also creates a backup of the replaced file and deletes the original file.

string repFile = @"C:repFile.txt";
string backupFile = @"C:backupFile.txt.bac";
string fileName = @"C:fileName.txt";
FileInfo filetoreplace = new FileInfo(fileName);
try
{
		filetoreplace.Replace(repFile, backupFile, false);
}
catch (IOException ex)
{
		Console.WriteLine(ex.Message);
}

ĐĂNG KÝ MUA HÀNG

    Email (*)

    Điện thoại (*)

    Tên sản phẩm/Dịch vụ:


    Chia sẻ
    Xem thêm  [C#] How to Create a File

    Trả lời

    Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *