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++]);
}
}
}
}
为什么会出现这个异常 Access to the path 'D:\eeeee' is denied.”该怎么解决
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
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); }本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报