Hi,
My gadget needs to download (via HTTP) a zip file and unzip it. This file contains information so local search can be done on client side.
In Dashboard/Yahoo we have curl and unzip unix utilities to easily achieve that with some simple system call.
How can you do that with Microsoft Gadgets
Thanks in advance,

Download and unzip a file from a Gadget ?
Andrew Buyan
Jonathan : No unfortunately, it's not FTP but HTTP.
So I'll surely have to package some Freeware/GNU applications inside the gadget itself for now...
Thanks for you help!
Kamen
Your best bet is to get a free command line extractor, like 7-Zip and use it's 7z.exe command line EXE, which you can call from your Gadget as described in this thread.
Just bare in mind that you will run into security issues if you're extracting it to anywhere other than the Gadget directory (System.Gadget.path), or one of it's sub directories.
If you create blank subdirectories in your Gadget to do this, make sure there's at least one dummy file in them, otherwise Sidebar will report the Gadget is corrupt, and it won't install.
Donaghy
su45937
Where the ZIP is coming from will determine how you download it.
akaRickShaw
David S. Anderson
Barry Mull
Maartin
And how about to download the ZIP file itself Any ideas
Thanks in advance!