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); } } }