Is there an easy way to download and save a .zip file from a URL to my computer through Mathematica? I am trying to develop an auto-update function for a mathematica package that is distributed via GitHub.
I tried Import[http://github.com/******.zip], but that only gave me the names of the files in the folder, but not the actual files or a way to save them. Any suggestions?
URLSave? – C. E. Nov 29 '14 at 01:15Import[http://github.com/******.zip, "*"]and check the documentation. – Karsten7 Nov 29 '14 at 01:23URLSavegave me the error code:URLSave::invhttp: Failed writing received data to disk/application"@Karsten7.
Importtakes over 20 minutes to work, because I believe it is downloading, unzipping, and parsing the files, when I just need to save and unzip the file.Thank you both for ideas though.
– Asas Nov 29 '14 at 09:43