我一直在尝试下载一个文件并运行它而不是C#,但成效有限。这是我的剧本:
using (WebClient Client = new WebClient())
{
Client.DownloadFile("http://vx.zapto.org/newscript/enone.jpg", ".jpeg");
MessageBox.Show("Downloaded!");
}
有人可以帮忙吗?
答案 0 :(得分:11)
尝试这个(如果通过运行它你的意思是用默认应用程序打开它):
using (WebClient Client = new WebClient())
{
FileInfo file = new FileInfo("filename.jpeg");
Client.DownloadFile("http://vx.zapto.org/newscript/enone.jpg", file.FullName);
MessageBox.Show("Downloaded!");
Process.Start(file.FullName);
}
请注意,WebClient.DownloadFile(..)
的第二个参数是文件名,而不是扩展名。