HomeCSharpHow to rename a file in C# ?

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

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...