|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp是基于web的一种编程技术,可以说是cgi的一种。它可以完成以往cgi程序的所有功能,如计数器、留言簿、公告板、聊天室等等。静态|网页 关于已上传的文件,跟着工夫的冗长,内容的更替,这些上传文件就必要办理了。最多见的,则是关于一些上传文件的删除。那末,在线的文件删除则是经由过程FSO来完成。同时,在文件删除之前必需断定删除某个详细的文件或文件夹,这就必要能检察到一切的上传文件内容。
上面的这些内容是摘录在某BLOG现成内容,次要是提取精髓便利本人的利用,也与人人共享。
在FSO扫瞄上传文件时必要到一些功效,这些功效已自界说为函数以公用,该文件内容以下,拷贝代码,保留为function.asp
<%
functiongetPathList(pathName)取得路径的文件信息
dimFSO,ServerFolder,getInfo,getInfos,tempS
getInfo=""
SetFSO=Server.CreateObject("Scripting.FileSystemObject")
SetServerFolder=FSO.GetFolder(Server.MapPath(pathName))
DimServerFolderList,ServerFolderEvery
SetServerFolderList=ServerFolder.SubFolders
tempS=""
ForEachServerFolderEveryINServerFolderList
getInfo=getInfo&tempS&ServerFolderEvery.Name
tempS="*"
Next
getInfo=getInfo&"|"
DimServerFileList,ServerFileEvery
SetServerFileList=ServerFolder.Files
tempS=""
ForEachServerFileEveryINServerFileList
getInfo=getInfo&tempS&ServerFileEvery.Name
tempS="*"
Next
SetFSO=Nothing
getInfos=split(getInfo,"|")
getPathList=getInfos
endfunction
functiongetFileInfo(FileName)猎取文件信息
dimFSO,File,FileInfo(3)
SetFSO=Server.CreateObject("Scripting.FileSystemObject")
ifFSO.FileExists(Server.MapPath(FileName))then
SetFile=FSO.GetFile(Server.MapPath(FileName))
FileInfo(0)=File.Size
ifFileInfo(0)/1000>1then
FileInfo(0)=int(FileInfo(0)/1000)&"KB"
else
FileInfo(0)=FileInfo(0)&"Bytes"
endif
FileInfo(1)=lcase(right(FileName,4))
FileInfo(2)=File.DateCreated
FileInfo(3)=File.Type
endif
getFileInfo=FileInfo
SetFSO=Nothing
endfunction
functionbc(t,s)
dimtl,sl,i
bc=false
sl=len(s)
tl=len(t)
iftl<slthenbc=true:exitfunction
fori=1tosl
ifmid(t,i,1)mid(s,i,1)thenbc=true:exitfunction
next
endfunction
%>
要办理文件就必需先检察到这些上传的文件,该文件内容以下,拷贝代码,保留为showf.asp
<%@LANGUAGE="VBSCRIPT"CODEPAGE="936"%>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<!--#includefile="function.asp"-->
<script>
functioncheckAll(){
for(i=0;i<document.forms[0].length;i++){
if(document.forms[0].tagName=="INPUT"){
if(document.forms[0].type=="checkbox")
{document.forms[0].checked="checked"}
}
}
}
</script>
<formaction="delf.asp"method="post">
<inputtype="hidden"name="whatdo"value="DelFiles"/>
<%
AttPath=Request.QueryString("AttPath")
iflen(AttPath)<1then
AttPath="uploadfile"
elseifbc(server.mapPath(AttPath),server.mapPath("uploadfile"))then
AttPath="uploadfile"
endIf
ArrFolders=split(getPathList(AttPath)(0),"*")
Arrfiles=split(getPathList(AttPath)(1),"*")
response.write(AttPath&"<br>")
ifAttPath"uploadfile"then
arrUpFolders=split(AttPath,"/")
fori=0toubound(arrUpFolders)-1
arrUpFolder=arrUpFolder&TempF&arrUpFolders(i)
TempF="/"
next
endif
iflen(arrUpFolder)>0then
response.write"------<ahref=""?AttPath="&arrUpFolder&""">前往下级目次</a><br>"
endif
foreachArrFolderinArrFolders
response.write"<inputname=""folders""type=""checkbox""value="""&AttPath&"/"&ArrFolder&"""/>[文件夹]<ahref=""?AttPath="&AttPath&"/"&ArrFolder&""">"&ArrFolder&"</a><br>"
next
foreachArrfileinArrfiles
response.write"<inputname=""Files""type=""checkbox""value="""&AttPath&"/"&Arrfile&"""/><ahref="""&AttPath&"/"&Arrfile&"""target=""_blank"">"&Arrfile&"</a>"&getFileInfo(AttPath&"/"&Arrfile)(0)&"|"&getFileInfo(AttPath&"/"&Arrfile)(2)&"|"&getFileInfo(AttPath&"/"&Arrfile)(3)&"<br>"
next
%>
<inputtype="button"value="全选"/>
<inputtype="submit"name="Submit"value="删除所选的文件或文件夹"/>
</form>
在确认选择某文件或某文件夹删除后,action="delf.asp",将跳转到详细的删除文件的功效页,该文件内容以下,拷贝代码,保留为delf.asp
<!--#includefile="function.asp"-->
<%
ifRequest.form("whatdo")="DelFiles"then
dimgetFolders,getFiles,getFolder,getFile,getFolderCount,getFileCount
DimFSODel
SetFSODel=Server.CreateObject("Scripting.FileSystemObject")
getFolders=split(Request.form("folders"),",")
getFiles=split(Request.form("Files"),",")
getFolderCount=0
getFileCount=0
foreachgetFolderingetFolders
iflen(getPathList(getFolder)(1))>0then
response.writegetFolder&"文件夹内含有文件,没法删除!<ahref=#onclick=history.go(-1)>前往</a>"
response.end
endif
ifFSODel.FolderExists(Server.MapPath(getFolder))then
FSODel.DeleteFolderServer.MapPath(getFolder),true
getFolderCount=getFolderCount+1
endif
next
foreachgetFileingetFiles
ifFSODel.FileExists(Server.MapPath(getFile))then
FSODel.DeleteFileServer.MapPath(getFile),true
getFileCount=getFileCount+1
endif
next
response.write("有"&getFileCount&"文件,"&getFolderCount&"个文件夹被删除!")
response.write("<ahref=showf.asp>前往</a>")
endif
%>
减少客户内IT专业人才缺乏带来的影响。ASP的客户员工利用浏览器进入相关的应用软件,简单易用,无需专业技术支持。 |
|