How to rename a file in C# ?

Want to rename a file using .NET Framework and C# ? , below is a sample code snippet that illustrates how to achieve the same .

How to rename a file in C# ?

using System;
using System.IO;

namespace GinktageConsoleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            RenameFile(@"D:\Ginktage\file1.txt", @"D:\Ginktage\file2.txt");
            Console.ReadLine();
        }
        // Method to convert a byte array to stream in C#
        public static void RenameFile(string oldFileNamewithPath,string NewFileNamewithPath)
        {
            System.IO.File.Move(oldFileNamewithPath, NewFileNamewithPath);
        }
    }
    
}

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...