我很难找出这个IOException。直到大约两个月前,这种方法才能完美无缺。我对它做出的唯一改变是将解析后的文件移动到另一个文件夹,该文件夹也工作了一段时间。现在每次自定义Windows Filewatcher服务到达此方法时,我都会收到以下错误消息:
There was an Input Output file error: System.IO.IOException: The process cannot access the file '\\mkfiler01\ops\Envcom\EXEC\ENVCOM\Lab\COD\Exports\DataLog\DL_DR6000_1601329_2017-Jan-10_12_15_01.csv' because it is being used by another process.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
at System.IO.StreamReader..ctor(String path, Encoding encoding, Boolean detectEncodingFromByteOrderMarks, Int32 bufferSize, Boolean checkHost)
at System.IO.StreamReader..ctor(String path, Encoding encoding)
at System.IO.File.ReadLines(String path)
at COD_Automation.COD_AUTO.ParseData(String filePath)
我无法弄清楚它可能是什么过程,因为它在写入日志之后就开始疯狂了。我们的工具会创建.csv文件并将其发送到正在监视的网络文件夹位置。然后启动服务。解析是服务中发生的第一件事。我将不胜感激任何帮助。
以下是解析方法的代码:
public void ParseData(String filePath)
{
Write2LogFile("The parsing of " + filePath + " has begun.");
//Create a dictionary collections with int keys (rowNums) and String values (each line of Strings)
Dictionary<int, String> eachCSVLine = new Dictionary<int, string>();
//String array that holds the contents of the specified row
String[] lineContent;
int rowNum = 1;
try
{
/*loop through each line of the csv file, add it the collection
*and iterate the row number*/
foreach (string line in File.ReadLines(filePath))
{
eachCSVLine.Add(rowNum, line);
rowNum++;
}
//Get the required line and split it by "," into an array
if (eachCSVLine.ContainsKey(5))
{
String reqLine = eachCSVLine[5];
lineContent = reqLine.Split(',');
}
else
{
String reqLine = eachCSVLine[4];
lineContent = reqLine.Split(',');
}
/*Get the required values(index 2 for parsed Operator ID, index 3 for parsed Sample Number,
* index 11 for Sample Result, index 8 for provided Dilution)*/
AnalysisInitials = lineContent.GetValue(2).ToString();
SampNum = lineContent.GetValue(3).ToString(); //sample number
String result = lineContent.GetValue(11).ToString();
String dilute = lineContent.GetValue(8).ToString();
Dilution = Double.Parse(dilute);
SampResult = Int32.Parse(result); //sample result
Write2LogFile("The following result data from " + filePath + " was just parsed: " + AnalysisInitials + "," +
SampNum + "," + Dilution.ToString() + "," + SampResult.ToString());
//move the parsed file to the parsed folder
//File.Move(filePath, parsedPath);
//Write2LogFile("The following file has been moved to the parsed folder: " + filePath);
}
catch (KeyNotFoundException ke)
{
Write2LogFile("The data elements could not be accessed from the collection because of the following: " +
ke.GetBaseException());
SendMail("The data elements could not be accessed from the collection because of the following: " + ke.GetBaseException());
}
catch (ArgumentNullException an)
{
Write2LogFile("The was a problem with looping through the " + filePath + " because of the following: " +
an.GetBaseException());
SendMail("The was a problem with looping through the " + filePath + " because of the following: " +
an.GetBaseException());
}
catch (ArgumentException ae)
{
Write2LogFile("There was a problem with looping through the " + filePath + " because of the following: " +
ae.GetBaseException());
SendMail("There was a problem with looping through the " + filePath + " because of the following: " +
ae.GetBaseException());
}
catch (InvalidCastException ce)
{
Write2LogFile("The value could not be casted or converted because of the following: " +
ce.GetBaseException());
SendMail("The value could not be casted or converted because of the following: " +
ce.GetBaseException());
}
catch (IOException ie)
{
Write2LogFile("There was an Input Output file error: " +
ie.GetBaseException());
SendMail("There was an Input Output file error: " +
ie.GetBaseException());
}
}
答案 0 :(得分:0)
我认为这里有一个很好的答案来自大师:
https://stackoverflow.com/a/39142959/4619012
从这里备份:
https://stackoverflow.com/a/39143086/4619012
这是ReadLines()实现中的已知错误......
答案 1 :(得分:0)
谢谢Quantic。我确实更改了我的代码以包含Using语句(我通常使用)和Filestream。它现在有效。我仍在测试该服务,但我将下面代码的部分更改为它下面的代码。
旧代码:
@midori -e Fullscreen -a http://google.com
新代码:
/*loop through each line of the csv file, add it the collection
*and iterate the row number*/
foreach (string line in File.ReadLines(filePath))
{
eachCSVLine.Add(rowNum, line);
rowNum++;
}
解决方案很有意义。它只是为了我的生活,我无法看到什么过程甚至可以控制文件,以及为什么在没有这些问题之前工作。然而,这是有效的。再次感谢您的投入。