FileSystemObject

  • Thread starter Thread starter Singularity.co.uk
  • Start date Start date
S

Singularity.co.uk

Hi

Does anyone know of another way to check if a file exists without using the
FileSystemObject?

Brendan
 
Am trying to use FileSystemObject to check if a file exists on a remote
server, but am having trouble with the permissions. So I was wondering if
anyone has an alternative method of checking if a file exists.
 
The FileSystemObject is a scripting library COM object, it has nothing to do
with .NET.
Use the framework IO classes as Tim told you.

Willy.
 
Willy

I am using the IO class, but through coding in Classic Asp, I am just used
to calling it the FileSystemObject. Sorry for any confusion caused.

Brendan
 
I see, if your problem is permissions related you will have to solve this
first, no other method exist that potentially could bypass the security
system.

Willy.
 
Thanks for the help. Will just try and change all the different setting
until one works!!!
 
Back
Top