Using the VBS executable program +xmlhttp download the code for backing up your online files _vbs

Source: Internet
Author: User
Tags save file
Today, when you write a program, suddenly think of a backup of the file, the site on the database back to the local machine. A simple small program to make executable files, with a VBS is the simplest and most convenient. ' On Error Resume Next
Dim iremote,ilocal
Iremote = InputBox ("Please enter remote file path:")
Set Xpost = CreateObject ("Microsoft.XMLHTTP")
Xpost.open "Get", iremote,0
Xpost.send ()
Set stream = CreateObject ("ADODB.") Stream ")
Stream. Mode = 3
Stream. Type = 1
Stream. Open ()
Stream. Write (Xpost.responsebody)
if (stream.size<10240) then
MsgBox ("Remote file does not exist!") ")
Else
SaveFile
End If
Stream.Close
Set stream = Nothing

' Save file
function SaveFile
ilocal = InputBox ("Please enter the native save path:")
Set fso = CreateObject ("Scripting.FileSystemObject")
returnvalue = "0"
if (FSO). FileExists (ilocal)) Then
returnvalue = MsgBox ("&iLocal&" file already exists, do you really want to overwrite it?) ", vbYesNoCancel," Confirm Box ")
End If
Set fso = Nothing
if (returnvalue = "6" or returnvalue = "0") Then ' overwrite
Stream. SaveToFile ilocal,2
MsgBox ("File backup is successful!") ")
ElseIf (returnvalue = "7") Then
SaveFile
End If
End Function

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.