在 ac# 程序中,我需要在每“n”秒后读取文件中的一个字符串。我的程序代码如下所示,
start:
.
.
.
config_path = Regex.Match(System.IO.File
.ReadAllText("c:\docs\xyz.log"),".*Command.*File:.*")
.ToString()
.Split(new string[] { "File: ", " ...\r" },
StringSplitOptions.RemoveEmptyEntries)
.Last();
.
.
.
goto start;
在循环中第一次,程序执行良好。但是对于标签的第二个条目(开始),抛出异常“c:\docs\xyz.log”。如何为标签中的每个条目解锁此文件。