Is there a wrapper in LA for downloading files with a progress bar? Something similar to the progress bar in QM
QM code:
string url = "https://www.quickmacros.com/quickmac.exe";
string file = folders.Desktop + pathname.getName(url);
try
{
internet.http.Get(url, file);
}
catch (Exception e1)
{
print.warning($"Failed to download. {e1.ToStringWithoutStack()}");
return;
}
print.it("downloaded");
QM code: