Tagged Questions
3
votes
2answers
1k views
Cannot delete an image file that is shown in a listview
In my listview I show thumbnails of small images in a certain folder. I setup the listview as follows:
var imageList = new ImageList();
foreach (var fileInfo in dir.GetFiles())
{
try
{
...