guineamation
Programmer
Hi all,
when trying to check if file exists on the server, like so:
I always I get Upload.FileExists(path) -> flase, even when the file exists.
anyone?
when trying to check if file exists on the server, like so:
Code:
Set FilePDF = Upload.Files("frm_PDF")
path = "/pdf/" & sItemName
If Not Upload.FileExists(path) Then
response.write "pdf not exists, uploading"&"<BR>"
FilePDF.SaveAsVirtual path
Else
response.write "pdf exist"&"<BR>"
End If
anyone?