我正在构建播放 Wireshark 文件并使用 pcapdot.net 将数据包发送到网卡的应用程序。
在我的应用程序中,我获取目录根目录并仅添加过去 24 小时内的新文件。首先,我将目录中的所有文件添加List<string>
到我的ListView
. 现在,在我的应用程序完成播放我的所有文件后,我想清除我的列表,清除我的 ListView 并再次搜索过去 24 小时内的 now 文件并添加到我的ListView
. 我的问题是在将文件再次添加到我的列表并尝试将文件添加到我ListView
的应用程序崩溃并出现错误无法在多个地方添加或插入项目“file.pcap”之后。您必须首先将其从当前位置删除或克隆它。
播放完我的文件后,我清理了 List、ListView 并再次添加文件并播放:
lvFiles.Items.Clear();
filesList.RemoveRange(0, filesList.Count - 1);
addFiles();
playFiles();
添加文件();- 将 List 中的所有文件添加到我的 ListView:
private void addFiles()
{
BackgroundWorker backgroundWorker = new BackgroundWorker();
backgroundWorker.WorkerReportsProgress = true;
backgroundWorker.DoWork += new DoWorkEventHandler(
(s3, e3) =>
{
filesList = SafeFileEnumerator.EnumerateFiles(pathToSearch, "*.pcap",
SearchOption.AllDirectories).ToList();
});
backgroundWorker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(
(s3, e3) =>
{
if (filesList.Count != 0)
AddFilesToListView(filesList);
});
backgroundWorker.RunWorkerAsync();
}
playFiles() - 在我的 ListView 中播放我的所有文件:
private void playFiles()
{
lockButtons();
string filePath = string.Empty;
BackgroundWorker backgroundWorker = new BackgroundWorker();
backgroundWorker.WorkerReportsProgress = true;
backgroundWorker.DoWork += new DoWorkEventHandler(
(s3, e3) =>
{
for (int i = 0; i < lvFiles.Items.Count && shouldContinue; i++)
{
this.Invoke((MethodInvoker)delegate
{
lvFiles.EnsureVisible(i);
lvFiles.Items[i].Selected = true;
lvFiles.Select();
filePath = lvFiles.Items[i].Tag.ToString();
toolStripStatusLabel.Text = string.Format("Current file: {0}", lvFiles.Items[i].Text);
});
PcapFile pcapFile = new PcapFile();
pcapFile.sendQueue(filePath, adapter);
this.Invoke((MethodInvoker)delegate { lvFiles.Items[i].Selected = false; });
}
});
将文件添加到我的 ListView:
private void addFileToListBox(string filePath, string duration)
{
item = new ListViewItem(new string[] { new FileInfo(filePath).Name, duration, "Waiting" });
item.Tag = new FileInfo(filePath).FullName;
this.Invoke((MethodInvoker)delegate { lvFiles.Items.Add(item); });
}
也许“某人”仍然持有文件?