How to rename file in C#

1 Answer

0 votes
using System;
using System.IO;

public class Program
{
    public static void Main(string[] args)
    {
        try {
            if (File.Exists("d:\\data.bin")) {
                File.Move("d:\\data.bin", "d:\\data_new_name.bin");
                Console.WriteLine("rename success");
            }
        }
        catch (IOException iex) {
            Console.WriteLine(iex.Message);
        }
    }
}


/*
run:
 
rename success
 
*/

 



answered Aug 26, 2015 by avibootz
edited Apr 23, 2024 by avibootz

Related questions

1 answer 130 views
130 views asked Aug 22, 2023 by avibootz
1 answer 231 views
1 answer 173 views
173 views asked Jul 12, 2020 by avibootz
1 answer 222 views
222 views asked Mar 10, 2020 by avibootz
1 answer 240 views
1 answer 209 views
209 views asked Jun 9, 2018 by avibootz
1 answer 215 views
215 views asked Aug 26, 2015 by avibootz
...