ASP quickly get remote HTTP file size

Source: Internet
Author: User
Tags end file size range return

The following is a reference fragment:
<%
Dim url,asize
URL = "Http://www.alixixi.com/download/xml.rar"
Asize = Getremotefilesize (URL)
Response.Write Url & "’---------------------------------------------------
' Function: ASP get remote file size
' Parameter: Url destination Address
' Return: Return array 0: File byte size 1: Formatted file size
’---------------------------------------------------
Function getremotefilesize (URL)
Dim obj,a (1), R
Set obj = CreateObject ("MSXML2.") XMLHTTP ")
Obj. Open ' get ', url, False
Obj.setrequestheader "Range", "Bytes=-1"
Obj.send
r = Split (obj. getResponseHeader ("Content-range") & "/0", "/")
Set OBJ = Nothing
A (0) = CLng (R (1))
A (1) = a (0)/1024
If A (1) > 1024 Then
A (1) = Round (A (1)/1024,2) & "MB"
Else
A (1) = Round (A (1), 2) & "KB"
End If
Getremotefilesize = A
End Function
%>



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.