0

错误系统找不到指定的文件

strCline = Document.getElementById("head").innerHtml
msgbox strCline
strCline = replace(strCline, " ",Chr(32))
oShell.run strCline
Set oShell = Nothing

上面的代码会产生错误,因为它无法正确读取文件名。这都是因为文件名中的空格字符。阅读后,我发现 chr(32) 会替换空格字符,但不会。我如何让它占用空间字符。

编辑:
我的最终代码看起来像这样有效。我在创建对象时犯了错误。

Sub funEdit
set oShell=createobject("Wscript.shell")
strCline = Document.getElementById("head").innerHtml
msgbox strCline
strCline = replace(strCline, " ",Chr(32))
oShell.run strCline
Set oShell = Nothing
End Sub
4

1 回答 1

3

shell 使用空格作为分隔符将命令行拆分为参数。如果要将文本文件规范发送到 .Run 以在默认编辑器中自动显示它们,则必须双引号(逻辑上)单个参数。此演示代码:

Option Explicit

Dim sFSpec : sFSpec = "C:\Documents and Settings\eh\tmp.txt"
Dim sCmd   : sCmd     = sFSpec
Dim oWSH   : Set oWSH = CreateObject("WScript.Shell")
On Error Resume Next
 oWSH.Run sCmd
 WScript.Echo qq(sCmd), "=>", Err.Number, Err.Description
 Err.Clear
 sCmd = qq(sFSpec)
 oWSH.Run sCmd
 WScript.Echo qq(sCmd), "=>", Err.Number, Err.Description
On Error GoTo 0

Function qq(s)
  qq = """" & s & """"
End Function

将输出:

"C:\Documents and Settings\eh\tmp.txt" => -2147024894
""C:\Documents and Settings\eh\tmp.txt"" => 0

并且只打开一个记事本。

有关一些上下文,请参见此处

于 2013-06-24T20:49:15.880 回答