Try using a TreeView with a Thread that builds the nodes with all of the files on your HDD.
foreach (File file in Directory.GetFiles("*.*"))
{
nodes.Add(file);
}
Then, use a drag and drop feature to File.Copy, then refresh the TreeView.
Does this work for you
|