当前位置:首页 > ASP教程 > 应用技巧

ASP在服务器自动解压RAR文件

<%

dim ylj,ywj,mlpath,shell,rarcomm,retcode,cmd,comm,fso

mlpath="e:pagemian"    '存放rar.exe和cmd.exe的路径

ylj=server.mappath("mian")&""  '解压文件后所放的路径

ywj=server.mappath("mianapathy.rar")  '要解压的rar文件

set shell = server.createobject("wscript.shell")

rarcomm= "e:pagemiancmd.exe /c "&mlpath&"rar.exe x -t -o+ -p- "

cmd=rarcomm&ywj&" "&ylj

retcode = shell.run(cmd,1, true)

%>

   就是用server.createobject("wscript.shell")来执行cmd.exe来运行rar.exe文件来解压rar文件的。



【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!