FileExists For Networked Locations
I have been messing with FSO.FileExists for a while and have been looking into its limitations. On our server, we operate our directory in:
d:inetpubwwwrootintranet
and inside that directory is a VIRTUAL DIRECTORY by the name of employeeImages which maps to
otherserverfolder
So saying
d:inetpubwwwrootintranetemployeeImagesfile.jpg
IS the same thing as saying
otherserverfolderfile.jpg
The problem is, that when I set that path to a variable, called strPath and perform the following:
blnExists = FSO.FileExists(strPath)
it KEEPS returning as FALSE. So I had it output strPath. Sure enough it was the URL shown above. I cut and paste that into a window's location bar and boom, I'm taken RIGHT to the image.
So I'm thinking "Ok, FSO is a FILE SYSTEM OBJECT. Maybe it's limitations mean that it can only look at the local filesystem? Maybe it cannot see across a networked device? Maybe it cannot work with virtual directories?" I've done some looking around and cannot find any pages on limitations of FSO.
View Replies
ADVERTISEMENT
How can I redirect user to two different locations using single Response.Redirect
View Replies
View Related
Whenever i put in a remote location to server.map, it errors about an invalid character (the colon is what gets it. is there any way to do xml parsing remotely?
View Replies
View Related
If I have a complex SQL statement that I want to use on several pages, what's the best way of going about it? Do I put it in an include or should it go in a sub or function or something else?
View Replies
View Related
I've been using aspmailer by Tom Germain but I don't understand how to get it to do this (or find another mailer script that will) - assign different recipient email addresses for different geographic locations, then process accordingly, depending on the geographic location selected from list on form.
View Replies
View Related
Is it possible to POST a FORM to multiple URLS at the same time OR Is the only workaround for this scenario to use response.redirect in the called ASP page and do a multi processing?
View Replies
View Related
The following code always displays 'false' in the browser window, which indicates that it's not finding the file.
<%
filename="C:INSTALL.LOG"
Set fso = CreateObject("Scripting.FileSystemObject")
response.write fso.fileExists(filename)
%>
The file definitely exists - why it doesn't work?
View Replies
View Related
Here is my the relevant code:
<%
set fs=Server.CreateObject("Scripting.FileSystemObject")
If fs.FileExists("index.stm") Then
CODE HERE
Else
CODE HERE
End If
%>
The problem is this: fs.FileExists("index.stm") always evaluates to false, even though I'm staring at the file "index.stm" as I type. In fact, I can open the file just fine, using the OpenTextFile() method. Checking to see if the file even exists is the problem.
Anybody have any ideas?
View Replies
View Related
I have a simple aspmail form on a site I'm getting ready to launch, and the client has several locations... I wanted the user to be able to choose the location from a pulldown that the form was e-mailed to. Do I have to have a backend processing page for each location and have the pulldown point to it?
View Replies
View Related
I have a table with a number of 'advertisements', and each ad specifies a page display location (#1 - #9). I would like to query for all ads, but display them only where they have their location (see image above). I currently have 9 different SQL queries, one for each location:
"SELECT * FROM tb_ads WHERE f_adlocation = 1
I would like to have one query, and at location 1, simply say: "If f_adlocation = 1, then display here. If there is more than one, then repeat as necessary". Here is what my database looks like: I have attached sample data as a .txt file.
View Replies
View Related
I simply want to verify the existance of a file on the server,
if the file Exists
do something on the client side
otherwise
Stop executing and reload the main page (login).
To get the response of the FileExists I use a ShowModalWindow from a VBS call. The value returned works fine but only the FIRST time that it is called. Only if I restart the IE I get the correct response from FileExists. It seems a session related problem, infact the modal window has always the same session ID (unless IE is restarted). "Session.abandon" in the modal window code didn'T help.
View Replies
View Related
Dim filesys, test
Set filesys = CreateObject("Scripting.FileSystemObject")
test = filesys.FileExists("probat08at08-dank60apzipap072905.002")
Response.Write(test)
The out put is the word 'False'. However, the file is in that path. This is my first time trying anything over a network, checking files and such.
View Replies
View Related
how to use FileExists to check to see if a file exists on a local server BUT what if I want to check if a file exists on a remote server (webserver)? If I enter "http://domainname/folder/image.jpg" it always returns false.
View Replies
View Related
When a file is local to the ASP application, I can use the following code to
test if the file exists:
Dim strFileName, blnFileExists, objFSO
strFileName = Server.MapPath( "MyFiles est.doc" )
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
blnFileExists = objFSO.FileExists( strFileName )
Set objFSO = Nothing
But if "MyFiles" resides on another server and I set up a virtual directory
in my ASP app to reference to it (e.g. "MyFiles est.doc" resolves to
server2F$MyFilesest.doc), the code would return False even if the file
exists on the other server.
View Replies
View Related
The jist of what i want is the obj.FileExists (how it checks for a file on the server) for the client machine.
The client will be scanning something that will put a pdf file into a shared folder on their machine (it will be the same path for all clients). I need to get the code* to pull that file so that i can take the data on the pdf.
*Code doesn't have to be ASP. i'm up for ASP, VBScript, Javascript.
View Replies
View Related
I have searched through the threads relating to FileExists, and have not found an answer (I did find one that dealt with using the FileExists method on a remote server, but that's not quite what I need to do.)
The script searches for all pictures in a particular folder on the server. The current script uses m:... as the path. The site will be transferred to a new host, and onto a shared server (so no more m:).
Here's the original snippet: .....
View Replies
View Related
I am going crazy trying to figure out why the FileExists method of the FileSystem object returns false when the file passed to it DOES exist.
The FolderExists method of the same object recognizes the existence of the folder containing the files in question, but FileExists always returns false.
View Replies
View Related