📅  最后修改于: 2022-03-11 14:48:57.105000             🧑  作者: Mango
using UnityEngine;
using System;
using System.Net;
using System.IO;
void DownloadFile()
{
WebClient client = new WebClient();
client.DownloadFileAsync(new Uri("Download URL"), "Save path");
}