Last active
January 14, 2020 20:35
-
-
Save Redeem-Grimm-Satoshi/8ae6dd952ca57c70e298824a09c943f1 to your computer and use it in GitHub Desktop.
Download Files On The Internet Using HTTP In Julia
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Author: Redeem Grimm | |
# Name : Download | |
# Purpose: Download Files On The Internet Using HTTP | |
using HTTP | |
function download(url,fileName) | |
HTTP.download(url,fileName) | |
end | |
# Example Run: | |
# download("www.miglayout.com/QuickStart.pdf","QuickTutorial.pdf"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment