FileAccess Component and FileCreateObject

admin

Administrator
Staff member
How does one verify that this above Object and component are installed? I have a script I am trying to run that isn't working, and I suspect that this might be the problem but due to my extreme ASP-Newbieness, I can't be sure it's not something else. If these are not installed, how does one do so?

Any help would be greatly appreciated.use the following type of script...


On Error Resume Next
set fs = Server.CreateObject("Scripting.FileSystemObject")

if Err.Number <> 0 then
Response.Write "Error: " & err.Description
End If



Note: all ASP servers have the fileSystemObject installed its part of the OS.Thanks Afterburn. You're right of course, there was no error produced and therefore no problem creating the object.
 
Back
Top