莫名其妙的错误
这是我写的copyfile.asp,结果总是为目的文件只读或锁定,是iis设置的问题么? <%
set fs=server.createobject("scripting.filesystemobject")
sourcefile=server.mappath("/1.txt")
targetfile=server.mappath("/2.txt")
on error resume next '有错依然向下执行
fs.copyfile sourcefile,targetfile
if err.number=53 then
response.write sourcefile & "不存在!"
response.end
elseif err.number=70 then
response.write targetfile & "为只读文件或已被锁定!"
response.end
elseif err.number<>0 then
response.write "未知的错误,错误编号=" & err.number
response.end
else
response.write "处理成功!"
end if
%>