1

我最近写了一段这样的代码:

protected void OpenImg_Click(object sender, EventArgs e)
            {
                int i = 0;

                string PathToFolder = "C://LiveSite/img/XL/";

                var dirInfo = new DirectoryInfo(PathToFolder);
                string FileName = Variables.param + "XL.jpg";
                var foundFiles = dirInfo.GetFiles(FileName);

                if (foundFiles.Length == 1)
                {
                    ClientScript.RegisterStartupScript(this.GetType(), "openFoundImage", "window.open('" + PathToFolder + foundFiles[i].Name + "');", true);
                }
            }
        }
   }

它的路径正确,但它不起作用,因为它正在拉出 c:// 驱动器,所以我将图像的位置改为:http://www.companysite.com/img/XL/。当我替换string PathToFolder = "C://LiveSite/img/XL/";http://www.companysite.com/img/XL/我收到错误“不支持 URI 格式”

因此,我将代码更改为:

 protected void OpenImg_Click(object sender, EventArgs e)
                {
                    int i = 0;

                    string uriPath = "http://www.companysite.com/img/XL/";

                    string  localPath = new Uri(uriPath).LocalPath;
                    string FileName = Variables.param + "XL.jpg";
                    var foundFiles = localPath.GetFiles(FileName); //ERROR

                    if (foundFiles.Length == 1)
                    {
                        ClientScript.RegisterStartupScript(this.GetType(), "openFoundImage", "window.open('" + uriPath + foundFiles[i].Name + "');", true);
                    }
                }
            }
        }

现在我在使用 .GetFiles 时遇到错误 - 我应该使用什么来代替 GetFiles?我的代码从网络上提取图像是否正确?任何帮助,将不胜感激。

4

3 回答 3

2

您需要使用 webclient 类http://msdn.microsoft.com/en-us/library/system.net.webclient.aspx

这应该可以帮助您:

using System;
using System.Net;
using Myapp.Properties;

namespace MyApp
{
    public class Test
    {
        static void Main(string[] args)
        {
        string website ="http://www.fryan0911.com/webclientsample.zip";
        string downloadfolder = Settings.Default.DownloadFolder;

        try
            {
            WebClient wc = new WebClient();
            wc.DownloadFile(website, downloadfolder);
            Console.WriteLine("Web file has been downloaded to " + downloadfolder);
            }
        catch (WebException e)
        {
            Console.WriteLine(e.Message);
        }
        Console.ReadKey();
    }
}
}

代码借自:

http://www.fryan0911.com/2009/03/c-download-file-from-website-using-web.html

于 2013-06-21T15:33:21.860 回答
0

看起来您正在自己的服务器上使用文件,然后您可以像这样从代码隐藏/控制器中获取它们。

        var serverRootPath = Server.MapPath("~");
        var files = Path.Combine(serverRootPath,"img");
        var images = Directory.GetFiles(files);
于 2013-06-21T15:43:23.957 回答
0

我遇到了同样的问题。

string app_path = System.Reflection.Assembly.GetExecutingAssembly().CodeBase;
string folderpath = Path.GetDirectoryName(app_path);// Error Here

我注意到它为我提供了程序集的文件路径,但在字符串的开头带有“file:///”。

所以我这样做了:

string app_path = System.Reflection.Assembly.GetExecutingAssembly().CodeBase.Replace(@"file:///", "");

希望这可以帮助。

于 2015-05-06T08:18:12.973 回答