Guys and gals,
I need a bit of help if you wouldn't mind. The following code can be used to see whether a file exists:
Dim FileSystemObject
Set FileSystemObject = Server.CreateObject("Scripting.FileSystemObject")
If (FileSystemObject.FileExists("C:\test\test.txt")) Then
response.write "File Exists"
Else
response.write "File does not exist"
End If
However this does not work if the file is on a virtual directory or on a share.
Anyone have any ideas how to work around this?
Thanks for your help,
Leon


LinkBack URL
About LinkBacks
Reply With Quote