ASP automatically decompress the rarfile

Source: Internet
Author: User

In fact, it is very easy to implement this function. First, you need to upload a RAR decompression program, that is, the RAR's own decompression program, which only needs its core
The file RAR. EXE can be used. Then upload a program run RAR. EXE. cmd. EXE, which is a program in Windows (I don't have to talk about it ). Finally, execute these programs. Look at the code below.

Program code:
<%
Dim ylj, ywj, mlpath, Shell, rarcomm, retcode, CMD, comm, FSO
Mlpath = "E:/page/Mian/" 'stores RAR. EXE and cmd. EXE paths
Ylj = server. mappath ("Mian") & "/" 'path after extracting the file
Ywj = server. mappath ("Mian/apathy.rar") 'The rarfile to be decompressed
Set shell = server. Createobject ("wscript. Shell ")
Rarcomm = "E:/page/Mian/cmd.exe/C" & mlpath & "rar.exe X-T-O +-p -"
Cmd = rarcomm & ywj & "& ylj
Retcode = shell. Run (CMD, 1, true)
%>
Server. Createobject ("wscript. Shell") is used to run cmd. EXE to run the rar. EXE file to decompress the rarfile.
I do not know whether any of my predecessors have published these articles before, but I hope you can use this method to implement many programs similar to this.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.