Instr function problem

N

.Net Sports

If a filename of a file I upload has a space in it, i want to take the
space out and rename the file on the fly without the space in the
name. I'm using the instr function to see if there is a space in the
name. I can explicitly assign oldFileName and newFileName a value and
it works, but trying to fill the variables with a dynamic filename
doesnt do anything to the file in the code below, the filename still
has a space in it:
'''''''''''''''''''
filenm = request("filenm")
dim oldFileName,newFileName,space
space = instr(filenm," ")

if space > 0 then
oldFileName = filenm
newFileName = replace(filenm," ","")
Sub reNameFile()
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
fso.MoveFile server.mappath(oldFileName), server.mappath
(newFileName)
Set fso = Nothing
filenm = newFileName
End Sub
call reNameFile
end if

response.write filenm & "<br><br>"
end if


??????
NS
 
D

Dan

.Net Sports said:
If a filename of a file I upload has a space in it, i want to take the
space out and rename the file on the fly without the space in the
name. I'm using the instr function to see if there is a space in the
name. I can explicitly assign oldFileName and newFileName a value and
it works, but trying to fill the variables with a dynamic filename
doesnt do anything to the file in the code below, the filename still
has a space in it:
'''''''''''''''''''
filenm = request("filenm")
dim oldFileName,newFileName,space
space = instr(filenm," ")

if space > 0 then
oldFileName = filenm
newFileName = replace(filenm," ","")
Sub reNameFile()
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
fso.MoveFile server.mappath(oldFileName), server.mappath
(newFileName)
Set fso = Nothing
filenm = newFileName
End Sub
call reNameFile
end if

response.write filenm & "<br><br>"
end if


??????
NS

You can't put a Sub inside an If .. End If block. Also "space" is a function
name, so you can't use it as a variable name. And you appear to have too
many "end if" statements. And what happens if any of the folders the file is
in have spaces (eg. /my files/filename.jpg)? I'm assuming you won't have
this in your configuration, but it's worth considering as if this can occur
then you'll be potentially trying to put the file into a folder that doesn't
exist.


Sub reNameFile(oldFileName,newFileName)
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
fso.MoveFile server.mappath(oldFileName), server.mappath(newFileName)
Set fso = Nothing
End Sub

dim filenm, spacepos, nfilenm

filenm = request("filenm")
spacepos = instr(filenm," ")

if spacepos > 0 then
nfilenm = replace(filenm," ","")
call reNameFile(filenm, nfilenm)
end if

response.write nfilenm & "<br><br>"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,053
Latest member
BrodieSola

Latest Threads

Top