vote up 0 vote down star

Hello

I'm trying to read remote text files using this code:

function defdate(ipaddress)
  deffilePath = chr(34) & "\\" & ipaddress & "\c$\" & deffileName & chr(34)
  wscript.echo deffilePath
  set deffile = objFSO.OpenTextFile(deffilePath)
  do while not deffile.endofstream
    s=deffile.readline    
    wscript.echo s
  loop
deffile.close
end function

My deffilePath below expands into strings like this:

"\\10.211.19.207\c$\Program Files\Common Files\Symantec Shared\VirusDefs\definfo.dat"

However, I get "Microsoft VBScript runtime error: Bad file name or number".
What could be the problem?

flag

7 Answers

vote up 1 vote down check

You don't need to (read: "must not") enclose your path in quotes.

deffilePath = "\\" & ipaddress & "\c$\" & deffileName
link|flag
vote up 1 vote down

You only need to include the quotes -- the CHR(34) -- when using the command-line, or for similar APIs. If a method takes just a filename, leave them out.

link|flag
vote up 1 vote down

The problem is the "chr(34)" at the beginning and the end. When typing a path in the Windows run menu you need those quotes, but when passing a path to a function call like this you don't want them.

link|flag
vote up 0 vote down

Thanks everyone, the extra enclosing quotes was the problem.

link|flag
You should accept one of the answers, then. – Tomalak Feb 10 at 16:40
vote up -1 vote down

I think you need two backslashes at the start of an UNC pathname. Try adding another one!

My guess would be that it works with "\\10.211.19.207\c$\Program Files\Common Files\Symantec Shared\VirusDefs\definfo.dat".

link|flag
Well spotted, but I just missed that when I copied the text. I do have two backslashes – qaz22 Feb 10 at 13:39
OK, then I'm afraid I don't know what the problem is. Good luck anyway! :) – sirprize Feb 10 at 13:40
vote up -1 vote down

Is c$ not the problem?

link|flag
No, the problem is the missing backslash. "c$" is the name of the hidden share that Windows creates by default for the "c:" drive. – andynormancx Feb 10 at 13:39
Andy, the backslash isn't missing -- that's a rendering problem. – Roger Lipscombe Feb 10 at 13:41
I know that now Roger, I commented before you fixed that. waves – andynormancx Feb 10 at 13:42
vote up -1 vote down

Have you tried removing the chr(34) at the end?

link|flag
Whoever -1 me, add it back. I was right, I just missed the chr(34) at the beginning should be removed as well. – ck Feb 10 at 14:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.