【VBScript】ファイル名を変更する

VBScript

ファイル名を変更する

VBScriptで、ファイル名を変更する方法です。

'ファイル名を取得する
Dim objFso
Dim objFile
Set objFso = CreateObject("Scripting.FileSystemObject")
Set objFile = objFso.GetFile("変更前のファイルパス(フルパス)")
objFile.Name = "変更後のファイル名(フルパスは不可)"

'実行例
'フォルダ「C:\test\」にあるbefore.txtをafter.txtに変更する
Dim objFso
Dim objFile
Set objFso = CreateObject("Scripting.FileSystemObject")
Set objFile = objFso.GetFile("C:\test\before.txt")
objFile.Name = "after.txt"