「VBScript」ファイルをコピーするサンプル
サンプルコード
Dim fso
Set fso = WScript.CreateObject(“Scripting.FileSystemObject")
fso.CopyFile “c:\sample.txt","c:\backup\"
Coding Changes the World
サンプルコード
Dim fso
Set fso = WScript.CreateObject(“Scripting.FileSystemObject")
fso.CopyFile “c:\sample.txt","c:\backup\"