Nameステートメント
構文
Name oldpathname As newpathname
oldpathnameには、名前を変更するファイル名を指定します。
newpathnameには、新しい名前を指定します。
解説
ファイルまたはフォルダの名前を変更します。
サンプル
次の例は、C:\Test.dataファイルをC:\Sample.datにリネームします。
Sub Sample() Name "C:\Test.dat" As "C:\Sample.dat" 'Test.datをリネームします Name "C:\Sample.dat" As "C:\Tmp\Sample.dat" 'Sample.datをTmpへ移動します End Sub