Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Here is a simple example from W3 Schools:

dim fs

strFilePath = "http://lanswinweb1/assembly/scrollingimages/images/" & Session("Num") & ".jpg"
'strFilePath = "P:AssemblyTeam Performance BoardsLDT 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

This is giving me:

enter image description here

Yet when I go to that link in the web address, it works: enter image description here

So, what is it that I am missing or doing wrong?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
319 views
Welcome To Ask or Share your Answers For Others

1 Answer

Thank you @Lankymart for the help!

strFilePath = Server.MapPath(".") & "images1.jpg"

Solves it!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...