studyfromyou 发表于 2005-11-30 08:52:35

请问嘉缘老师为什么你的程序上传图片后,当删除时却不能删除服务器上的图片呢?

<P>   请问嘉缘老师,我下载了你的求职程序2.15版,但是发现了一个问题,就是当在后台发布新闻,插入图片后,当想删除时,虽然删除了数据库中的文件,但是上传在服务器上的图片却仍然在,删不掉,请问这是怎么回事?请问怎样才能删除保留在服务器上的残余图片呢?否则,图片越来越多,就变成了垃圾了。万分感谢!</P>
<P>************************************</P>
<P>   另外,我曾下载过你的一个程序,也是关于图片上传的,下面的代码是表单提交后,即图片提交后到表单处理页面的:</P>
<P>from=upload.form("from")<BR>if upload.form("checkbox3")="1" then<BR>selectpic=1<BR>else<BR>selectpic=0<BR>end if<BR>iCount=0<BR>for each formName in upload.file ''列出所有上传了的文件<BR>set file=upload.file(formName)''生成一个文件对象<BR>if file.FileSize>0 then         ''如果 FileSize > 0 说明有文件数据<BR>    if file.filesize>150000 then<BR>       HtmEnd "您上传的文件大于规定大小(50K),请改变文件大小后再进行上传。"<BR>    else<BR>       if trim(right(file.FileName,3))<>"jpg" and trim(right(file.FileName,3))<>"gif" then<BR>          HtmEnd "您上传的文件GIF或JPG图象文件,请将你上传的文件转换此格式后再进行上传。"<BR>       else<BR>          file.SaveAs Server.mappath(formPath;file.FileName)   ''保存文件<BR>          picurl=file.FileName<BR>          iCount=iCount+1<BR>      end if<BR>    end if<BR>end if<BR>set file=nothing<BR>next<BR>set rs=server.CreateObject("ADODB.RecordSet")<BR>rs.open "select * from news",conn,3,2<BR>rs.addnew<BR>rs("title")=title<BR>rs("content")=replace(content," ",";nbsp;")<BR>rs("nfrom")=from<BR>rs("selectpic")=selectpic<BR>rs("typeid")=typeid<BR>rs("typename")=typename1<BR>rs("tjnews")=tjnews<BR>rs("picurl")=picurl<BR>rs.update<BR>rs.close<BR>set rs=nothing<BR>conn.close<BR>set upload=nothing''删除此对象<BR>Htmend iCount;" 个文件上传结束!"<BR>sub HtmEnd(Msg)<BR> set upload=nothing<BR> response.write "<br>";Msg;" [<a href=""javascript:history.back();"">返回</a>]</body></html>"<BR> response.end<BR>end sub<BR>%><BR></body><BR></html></P>

<P>另外,还有一个插入文件:upload_5xsoft.inc</P>

