-1

我的文件夹中有以下文件名

1000_A.csv
1000_B.csv
1000_C.csv
1001_A.csv
1001_B.csv

以相同 ID 开头的文件名需要添加到列表中,然后列表需要添加到以 ID 为键的字典中

例如:
列表 x 包含“1000_A.csv”、“1000_B.csv”、“1000_C.csv”将其添加到 ID 为 1000 作为键的字典中请帮助。

4

4 回答 4

1

您可以使用LINQ's GroupBy

Dictionary<int, List<string>> idFilenames = fileList
    .Select(fileName =>
    {
        string fnwoe = Path.GetFileNameWithoutExtension(fileName);
        string idPart = fnwoe.Split('_').First();
        int id;
        int.TryParse(idPart, out id);
        return new { fileName, id };
    })
    .GroupBy(x => x.id)
    .ToDictionary(g => g.Key, g => g.Select(x => x.fileName).ToList());
于 2013-10-16T13:32:59.390 回答
0

例如 CSV 您的 csv 文件列表

循环浏览您的 CSV 列表:

Dictionary<string, int> Dict = new Dictionary<string, int>();
List<string> files = new List<string>();
foreach (string path CSV)
{
     if(!ContainsKey(path.Substring(0,3))
       {
         files.Add(path);
         Dict.Add(path.Substring(0,3),files);
       }
     else
      {
       files.Add(path);
       Dict[path.Substring(0,3)].Add(file);
      }
  }
于 2013-10-16T13:35:08.013 回答
0
var folder = GetFolder();
var files = new Dictionary<int, List<string>>();

foreach (var file in folders) 
{
    int id = Convert.ToInt32(file.Substring(0, file.IndexOf('_'));

    if (files.Any(x => x.Key == id))
        files[id].Add(file);
    else 
    {
        var newList = new List<string>(); 
        newList.Add(file);

        files.Add(id, newList);
    }
}
于 2013-10-16T13:22:10.737 回答
0
var listOfFiles = ...; // assuming you can read the list of filenames 
                       //  into a string[] or IList<string>

var d = listOfFiles.GroupBy( f => f.Substring( 0, f.IndexOf( '_' ) ) )
    .ToDictionary( g => g.Key, g => g );
于 2013-10-16T13:22:40.690 回答