文件存在吗? ASP Classic * EASY ONE * :)

时间:2017-03-08 19:52:52

标签: asp-classic

以下是W3学校的一个简单示例:

dim fs

strFilePath = "http://lanswinweb1/assembly/scrollingimages/images/" & Session("Num") & ".jpg"
'strFilePath = "P:\Assembly\Team Performance Boards\LDT Scrolling Monitor\" & Session("Num") & ".jpg"
set fs=Server.CreateObject("Scripting.FileSystemObject")
if fs.FileExists(strFilePath) then
  Session("Num") = Session("Num") + 1
  response.write("File: " & strFilePath & " exists!")
else
  response.write("File: " & strFilePath & " does not exist!")
end if
set fs=nothing

这给了我:

enter image description here

然而,当我在网址中找到该链接时,它可以正常工作: enter image description here

那么,我错过了什么或做错了什么?

1 个答案:

答案 0 :(得分:1)

谢谢@Lankymart的帮助!

strFilePath = Server.MapPath(".") & "\images\1.jpg"

解决它!