Link to home
Start Free TrialLog in
Avatar of lpenrod
lpenrod

asked on

File not found, Not...

I am having a problem with a site at my ISP.

I issue this command:
oFSO.MoveFile "c:\sites\Single44\bob\database\" & Right(File.Path,Len(File.Path) - InStrRev(File.Path,"\")),"c:\sites\Single44\bob\webroot\waiting\" & Composition_ID & ".ae"
and the file moves just fine.

I FTP into the site and sure enough, the file is there.

I issue this command:
Set FileSize = oFSO.GetFile("c:\sites\Single44\bob\webroot\waiting\" & comp_id & ".ae")
and I get this error:
The above line results in: Microsoft VBScript runtime (0x800A0035)
File not found
/aeprojectdetail.asp, line 112

I issue this command:
Response.Write("c:\sites\Single44\bob\webroot\waiting\" & comp_id & ".ae")
I get:
c:\sites\Single44\bob\webroot\waiting\221.ae

The file is there!

Any idea why I am getting the error?
Avatar of WMIF
WMIF

lets try another fso function:

response.write oFSO.FileExists("c:\sites\Single44\bob\webroot\waiting\" & comp_id & ".ae")


does that show the file being there?
Are you sure composition_id = comp_id?
Avatar of lpenrod

ASKER

The response is "False".

clockwatcher: composition_id is equal to comp_id.
try to see if  composition_id or comp_id are not empty, to do so write:

response.write "c:\sites\Single44\bob\webroot\waiting\" & comp_id & ".ae"

see what is the result
Avatar of lpenrod

ASKER

c:\sites\Single44\bob\webroot\waiting\221.ae
oh I am sorry I didn't see that you wrote this before.. so I suggest to do as clockwatcher said using FileExists function to see if the system can find the file or not...
so just do
response.write oFSO.FileExists("c:\sites\Single44\bob\webroot\waiting\" & comp_id & ".ae")

if result was false then try to navigate manually to see if the file is there
ASKER CERTIFIED SOLUTION
Avatar of WMIF
WMIF

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of lpenrod

ASKER

Here is the result:

Microsoft VBScript runtime (0x800A01B6)
Object doesn't support this property or method: 'files'
/admin/aeprojectdetail.asp, line 116


Line 116 = for each ofile in ofso.files
Avatar of lpenrod

ASKER

I am an idiot.  There was a link that had an absolute path in it and it pointed to localhost.

I didn't catch it.

Sorry, and thanks for your help.
is your problem solved then?
Avatar of lpenrod

ASKER

Yes it is.  
then please accept an answer that helped, or request closure of this question with community support.