このコードを使用してリモートテキストファイルを読み込もうとしています。
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
以下の私のdeffilePathは、次のような文字列に展開されます。
"\\10.211.19.207\c$\Program Files\Common Files\Symantec Shared\VirusDefs\definfo.dat"
ただし、「Microsoft VBScriptランタイムエラー:ファイル名または番号が正しくありません」というメッセージが表示されます。
何が問題なのですか?