如何从CheckedListBox所选项目中删除文件夹

时间:2018-11-12 18:25:51

标签: c# winforms file

我要删除在CheckedListBox中选择的文件夹。
我得到错误。消息说:

  

不可发言的成员   System.Windows.Forms.CheckedListBox.CheckedItems不能像   一种方法

我的代码是:

private void button3_Click(object sender, EventArgs e)
{
    Directory.Delete(checkedListBox1.CheckedItems());
}

如何解决此问题?

1 个答案:

答案 0 :(得分:0)

尝试一下:

for (int x = 0; x < checkedListBox1.CheckedItems.Count; x++)
{
    Directory.Delete(checkedListBox1.CheckedItems[x].ToString());
}