I want to download a file from the net, but the file is down to 307 KB
Code;
Code;
C#:
public void DownloadPackage()
{
if (!File.Exists(RustBuster2016.API.Hooks.GameDirectory + "\\RB_Data\\TEST\\gecemodu.wav))
{
string tr = "thats link";
Uri adres = new Uri(tr);
string yerel = RustBuster2016.API.Hooks.GameDirectory + "\\RB_Data\\TEST\\gecemodu.wav";
web.DownloadFileAsync(adres, yerel);
}
}