我正在使用此代码将拖动的文件捕获到我的表单中并将它们复制到特定文件夹(我已将复制过程排除在外,但我正在使用 -FileSystem.CopyDirectory(copyFileDetails.Dir.FullName, copyFileDetails.Target, UIOption.AllDialogs); and FileSystem.CopyFile(file, newFileName, UIOption.AllDialogs);
this.DragEnter += new DragEventHandler(Form1_DragEnter);
this.DragDrop += new DragEventHandler(Form1_DragDrop);
private void Form1_DragEnter(object sender, DragEventArgs e)
{
//string action = e.Data.ToString();
if (e.Data.GetDataPresent(DataFormats.FileDrop))
e.Effect = DragDropEffects.Copy;
else if (e.Data.GetDataPresent("FileGroupDescriptorW"))
{
System.IO.MemoryStream info = e.Data.GetData("FileGroupDescriptor") as System.IO.MemoryStream;
System.IO.MemoryStream content = e.Data.GetData("FileGroupDescriptorW") as System.IO.MemoryStream;
e.Effect = DragDropEffects.Copy;
}
}
private void Form1_DragDrop(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
{
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
}
else if (e.Data.GetDataPresent("FileGroupDescriptorW"))
{
System.IO.MemoryStream info = e.Data.GetData("FileGroupDescriptor") as System.IO.MemoryStream;
System.IO.MemoryStream content = e.Data.GetData("FileGroupDescriptorW") as System.IO.MemoryStream;
ClipboardMemoryStream = (MemoryStream)e.Data.GetData("FileGroupDescriptorW", true);
byteArray = ClipboardMemoryStream.ToArray();
// TODO: Read data from stream
}
}
现在,当我将文件拖到表单中时,我得到了文件名(字符串 [] 文件),并且将其复制到硬盘驱动器中没有问题。
但是当从设备(比如相机)拖动文件时,我得到一个文件流,我不知道如何将其转换为与原始文件同名的文件。而且我还需要它来支持大文件和文件夹。
我该如何实施?