ファイル移動処理を利用して名前を変更する方法
VB.NET
' ファイル移動
System.IO.File.Move("C:\source.txt", "C:\source.txt")
' ファイル移動処理を利用してに名前を変更する方法
System.IO.File.Move("C:\move\source.txt", "C:\move\filemove.txt")
C#
// ファイル移動
System.IO.File.Move(@"C:\source.txt", @"C:\source.txt");
// ファイル移動処理を利用してに名前を変更する方法
System.IO.File.Move(@"C:\move\source.txt", @"C:\move\filemove.txt");
Microsoft Visual Studio 2010 Professional アカデミック