编码网页以显示名称和链接到文件夹中的所有文件

时间:2011-06-12 08:15:57

标签: c# asp.net

背景故事和目标:我正在开发一个脚本,通过ftp将文件(文档)从服务器A发送到Web服务器B.然后在BI上希望asp.net网页呈现所有文件的名称(以某种方式直观地通知用户哪些文件在哪个文件夹中)并提供该文件的链接。

我的问题是:使用asp.net和C#通过网站显示目录和子目录内容的好方法是什么?它是否可以直接从上传的根目录开始执行文件结构,还是应该修改脚本以生成xmlfile并在文件夹结构上发送xmlfile然后使用XmlDataSource?如何设置XmlDataSource的数据路径以确保它将使用上传的xml文件?

  

注意:我相信两者都存在一些并发问题。但我相信这是一个单独的stackoverflow问题。

2 个答案:

答案 0 :(得分:2)

我认为最简单的方法是从您上传文件的目录(而不是从根目录)开始使用文件结构。您可以在web.config文件的<AppSettings>文件中保存该目录的路径部分,然后使用FileDirectory类来阅读其结构。

web.config

中的

<appSettings>
    <add key="UploadDirectory" value="~/Upload/"/>
</appSettings>

在代码背后

protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        string DirectoryName = Request.MapPath(System.Configuration.ConfigurationManager.AppSettings["UploadDirectory"]);
        if (Directory.Exists(DirectoryName))
        {
            String[] Files = Directory.GetFiles(DirectoryName);
            myRepeater.DataSource = Files;
            myRepeater.DataBind();
        }
    }

}
protected void myRepeater_OnItemDataBound(object sender, RepeaterItemEventArgs e)
{
    if (e.Item.ItemType == ListItemType.AlternatingItem || e.Item.ItemType == ListItemType.Item)
    {
        LinkButton FileName = (LinkButton)e.Item.FindControl("FileName");
        String fullName = (String)e.Item.DataItem;
        FileName.Text = fullName.Substring(fullName.LastIndexOf("\\") + 1);
        FileName.CommandArgument=fullName.Substring(fullName.LastIndexOf("\\") + 1);
    }
}
protected void myRepeater_OnItemCommand(object sender, RepeaterCommandEventArgs e)
{
    if (e.CommandName=="GOTO")
    {
        Response.Redirect(System.Configuration.ConfigurationManager.AppSettings["UploadDirectory"]+(String)e.CommandArgument);
    }
}

在aspx中

<asp:Repeater ID="myRepeater" OnItemDataBound="myRepeater_OnItemDataBound" runat="server">
    <HeaderTemplate>
        <ul>
    </HeaderTemplate>
    <ItemTemplate>
        <li>
             <asp:LinkButton runat="server" ID="FileName" CommandName="GOTO"></asp:LinkButton></li>
    </ItemTemplate>
    <FooterTemplate>
        </ul></FooterTemplate>
</asp:Repeater>

答案 1 :(得分:1)

使用找到的代码here,您只能允许登录用户查看文件夹内容。假设您将登录用户存储在Session对象中,以下是转换为C#的代码以及仅对登录用户的检查:

string dir = Request.Form("dir");
if (string.IsNullOrEmpty(dir))
    dir = "/";

if (Session["Logged_User"] == null)
{
    Response.Write("Not Authorized");
    Response.End();
}

System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(Server.MapPath(dir));
StringBuilder sb = new StringBuilder();
sb.Append("<ul class=\"jqueryFileTree\" style=\"display: none;\">").Append(Environment.NewLine);
foreach (System.IO.DirectoryInfo di_child in di.GetDirectories())
{
    sb.AppendFormat("\t<li class=\"directory collapsed\"><a href=\"#\" rel=\"{0}\">{1}</a></li>\n",  dir + di_child.Name, di_child.Name);
}

foreach (System.IO.FileInfo fi in di.GetFiles())
{
    string ext = (fi.Extension.Length > 1) ? fi.Extension.Substring(1).ToLower() : "";
    sb.AppendFormat("\t<li class=\"file ext_{0}\"><a href=\"#\" rel=\"{1}\">{2}</a></li>\n", ext, dir + fi.Name, fi.Name);
}
sb.Append("</ul>");
Response.Write(sb.ToString());