我需要使用 VBA 将文件从一个文件夹移动到另一个文件夹。
For m = 1 To fnum
MsgBox " Please Select " & m & "files"
ffiles(m) = Application.GetOpenFilename
Next m
If Dir(outputfolder) = "" Then
fso.createfolder (outputfolder)
End If
fso.Movefile ffiles(m), outputfolder " getting error at this place "
我收到一条错误消息。
Error message id "Runtime error 438 . Object doesnt support this property "