votes
deleting multiple selected files
First I load up LISTVIEW1 box with files using GetFiles(). Then I can SELECT a few files at once and then delete them all at once with the code below. int i = 0; foreach (ListViewItem eachItem in this.listView1.Select ...
