5,696,576 members and growing! (16,570 online)
Email Password   helpLost your password?
Desktop Development » Shell and IE programming » Shell Programming     Intermediate

Drag and drop, cut/copy and paste files with Windows Explorer

By Paul Tallett

This article describes how to implement file interaction with Windows Explorer
C#.NET 1.1, WinXP, Windows, .NETVisual Studio, VS.NET2003, Dev

Posted: 9 May 2006
Updated: 9 May 2006
Views: 65,595
Bookmarked: 57 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
26 votes for this Article.
Popularity: 6.77 Rating: 4.79 out of 5
0 votes, 0.0%
1
0 votes, 0.0%
2
1 vote, 4.2%
3
3 votes, 12.5%
4
20 votes, 83.3%
5

Drag and drop files into explorer

Introduction

Recently, I needed to implement drag and drop with the Windows Explorer, but all of the examples I could find were not quite what I wanted. I wanted bi-directional, and in C#. So I wrote one.

This sample project lists a folder full of files, and lets you drag and drop them into Explorer. You can also drag from Explorer into the sample, and you can use the Shift and Ctrl keys to modify the action, just like in Explorer.

You can also use the right click options for cut and paste. I discovered that it is not possible to receive notifications when someone pastes your files into another folder (thereby cutting them out of the folder you are displaying) to allow you to update the view. So, I implemented a simple file watcher to watch the displayed folder and refresh it if it changes.

Background

I found a couple of examples on MSDN for drag and drop, but not using files, but they were still useful (Performing Drag-and-Drop Operations and Control.DoDragDrop Method).

Also, there was a snippet for doing cut & paste, which was useful: How to Cut Files to the Clipboard Programmatically in C#?

Using the code

The sample is fairly self explanatory, I’ve tried to cut out any code that wasn’t showing stuff that was relevant.

To start a drag operation into Explorer, we implement the ItemDrag event from the Listview, which gets called after you drag an item more than a few pixels. We simply call DoDragDrop passing the files to be dragged wrapped in a DataObject. You don't really need to understand DataObject - it implements the IDataObject interface used in the communication.

/// <summary>

/// Called when we start dragging an item out of our listview

/// </summary>

private void listView1_ItemDrag(object sender, 
        System.Windows.Forms.ItemDragEventArgs e)
{
    string[] files = GetSelection();
    if(files != null)
    {
        DoDragDrop(new DataObject(DataFormats.FileDrop, files), 
                   DragDropEffects.Copy | 
                   DragDropEffects.Move /* | 
                   DragDropEffects.Link */);
        RefreshView();
    }
}

Then, during the drag operation, if the drag happens over your window, your DragOver method gets called. You have to tell the caller what would happen if the user drops on this location. You do this by setting e.Effect to the correct values:

/// <summary>

/// Called when someone drags something over our listview

/// </summary>

private void listView1_DragOver(object sender, 
        System.Windows.Forms.DragEventArgs e)
{
    // Determine whether file data exists in the drop data. If not, then

    // the drop effect reflects that the drop cannot occur.

    if (!e.Data.GetDataPresent(DataFormats.FileDrop)) 
    {
        e.Effect = DragDropEffects.None;
        return;
    }

    // Set the effect based upon the KeyState.

    if ((e.KeyState & SHIFT) == SHIFT && 
        (e.AllowedEffect & DragDropEffects.Move) == DragDropEffects.Move) 
    {
        e.Effect = DragDropEffects.Move;

    } 
    else if ((e.KeyState & CTRL) == CTRL && 
        (e.AllowedEffect & DragDropEffects.Copy) == DragDropEffects.Copy) 
    {
        e.Effect = DragDropEffects.Copy;
    } 
    else if ((e.AllowedEffect & DragDropEffects.Move) == DragDropEffects.Move)  
    {
        // By default, the drop action should be move, if allowed.

        e.Effect = DragDropEffects.Move;

        // Implement the rather strange behaviour of explorer that if the disk

        // is different, then default to a COPY operation

        string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
        if (files.Length > 0 && !files[0].ToUpper().StartsWith(homeDisk) && 
                                        // Probably better ways to do this

        (e.AllowedEffect & DragDropEffects.Copy) == DragDropEffects.Copy) 
            e.Effect = DragDropEffects.Copy;
    } 
    else
        e.Effect = DragDropEffects.None;

    // This is an example of how to get the item under the mouse

    Point pt = listView1.PointToClient(new Point(e.X, e.Y));
    ListViewItem itemUnder = listView1.GetItemAt(pt.X, pt.Y);
}

Then, when the user actually releases the mouse, the DragDrop method gets called. Here, we actually do the cut or copy operation:

/// <summary>

/// Somebody dropped something on our listview - perform the action

/// </summary>

private void listView1_DragDrop(object sender, 
        System.Windows.Forms.DragEventArgs e)
{
    // Can only drop files, so check

    if (!e.Data.GetDataPresent(DataFormats.FileDrop)) 
    {
        return;
    }

    string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
    foreach (string file in files)
    {
        string dest = homeFolder + "\\" + Path.GetFileName(file);
        bool isFolder = Directory.Exists(file);
        bool isFile = File.Exists(file);
        if (!isFolder && !isFile)
        // Ignore if it doesn't exist
            continue;

        try
        {
            switch(e.Effect)
            {
                case DragDropEffects.Copy:
                    if(isFile)
                    // TODO: Need to handle folders
                        File.Copy(file, dest, false);
                    break;
                case DragDropEffects.Move:
                    if (isFile)
                        File.Move(file, dest);
                    break;
                case DragDropEffects.Link:
                // TODO: Need to handle links
                    break;
            }
        }
        catch(IOException ex)
        {
            MessageBox.Show(this, "Failed to perform the" + 
              " specified operation:\n\n" + ex.Message, 
              "File operation failed", MessageBoxButtons.OK, 
              MessageBoxIcon.Stop);
        }
    }

    RefreshView();
}

