Skip to content

Instantly share code, notes, and snippets.

@Zoramite
Created December 16, 2010 05:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zoramite/743065 to your computer and use it in GitHub Desktop.
Save Zoramite/743065 to your computer and use it in GitHub Desktop.
Test downloading a file using http
<cfset source = 'https://github.com/seancorfield/fw1/tarball/v1.2' />
<cfset downloadPath = './' />
<cfset downloadFile = 'test.tar.gz' />
<cfhttp url="#source#" method="get" file="#downloadFile#" path="#downloadPath#" getAsBinary="true" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment