下载保存并运行

时间:2012-12-09 00:26:03

标签: c# download

我一直在尝试下载一个文件并运行它而不是C#,但成效有限。这是我的剧本:

using (WebClient Client = new WebClient())
{
    Client.DownloadFile("http://vx.zapto.org/newscript/enone.jpg", ".jpeg");
    MessageBox.Show("Downloaded!");
}

有人可以帮忙吗?

1 个答案:

答案 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(..)的第二个参数是文件名,而不是扩展名。