在 VB6 中,在文件夹名称包含空格的路径中执行 .bat 文件时出现问题
我正在尝试使用以下代码在 VB6(静默窗口模式)中执行 .bat 文件。
Set WshShell = CreateObject("WScript.Shell")
cmds = WshShell.RUN("E:\My Folder\RunScript.bat", 0, True)
Set WshShell = Nothing
如果“我的文件夹”
中没有空间,一切工作绝对正常。但如果遇到这样的空间,调用就会失败。我该如何解决这个问题?
I'm trying to execute a .bat file in VB6 (silent window mode) with following code.
Set WshShell = CreateObject("WScript.Shell")
cmds = WshShell.RUN("E:\My Folder\RunScript.bat", 0, True)
Set WshShell = Nothing
Things work absolutely fine if there's no space in 'My Folder'
.but call fails if such a space is encountered. How can I solve this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试这样做:
Try doing this:
我对 WSH 不太了解,但尝试添加单引号:
如果 RUN 将命令传递到其他实例,它们可能会起作用。
或者,如果您想走丑陋的路线,您可以尝试找出目录的 8.3 名称(使用
dir
),并指定它。I don't know much about WSH, but try adding single quotes:
They may do the trick if RUN passes the command on to some other instance.
Alternatively, if you want to go the ugly route, you could try finding out the 8.3 name of the directory (using
dir
), and specify that.你尝试过吗
?
have you tried
?