void Download() {
     Directory.CreateDirectory(_tmpLocation);
     using (var wc = new WebClient())
         wc.DownloadFile(_src, _tmpFile);
 }