0

我的应用程序文件treeview夹下有一个文件夹。我想提供文件夹中文件的链接。该文件夹可能有子文件夹等。如何在链接中提供http url 。

当我这样做时,我只得到文件的物理位置而不是 http url。

Path.Combine(file.DirectoryName, file.Name)

谢谢。

4

1 回答 1

1

首先获取应用程序的根。

var root = Server.MapPath("~");

现在,做你需要的,遍历文件/目录。您可以像这样简单地组合路径:

foreach (var file in System.IO.Directory
                         .GetFiles(System.IO.Path.Combine(root, "Images")))
{
    // This will give you the relative URL of each file.
    var fileUrl = ResolveUrl(file.Replace(root, string.Empty).Replace("\\", "/"));
}
于 2013-08-07T21:24:14.823 回答