1

何が問題なのか真剣にわかりません。誰か助けてください:

Dim objFSO, objFolder, objFile, objNewFolder

' Create the file system object/Assing the system object to a variable 
Set objFSO = CreateObject("Scripting.FileSystemObject")

' Get the folder we want to copy files from 
Set objFSO = objFSO.GetFolder("C:\Test")

' Create a new folder called Test2 
Set objNewFolder = objFSO.CreateFolder("C:\Test\Test2")

' For each file in the folder, copy the file to the destination 
For Each objFile In objFolder.Files 
    objFile.Copy "C:\Test2" 
Next 

それは私にそれを教えてくれます:

vbs オブジェクトは、このプロパティまたはメソッドをサポートしていません: 'CreateFolder'

4

1 に答える 1