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 の代わりに何を使用すればよいですか? Webから画像を取得するコードは正しいですか? どんな助けでも大歓迎です。

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

独自のサーバーでファイルを使用しているように見えますが、codebehind/controller から次のように取得できます。

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