That's all there is to it! Well, actually, there is a little more. If you want to use custom cursors, you can implement GiveFeedback, and if you want to know when the drag leaves your window, you can implement QueryContinueDrag, but I left these out to keep the code clean.

Cut and paste turned out to be quite simple as well. On the cut or copy operation, you just put the filenames on the clipboard using our trusty DataObject class:

/// <summary>

/// Write files to clipboard (from

/// http://blogs.wdevs.com/idecember/

///      archive/2005/10/27/10979.aspx)

/// </summary>

/// <param name="cut">True if cut, false if copy</param>

void CopyToClipboard(bool cut)
{
    string[] files = GetSelection();
    if(files != null)
    {
        IDataObject data = new DataObject(DataFormats.FileDrop, files);
        MemoryStream memo = new MemoryStream(4);
        byte[] bytes = new byte[]{(byte)(cut ? 2 : 5), 0, 0, 0};
        memo.Write(bytes, 0, bytes.Length);
        data.SetData("Preferred DropEffect", memo);
        Clipboard.SetDataObject(data);
    }
}

And then on the paste (if someone pastes onto us), we do the reverse:

/// <summary>

/// Paste context menu option

/// </summary>

private void pasteMenuItem_Click(object sender, System.EventArgs e)
{
    IDataObject data = Clipboard.GetDataObject();
    if (!data.GetDataPresent(DataFormats.FileDrop))
        return;

    string[] files = (string[])
      data.GetData(DataFormats.FileDrop);
    MemoryStream stream = (MemoryStream)
      data.GetData("Preferred DropEffect", true);
    int flag = stream.ReadByte();
    if (flag != 2 && flag != 5)
        return;
    bool cut = (flag == 2);
    foreach (string file in files)
    {
        string dest = homeFolder + "\\" + 
                      Path.GetFileName(file);
        try
        {
            if(cut)
                File.Move(file, dest);
            else
                File.Copy(file, dest, false);
        }
        catch(IOException ex)
        {
            MessageBox.Show(this, "Failed to perform the" + 
                " specified operation:\n\n" + ex.Message, 
                "File operation failed", 
                MessageBoxButtons.OK, MessageBoxIcon.Stop);
        }
    }

    RefreshView();
}

Points of interest

The most annoying thing was that if you cut from the sample and paste into Explorer, Explorer will move the files for you and take them out of your folder. However, there is no way to get a notification when this paste happens, so it is impossible to keep your view of the files up to date. I implemented a small file watcher which watches the sample folder, but I imagine this could get much more complicated if you need to watch many folders.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Paul Tallett


I am a principal development consultant at Microsoft in the UK specialising in UI development. Recently I've been doing a lot of WPF work including the BBC iMP project shown at MIX06. I've been developing software for over 20 years - VAX, WIN16, MFC, ASP.NET, WinForms, WPF.

My main hobby is cars and my favourite day out is at Thruxton race track driving the Porsche 911 Turbo.
Occupation: Web Developer
Location: Europe Europe

Other popular Shell and IE programming articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 31 (Total in Forum: 31) (Refresh)FirstPrevNext
GeneralThanks for thismemberRick Hansen11:45 25 Aug '08  
Answerto refresh the list after cutmemberasdfwefwef7:26 14 Jul '08  
GeneralDrag DropmemberKaurGurpreet1:05 21 Nov '07  
GeneralVery usefulmembersrelu0:34 24 Oct '07  
GeneralRe: Very usefulmemberJoachimBlaurock1:31 11 Feb '08  
Generaljust make control droppable areamemberviki3d10:01 2 Jul '07  
GeneralSame folder problemmemberZeeshan Shigri6:16 26 May '07  
AnswerRe: Same folder problemmemberAurican13:46 31 Aug '07  
GeneralRe: Same folder problemmembersrelu0:53 24 Oct '07  
GeneralRe: Same folder problemmemberZeeshan Shigri1:08 24 Oct '07  
GeneralCopy Paste in vb.net windows applicationmemberbalamurugan828:36 16 Apr '07  
GeneralRe: Copy Paste in vb.net windows applicationmembersrelu1:27 24 Oct '07  
GeneralSource file location is uknownmembervmo3d15:03 21 Feb '07  
AnswerRe: Source file location is uknownmemberAurican13:42 31 Aug '07  
QuestionDrawing Line With Drag And Dropmembermminouei7:03 31 Oct '06  
GeneralDrawing Line With Drag And Dropmembermminouei11:30 28 Oct '06  
GeneralDragDropEffects.Link [modified]membermminouei11:43 24 Oct '06  
GeneralRe: DragDropEffects.LinkmemberPaul Tallett23:55 24 Oct '06  
Generalshow icons instead of textmembercriscoff3:24 11 Aug '06  
AnswerRe: show icons instead of textmemberToadflakz_UK2:01 4 May '07  
Questiondo drag an drop just whin cklic on iconmembersyriast2:31 31 Jul '06  
GeneralNice jobmemberBnaya Eshet6:36 24 Jul '06  
GeneralGetData always returns nullmembermork57120:06 17 Jul '06  
GeneralRe: GetData always returns nullmemberPaul Tallett6:03 22 Jul '06  
GeneralRe: GetData always returns nullmembersrelu2:16 24 Oct '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 9 May 2006
Editor: Smitha Vijayan
Copyright 2006 by Paul Tallett
Everything else Copyright © CodeProject, 1999-2008
Web11 | Advertise on the Code Project