I'm trying to delete an image file whenever a user clicks a link to delete it. I get no errors, and the error number is zero. However, the file is not deleted. I can save the photos file, but not delete them for some reason. Here is my code:

PhotoFile = "\images\networkPartners\" & rs(fieldName)
PhotoPath = Server.MapPath(PhotoFile)
dim ServerFSO
Set ServerFSO=Server.CreateObject("Scripting.FileSystemObject")
if ServerFSO.FileExists(PhotoPath) then
    response.Write(PhotoPath)

    ServerFSO.DeleteFile(PhotoPath)
end if
set ServerFSO=nothing

When the response.write hits, I do get the actual file path. ("C:/web/images", etc.) All the way up to the file name. All capitalization is correct and so forth. Again, no errors at all when I do the "on error resume next" and write out the error number and string.

Calling:

    ServerFSO.DeleteFile(PhotoPath, true)

results in the error:

    Microsoft VBScript compilation error '800a0414'

    Cannot use parentheses when calling a Sub

    /folder/file_edit.asp, line 32

    ServerFSO.DeleteFile(PhotoPath, true)
    -------------------------------------^
link|improve this question

79% accept rate
This looks like classic ASP, not ASP.NET - are you sure you tagged correctly? – Oded Dec 21 '11 at 15:48
Sorry, it is. I tried putting in the tag "asp", but it said it didn't exist. Didn't think to put "classic" in front of it. – James Dec 21 '11 at 15:49
feedback

2 Answers

up vote 3 down vote accepted

Check if your files are marked with readonly attribute. If so then use

FileSystemObject.DeleteFile filename, true 

this will force delete a readonly file.

link|improve this answer
I actually tried that, but got the error "Cannot use parentheses when calling a Sub" ServerFSO.DeleteFile(PhotoPath, true) -------------------------------------^ – James Dec 21 '11 at 15:51
Did you try calling this Sub without parentheses? OR try CALL FileSystemObject.DeleteFile(filename, true) – ARS Dec 21 '11 at 15:52
Well I don't know how I would call that without parentheses, but I tried to call FileSystemObject.etc with the same resulting error. – James Dec 21 '11 at 15:56
Did you try ServerFSO.DeleteFile PhotoPath, True – ARS Dec 21 '11 at 16:01
Yes, that one worked. Thank you. It's odd that all the examples show that with parentheses around it. – James Dec 21 '11 at 16:04
feedback

My testing of this example code shows that parentheses do work in this example.

<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set fo=fs.GetFolder("c:\")
Set tfile=fo.CreateTextFile("test.txt",true)
tfile.WriteLine("Hello World!")
tfile.Close
if fs.FileExists("c:\test.txt") then
  fs.DeleteFile("c:\test.txt")
end if
set tfile=nothing
set fo=nothing
set fs=nothing
%>

However, it will fail when a force parameter is added:

<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set fo=fs.GetFolder("c:\")
Set tfile=fo.CreateTextFile("test.txt",true)
tfile.WriteLine("Hello World!")
tfile.Close
if fs.FileExists("c:\test.txt") then
  fs.DeleteFile("c:\test.txt",True)
end if
set tfile=nothing
set fo=nothing
set fs=nothing
%>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.