<P><SCRIPT RUNAT=SERVER LANGUAGE=VBSCRIPT><BR>dim upfile_5xSoft_Stream<BR>Class upload_5xSoft<BR>dim Form,File,Version<BR>Private Sub Class_Initialize <BR>dim iStart,iFileNameStart,iFileNameEnd,iEnd,vbEnter,iFormStart,iFormEnd,theFile<BR>dim strDiv,mFormName,mFormValue,mFileName,mFileSize,mFilePath,iDivLen,mStr<BR>if Request.TotalBytes<1 then Exit Sub<BR>set Form=CreateObject("Scripting.Dictionary")<BR>set File=CreateObject("Scripting.Dictionary")<BR>set upfile_5xSoft_Stream=CreateObject("Adodb.Stream")<BR>upfile_5xSoft_Stream.mode=3<BR>upfile_5xSoft_Stream.type=1<BR>upfile_5xSoft_Stream.open<BR>upfile_5xSoft_Stream.write Request.BinaryRead(Request.TotalBytes)</P>
<P>vbEnter=Chr(13);Chr(10)<BR>iDivLen=inString(1,vbEnter)+1<BR>strDiv=subString(1,iDivLen)<BR>iFormStart=iDivLen<BR>iFormEnd=inString(iformStart,strDiv)-1<BR>while iFormStart < iFormEnd<BR>iStart=inString(iFormStart,"name=""")<BR>iEnd=inString(iStart+6,"""")<BR>mFormName=subString(iStart+6,iEnd-iStart-6)<BR>iFileNameStart=inString(iEnd+1,"filename=""")<BR>if iFileNameStart>0 and iFileNameStart<iFormEnd then<BR>   iFileNameEnd=inString(iFileNameStart+10,"""")<BR>   mFileName=subString(iFileNameStart+10,iFileNameEnd-iFileNameStart-10)<BR>   iStart=inString(iFileNameEnd+1,vbEnter;vbEnter)<BR>   iEnd=inString(iStart+4,vbEnter;strDiv)<BR>   if iEnd>iStart then<BR>    mFileSize=iEnd-iStart-4<BR>   else<BR>    mFileSize=0<BR>   end if<BR>   set theFile=new FileInfo<BR>   theFile.FileName=getFileName(mFileName)<BR>   theFile.FilePath=getFilePath(mFileName)<BR>   theFile.FileSize=mFileSize<BR>   theFile.FileStart=iStart+4<BR>   theFile.FormName=FormName<BR>   file.add mFormName,theFile<BR>else<BR>   iStart=inString(iEnd+1,vbEnter;vbEnter)<BR>   iEnd=inString(iStart+4,vbEnter;strDiv)</P>
<P>   if iEnd>iStart then<BR>    mFormValue=subString(iStart+4,iEnd-iStart-4)<BR>   else<BR>    mFormValue="" <BR>   end if<BR>   form.Add mFormName,mFormValue<BR>end if</P>
<P>iFormStart=iformEnd+iDivLen<BR>iFormEnd=inString(iformStart,strDiv)-1<BR>wend<BR>End Sub</P>
<P>Private Function subString(theStart,theLen)<BR> dim i,c,stemp<BR> upfile_5xSoft_Stream.Position=theStart-1<BR> stemp=""<BR> for i=1 to theLen<BR>   if upfile_5xSoft_Stream.EOS then Exit for<BR>   c=ascB(upfile_5xSoft_Stream.Read(1))<BR>   If c > 127 Then<BR>    if upfile_5xSoft_Stream.EOS then Exit for<BR>    stemp=stemp;Chr(AscW(ChrB(AscB(upfile_5xSoft_Stream.Read(1)));ChrB(c)))<BR>    i=i+1<BR>   else<BR>    stemp=stemp;Chr(c)<BR>   End If<BR> Next<BR> subString=stemp<BR>End function</P>
<P>Private Function inString(theStart,varStr)<BR> dim i,j,bt,theLen,str<BR> InString=0<BR> Str=toByte(varStr)<BR> theLen=LenB(Str)<BR> for i=theStart to upfile_5xSoft_Stream.Size-theLen<BR>   if i>upfile_5xSoft_Stream.size then exit Function<BR>   upfile_5xSoft_Stream.Position=i-1<BR>   if AscB(upfile_5xSoft_Stream.Read(1))=AscB(midB(Str,1)) then<BR>    InString=i<BR>    for j=2 to theLen<BR>      if upfile_5xSoft_Stream.EOS then <BR>      inString=0<BR>      Exit for<BR>      end if<BR>      if AscB(upfile_5xSoft_Stream.Read(1))<>AscB(MidB(Str,j,1)) then<BR>      InString=0<BR>      Exit For<BR>      end if<BR>    next<BR>    if InString<>0 then Exit Function<BR>   end if<BR> next<BR>End Function</P>
<P>Private Sub Class_Terminate<BR>form.RemoveAll<BR>file.RemoveAll<BR>set form=nothing<BR>set file=nothing<BR>upfile_5xSoft_Stream.close<BR>set upfile_5xSoft_Stream=nothing<BR>End Sub<BR>   <BR> <BR> Private function GetFilePath(FullPath)<BR>If FullPath <> "" Then<BR>   GetFilePath = left(FullPath,InStrRev(FullPath, "\"))<BR>Else<BR>   GetFilePath = ""<BR>End If<BR> Endfunction<BR> <BR> Private function GetFileName(FullPath)<BR>If FullPath <> "" Then<BR>   GetFileName = mid(FullPath,InStrRev(FullPath, "\")+1)<BR>Else<BR>   GetFileName = ""<BR>End If<BR> Endfunction</P>
<P> Private function toByte(Str)<BR>   dim i,iCode,c,iLow,iHigh<BR>   toByte=""<BR>   For i=1 To Len(Str)<BR>   c=mid(Str,i,1)<BR>   iCode =Asc(c)<BR>   If iCode<0 Then iCode = iCode + 65535<BR>   If iCode>255 Then<BR>   iLow = Left(Hex(Asc(c)),2)<BR>   iHigh =Right(Hex(Asc(c)),2)<BR>   toByte = toByte ; chrB(";H";iLow) ; chrB(";H";iHigh)<BR>   Else<BR>   toByte = toByte ; chrB(AscB(c))<BR>   End If<BR>   Next<BR> End function<BR>End Class</P>
<P><BR>Class FileInfo<BR>dim FormName,FileName,FilePath,FileSize,FileStart<BR>Private Sub Class_Initialize <BR>    FileName = ""<BR>    FilePath = ""<BR>    FileSize = 0<BR>    FileStart= 0<BR>    FormName = ""<BR>End Sub<BR><BR> Public function SaveAs(FullPath)<BR>    dim dr,ErrorChar,i<BR>    SaveAs=1<BR>    if trim(fullpath)="" or FileSize=0 or FileStart=0 or FileName="" then exit function<BR>    if FileStart=0 or right(fullpath,1)="/" then exit function<BR>    set dr=CreateObject("Adodb.Stream")<BR>    dr.Mode=3<BR>    dr.Type=1<BR>    dr.Open<BR>    upfile_5xSoft_Stream.position=FileStart-1<BR>    upfile_5xSoft_Stream.copyto dr,FileSize<BR>    dr.SaveToFile FullPath,2<BR>    dr.Close<BR>    set dr=nothing <BR>    SaveAs=0<BR>end function<BR>End Class<BR></SCRIPT></P>
<P>这是前页的表单代码:          <TD width="15%" align="right" height="30"><font color="#FFFFFF">上传图片:</font></TD><BR>          <TD width="85%"><INPUT NAME="file" TYPE="file" SIZE=60 maxlength=100 class="smallinput"></TD></P>

<P>**************************************</P>
<P>      问题是这样的,我从没有自已做过关于图片上传的程序,只知道一种是用服务器上传组件来完成,另一种是不用组件直接用asp代码上传保存到数据库中,请问上面的代码表示的是哪一种呢,能否指导一下,这样我就可以在网上搜索相关资料自已学习了。再次感谢。上面的代码同样一样,就是删除了新闻后,数据库中虽然没有了,但图片仍然还保留在服务器上。不知道用什么办法或语句可以删除掉。</P>
<P>   再再次致谢,希望有幸得到回复!</P>

admin 发表于 2005-11-30 19:48:30

<P>删除新闻中的图片需要服务器组件FSO读写支持,另外V2.15版本的程序新闻模块没有直接把上传的图片检测储存为新的数据,而是直接将上传后的新闻图片的路径代码保存到了新闻内容代码中,所以要删除该新闻中的图片,先得将里边的图片分析出来,然后用FSO执行删除。</P>

roob 发表于 2008-3-7 16:32:32

V6也有这样的问题

原帖由 studyfromyou 于 2005-11-30 08:52 发表 http://bbs.yjys.net/images/common/back.gif
   请问嘉缘老师,我下载了你的求职程序2.15版,但是发现了一个问题,就是当在后台发布新闻,插入图片后,当想删除时,虽然删除了数据库中的文件,但是上传在服务器上的图片却仍然在,删不掉,请问这是怎么回事?请 ...

admin 发表于 2008-3-8 17:59:55

V6 新闻内容中的图片?
页: [1]
查看完整版本: 请问嘉缘老师为什么你的程序上传图片后,当删除时却不能删除服务器上的图片呢?