How to rename file in VB.NET

1 Answer

0 votes
Imports System.IO

Module Module1

    Sub Main()

        Dim s As String

        Try

            If File.Exists("d:\\data.bin") = True Then

                File.Move("d:\\data.bin", "d:\\data_new_name.bin")
                Console.WriteLine("rename success")

            End If

        Catch iex As IOException

            Console.WriteLine(iex.Message)

        End Try

    End Sub

    'run:
    ' 
    'rename success

End Module

 



answered Aug 26, 2015 by avibootz

Related questions

1 answer 130 views
130 views asked Aug 22, 2023 by avibootz
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 216 views
216 views asked Aug 26, 2015 by avibootz
2 answers 292 views
292 views asked Aug 26, 2015 by avibootz
...