我有一个不断更新行的日志文件
例如。
=LOG.TXT STARTS HERE=
15,12,03,
15,12,36,
=LOG.TXT ENDS HERE=
字段是小时,分钟,秒
时间可以是15或3pm,例如
如何检测文件何时更新以及何时更新,更新称为小时和秒的变量,然后将变量添加到数据网格视图?
提前致谢。
答案 0 :(得分:0)
您可以使用 FileSystemWatcher类:它监听文件系统更改通知,并在目录或目录中的文件发生更改时引发事件。 Check this link用于MSDN示例。
当文件被修改时,您将在数据网格视图中写下它的内容。
'Of course, you can get the path dynamically but this is an example
For Each line As String In System.IO.File.ReadAllLines("d:\temp\testdata.txt")
DataGridView1.Rows.Add(line.Split(","))
Next