如何从Drag'n Dropped文件中获取未保存在磁盘上的数据

时间:2015-07-22 19:15:48

标签: c# xml winforms

如何读取未保存在磁盘上任何位置的xml文件的xml内容?

我希望能够从Outlook拖动附件(文件扩展名是自定义的)并将其放入我的应用程序中。根据xml文件的内容,我会相应地做一些Action。

我试图遍历e.Data.GetFormats()GetData(format),但无济于事。 我试过e.Data.GetData("FileContents")没有用。 我也尝试了e.Data.GetData(DataFormat.Text) DataFormats.UnicodeTextDataFormats.FileDrop,但没有任何作用。

DataObject读取文件的内容非常重要,因为我不想在拖动文件之前强制用户保存文件。

任何帮助将不胜感激!

ANSWER

对于那些有相同问题的人,格式良好的答案:

因此,保存在磁盘上的任何文件都将具有可以加载和读取的完整路径。

从Outlook中删除的任何文件都将使用“FileGroupDesciptor”来获取fileName及其扩展名。 “FileContents”将包含内容的数据流。

示例:

处理拖放的已删除文件以查看我们是否可以执行某些操作

public void DragEnter(DragEventArgs e)
{
    var obj = e.Data as DataObject;

    //get fileName of file saved on disk
    var fileNames = obj.GetFileDropList();

    if(fileNames.Count > 0)
        fileName = fileNames[0]; //I want only one at a time

    //Get fileName not save on disk
    if (string.IsNullOrEmpty(fileName) && obj.GetDataPresent("FileGroupDescriptor"))
    {
        var ms = (MemoryStream)obj.GetData("FileGroupDescriptor");
        ms.Position = 76;
        char a;
        while ((a = (char)ms.ReadByte()) != 0)
            fileName += a;
    }

    if (fileName.Length != 0)
    {
        var extension = fileName.Substring(fileName.LastIndexOf('.') + 1);
        switch (extension.ToUpper())
        {
            case "WTV":
                itemType = DropItemType.WTVFile;
                break;

            default:
                itemType = DropItemType.None;
                break;

        }
        canHandleDropData = (itemType != DropItemType.None);
    }

    if (canHandleDropData)
        e.Effect = DragDropEffects.Copy;
}

获取拖放文件的内容

 public XmlDocument GetXmlDocument(DragEventArgs dragEventArgs)
    {
        var doc = new XmlDocument();

        //Get content of outlook file not saved on disk
        var rawContent = dragEventArgs.Data.GetData("FileContents");

        if (rawContent == null)
        {
           //if null then it is a saved file and I can read its content by loading file name
            var xmlString = File.ReadAllText(fileName);
            doc.LoadXml(xmlString);
        }
        else
        {
            //outlook file content
            var xmlString = rawContent as MemoryStream;
            doc.Load(xmlString);    
        }

        return doc;
    }

1 个答案:

答案 0 :(得分:1)

这是我使用的代码,用于处理从Windows资源管理器或Outlook中的附件到内存流的文件转换。 (ms是表单上的公共内存流变量)。我确定您可以使用相同的逻辑将其转换为字符串阅读器。

      Private Sub ubFilepath_DragDrop(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles ubFilepath.DragDrop
    Try
        If e.Data.GetDataPresent(DataFormats.Text) Then
            Me.ubFilepath.Text = e.Data.GetData("Text")
        ElseIf e.Data.GetDataPresent(DataFormats.FileDrop) Then
            Dim fileNames() As String
            Dim MyFilename As String
            fileNames = DirectCast(e.Data.GetData(DataFormats.FileDrop), String())
            MyFilename = fileNames(0)
            Me.ubFilepath.Text = MyFilename

' RenPrivateItem is from outlook

        ElseIf e.Data.GetDataPresent("RenPrivateItem") Then
            Dim thestream As System.IO.MemoryStream = e.Data.GetData       ("FileGroupDescriptor")
            Dim filename As New System.Text.StringBuilder("")
            Dim fileGroupDescriptor(700) As Byte
            Try
                thestream.Read(fileGroupDescriptor, 0, 700)
                Dim i As Integer = 76
                While fileGroupDescriptor(i) <> 0
                    filename.Append(Convert.ToChar(fileGroupDescriptor(i)))
                    i += 1
                End While
                Me.ubFilepath.Text = "Outlook attachment_" + filename.ToString
                ms = e.Data.GetData("FileContents", True)
            Finally
                If thestream IsNot Nothing Then thestream.Close()
            End Try
        End If
    Catch ex As Exception
        MessageBox.Show(ex.ToString, "Only files can be dragged into this box")
    End Try