mango_man7414 2020-01-09 10:42 采纳率: 0%
浏览 818
已采纳

为什么会出现这个异常 Access to the path 'D:\eeeee' is denied.”该怎么解决

static void Main(string[] args)
{
string path = "D:\eeeee";
string[] str = File.ReadAllLines("D:\eeeee");
if (File.Exists(path))
{
for (int i = 0; i < str.Length; i++)
{
if (str[i].Contains("kill"))
{
Console.WriteLine("{0}", str[i++]);
Console.WriteLine("{0}", str[i++]);
}
}
}
}

  • 写回答

4条回答 默认 最新

  • threenewbee 2020-01-09 11:45
    关注
    string slnpath = @"D:\eeeee";
    foreach (var f in Directory.GetFiles(slnpath, "*.你的后缀名", SearchOption.AllDirectories))
    {
    string str = File.ReadAllText(f);
    if (str.Contains("kill")) Console.WriteLine(f);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?