473,761 Members | 6,001 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

File check in ASP

hi
I'm writing, or trying to! an ASP page that checks if a file exists and if
so transfers it. the use sends a query string with the name of the file, I
have this bit working, but need to check if the path and or file exists in
vb6 I would write

if dir(strFileName & "\test.zip" )) <>"" then
msgbox("OK 1 ")
else
msgbox("OK 2 ")
end if
In VBS for ASP?
if dir(Server.MapP ath(strFileName & "\test.zip" )) <>"" then
response.write ("OK 1 ")
else
response.write ("OK 2 ")
end if
Jan 5 '06 #1
2 2453
in ASP/VBScript to check if a file exists use code like this
(change your file path accordingly.. this is an example from one of my
projects)

Dim fsoObject
Set fsoObject = CreateObject("S cripting.FileSy stemObject")
If fsoObject.FileE xists(UploadDir ectory & "\Cat1_" & Request("Cat1_I D") &
".jpg") Then
' do whatever
End If
Set fsoObject = Nothing
"Adrian" <Ad****@nospamh otmail.com.uk> wrote in message
news:dp******** **@nwrdmz02.dmz .ncs.ea.ibs-infra.bt.com...
hi
I'm writing, or trying to! an ASP page that checks if a file exists and if
so transfers it. the use sends a query string with the name of the file,
I have this bit working, but need to check if the path and or file exists
in vb6 I would write

if dir(strFileName & "\test.zip" )) <>"" then
msgbox("OK 1 ")
else
msgbox("OK 2 ")
end if
In VBS for ASP?
if dir(Server.MapP ath(strFileName & "\test.zip" )) <>"" then
response.write ("OK 1 ")
else
response.write ("OK 2 ")
end if

Jan 5 '06 #2
many thanks

"Kyle Peterson" <ky*****@hotmai l.com> wrote in message
news:uY******** *****@tk2msftng p13.phx.gbl...
in ASP/VBScript to check if a file exists use code like this
(change your file path accordingly.. this is an example from one of my
projects)

Dim fsoObject
Set fsoObject = CreateObject("S cripting.FileSy stemObject")
If fsoObject.FileE xists(UploadDir ectory & "\Cat1_" & Request("Cat1_I D") &
".jpg") Then
' do whatever
End If
Set fsoObject = Nothing
"Adrian" <Ad****@nospamh otmail.com.uk> wrote in message
news:dp******** **@nwrdmz02.dmz .ncs.ea.ibs-infra.bt.com...
hi
I'm writing, or trying to! an ASP page that checks if a file exists and
if so transfers it. the use sends a query string with the name of the
file, I have this bit working, but need to check if the path and or file
exists in vb6 I would write

if dir(strFileName & "\test.zip" )) <>"" then
msgbox("OK 1 ")
else
msgbox("OK 2 ")
end if
In VBS for ASP?
if dir(Server.MapP ath(strFileName & "\test.zip" )) <>""
then
response.write ("OK 1 ")
else
response.write ("OK 2 ")
end if


Jan 6 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3930
by: matt | last post by:
I have compiled some code, some written by me, some compiled from various sources online, and basically i've got a very simple flat file photo gallery. An upload form, to upload the photos and give them a caption, storing the caption and filename in a text file. It's a bit buggy when removing the photos and captions from the file, and also in displaying them on the delete page. you can see it in action at www.4am.com.au/gallery/upload.php...
3
8481
by: Don Pasquale | last post by:
The following function intends to delete "numberoflines" lines from a text file, named "s" (string pointer) and pointed to by file pointer "fp", starting from line "line". Now, the function works an inteded, but I think that this is purely coincidential. I'm using a temp file to copy the contents of the text file, and then, copy the last lines that i want to keep, on top of those i want to delete.I fwrite an EOF character after the...
2
1939
by: mhadi | last post by:
Hello Please Help me!! The big bossman is screaming in my ear, I am only devloper of dotnet in my software house and know only to develop widows based application !! My boss wan't me to devolope a page so that when a user clicks a link to to download a file the page check directory at client side(fixed lets name it "c:\download") and search for file say "blablav1.1.exe" (version will be updated)
4
2390
by: News | last post by:
Hi Everyone, The attached code creates client connections to websphere queue managers and then processes an inquiry against them. The program functions when it gets options from the command line. It also works when pulling the options from a file.
1
2244
by: John Wright | last post by:
During my program I load an exe file using reflection. My program loads the file using reflection, checks the assembly version and does an update if the network version is different from the local version. I have a problem, however, when I do the first check using reflection to get the network version, then it locks the file and I can't delete it. How long will the program maintain a lock on the file using reflection? I am setting the...
6
5787
by: magix | last post by:
Hi, when I read entries in file i.e text file, how can I determine the first line and the last line ? I know the first line of entry can be filtered using counter, but how about the last line of entry in EOF while loop ? while (! file.eof() ) { ....
3
4763
by: sam_cit | last post by:
Hi Everyone, I have a buffer having some raw ASCII data and i want to write it into a file. One way is to loop through the buffer and write a single character at a time and close the file after the loop exits. However i feel this will be a bit slow, is there any way the entire buffer's contents in RAM can be copied directly into the file?
24
4456
by: Bill | last post by:
Hello, I'm trying to output buffer content to a file. I either get an access violation error, or crazy looking output in the file depending on which method I use to write the file. Can anyone help out a newbie? #include <stdio.h> #include <ctype.h> #include <string.h>
1
5605
by: shyaminf | last post by:
hi everybody! iam facing a problem with the transfer of file using servlet programming. i have a code for uploading a file. but i'm unable to execute it using tomcat5.5 server. kindly help me how to execute it using tomcat server5.5. the code is as follows. if you have any other coding regarding this, please send me.it's urgent. import java.io.*; import java.util.*; import javax.servlet.*; import javax.servlet.http.*;
1
47480
KevinADC
by: KevinADC | last post by:
Note: You may skip to the end of the article if all you want is the perl code. Introduction Many websites have a form or a link you can use to download a file. You click a form button or click on a link and after a moment or two a file download dialog box pops-up in your web browser and prompts you for some instructions, such as “open” or “save“. I’m going to show you how to do that using a perl script. What You Need Any recent...
0
9345
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10115
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9905
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8780
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7332
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6609
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5229
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5373
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3881
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.