版主,VBA里的fileExists和FolderExists是不是不能直接用?
版主,VBA里的fileExists和FolderExists是不是不能直接用?我已经外挂了RUNTIME SRIPTING.
好像函数库里面也没有找到.
要自己写? 在使用该方法前需建立FileSystemObject对象.
Sub Example()
Dim fs As Object
Set fs = CreateObject("Scripting.FileSystemObject")
MsgBox fs.FileExists("c:\boot.ini")
End Sub
页:
[1]