删除文件ASP代码

    技术2022-05-11  134

    if request.querystring("action")="del" then set fso=CreateObject("Scripting.FileSystemObject") response.write Request("FileName")   whichfile=server.mappath(Request("FileName"))   Set thisfile = fso.GetFile(whichfile)   thisfile.Delete True end if

    最新回复(0)