Click here to Skip to main content
15,915,848 members

Comments by Member 15121692 (Top 1 by date)

Member 15121692 27-Mar-21 8:16am View    
Thanks for your awnser, but it's not deleting the file in the folder.

This is my Load Function
{
string path = @"C:\Test";
System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(path);
System.IO.FileSystemInfo[] files = di.GetFiles();
checkedListBox1.Items.AddRange(files);

}