ASP可以对文件夹里的文件进行操作吗?
ASP可以对文件夹里的文件进行操作吗?我的文件上传到了服务器的一个文件夹里,它的信息(如:路径,文件名等)对应着数据库里的一条记录.
我想在管理员删除某条记录的同时,就把文件夹里的那个文件也删除了.
可以做吗?
谢谢版主!
我查到一个程序,还没有试!先贴上来吧!
《asp删除文件代码》
'程序名:delfile.asp
'关键参数:struploadfiles 文件名称
例:<a href="/delfile.asp?action=test.rar">删除test.rar文件</a>
<%
struploadfiles=trim(request.querystring("struploadfiles"))
action=trim(request.querystring("action"))
response.write "成功删除<font color=red>"&struploadfiles&"</font>文件!"
call delfiles(struploadfiles & "")
sub delfiles(struploadfiles)
if struploadfiles="" then exit sub
dim fso,arruploadfiles,i
set fso = createobject("scripting.filesystemobject")
fso.deletefile(server.mappath("" & struploadfiles))
set fso = nothing
response.write"<script language=javascript>alert('成功删除文件,将返回上一页!');"
response.write"this.location.href='javascript:history.back();'</script>"
end sub
%>