我正在尝试使用C#检查日志,因此需要查看两行是否同时发生。例如,如果文件名是A213.txt并且有以下两行Converting table AM014Table 'AM014' (522 records) is converted因此需要将控制台写为'the file was success'。但是,如果文件之间包含某些内容,请说Converting table AM014Not FoundNot FoundTable 'AM014' (522 records) is converted我需要控制台写的话 'the file was not success'
3 回答
翻翻过去那场雪
TA贡献2065条经验 获得超14个赞
File.ReadAllText(@"pathToYourFile").Contains(@"Converting table AM014
Table 'AM014' (522 records) is converted")
注意线路断路器。或者
File.ReadAllText(@"pathToYourFile").Contains("Converting table AM014\r\nTable 'AM014' (522 records) is converted")
- 3 回答
- 0 关注
- 139 浏览
添加回答
举报
0/150
提交
取消