private void Form1_MouseDown(object sender, MouseEventArgs e)
{
string[] files = new string[] { @"C:\directory\of\file\to\copy.txt" };
this.DoDragDrop(new DataObject(DataFormats.FileDrop,files), DragDropEffects.Copy);
}
这是我使用的代码。
嗯,效果不错,但是想获取复制文件的目录。我怎样才能做到这一点?