0
我需要使用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 "
並且該錯誤消息是...? – LittleBobbyTables
錯誤消息ID「運行時錯誤438。對象不支持此屬性」 – newjenn
對於初學者,我沒有在代碼中的任何地方看到'fso'聲明。其次,爲什麼要創建一個'ffiles'數組,然後只移動最後一個文件? – LittleBobbyTables