-3
        var dir = new DirectoryInfo(Path);
        foreach (FileInfo flInfo in dir.GetFiles())
        {
            String name = flInfo.Name;
            long size = flInfo.Length;
            DateTime creationTime = flInfo.CreationTime;
            const int counter = 0;
            int count = counter + 1;
        }

我正在获取路径但没有读取内容和文件信息

4

1 回答 1

0
  1. 我不明白,为什么你需要计数器变量
  2. 您不要尝试阅读内容。如果要读取文件,请使用流读取它:

    using (StreamReader reader = flInfo.OpenText())
    {
    Console.WriteLine(reader.ReadToEnd());
    }
    
于 2012-12-31T10:34:17.717 回答