创建 VBScript 函数时出现问题
我正在尝试创建一个简单的 VBScript 脚本,在这个脚本中我需要一个函数,它接受一个文件路径,如果那里有文件则返回 true,如果没有文件则返回 false。
我正在使用以下代码:
Function FileThere (FileName As String) As Boolean
FileThere = (Dir(FileName) > "")
End Function
我收到以下错误:
Expected ')'
800A03EE
Microsoft VBScript compilation error
知道出了什么问题吗?我已经用文件中的这三行对其进行了测试,但错误仍然发生。
I'm trying to create a simple VBScript script, in this I need a function that takes a file path and returns true if there is a file there, and false if there's nothing.
I'm using the following code:
Function FileThere (FileName As String) As Boolean
FileThere = (Dir(FileName) > "")
End Function
I get the following error:
Expected ')'
800A03EE
Microsoft VBScript compilation error
Any idea what's wrong? I've tested it with just those three lines in the file and the error still occurs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须删除变量类型。顺便说一句,Dir() 函数不可用,因此您必须使用以下代码:
You must remove variable types. BTW, Dir() function isn't available so you must go with following code:
VBScript 只有变体类型,不能显式指定类型。
VBScript only has the variant type, you can't specify types explicitly.
vbs 中不存在此类类型
Dir 函数不存在。
there are no types as such in vbs
Dir function does not exist.