2

我试图将子文件夹名而不是 FULLNAME 放入我的数据表中的单独列中。请帮忙。

protected void Page_Load(object sender, EventArgs e) {
    DataTable ReportsDT = new DataTable("ReportsDT");
    ReportsDT.Columns.Add("Name");
    ReportsDT.Columns.Add("FolderName");
    DirectoryInfo DirInfo = new DirectoryInfo(Server.MapPath("Reports"));
    DataRow ReportDTRow = ReportsDT.NewRow();
        foreach (FileInfo fi in DirInfo.GetFiles("*.*", SearchOption.AllDirectories)) {
            ReportDTRow = ReportsDT.NewRow();
            ReportDTRow["Name"] = fi.Name;
            ReportDTRow["FolderName"] = fi.FullName;
            ReportsDT.Rows.Add(ReportDTRow);  
        }
}
4

3 回答 3

3

您可以使用它DirectoryInfo来获取有关给定目录的信息。您在以下FileInfo实例中提供了一份副本fi.Directory

foreach (FileInfo fi in DirInfo.GetFiles("*", SearchOption.AllDirectories)) {
    ReportDTRow = ReportsDT.NewRow();  
    ReportDTRow["Name"] = fi.Name;  
    ReportDTRow["FolderName"] = fi.Directory.Name;                   
    ReportsDT.Rows.Add(ReportDTRow);  
}
于 2013-01-11T20:52:31.853 回答
0

请参阅下面的示例代码:

string[] folders = fi.FullName.Split('\\');
string subFolderName = folders[folders.Length - 2];
于 2013-01-11T20:53:49.493 回答
0

我相信你正在寻找

ReportDTRow["FolderName"] = fi.Directory.Name;

您也可以只拆分路径分隔符上的字符串并自己解析出来,但是假设我理解您想要的内容,上述内容应该可以很好地工作。

于 2013-01-11T20:57:22.947 回答