我需要读取一个文本文件并将其存储到 Db 中。多次访问/读取文件后,突然出现此消息
该进程无法访问该文件,因为它正在被另一个进程使用..
我检查了几次,但没有附加其他过程。这是我的代码..
// Storing the data in a data table
DataTable table = new DataTable();
table.Columns.Add(new DataColumn("L_Date", typeof(DateTime)));
table.Columns.Add(new DataColumn("L_Time", typeof(TimeSpan)));
table.Columns.Add(new DataColumn("L_CardID", typeof(string)));
table.Columns.Add(new DataColumn("L_Status", typeof(string)));
table.Columns.Add(new DataColumn("L_Type", typeof(string)));
table.Columns.Add(new DataColumn("L_Catatan", typeof(string)));
int i2 = 0;
string[] content = System.IO.File.ReadAllLines(e.FullPath);
foreach (string line in content)
{
// some code
}
我的代码人有什么问题?