Copying Files into Explorer | CodeGuru

Copying Files into Explorer

Following my previous article on copying filenames from explorer, I received many requests on how to copy the files into the explorer. I have/had the same request for a long time. After a lot of debugging and breaking my head, I finally solved the problem (hopefully). The clue I got was that, there is a […]

Written By
CodeGuru Staff
CodeGuru Staff
Apr 5, 1999
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Following my previous article on copying filenames from explorer, I received many requests
on how to copy the files into the explorer. I have/had the same request for a long time.
After a lot of debugging and breaking my head, I finally solved the problem (hopefully).

The clue I got was that, there is a DROPFILES structure in shlobj.h. However, there is no
documentation on how to use it. Actually, it is the structure, whose pointer is the one
we are receiving as HDROP handle. That is the mystery.

Just debug HDROP value before calling DragQueryFile function. It always says, 20.
It is so because the DROPFILES structure’s first member is the offset where the files are
placed. Because the files are always attached to the end of the structure, the 20 is the
size of the DROPFILES structure.

One important issue is that, the DROPFILES’s last parameter specifies whether the appended
string is a Multi/Single Byte character string. Windows NT uses Multi byte Character set. To suit to
this requirement, we will also use Multi Byte character format for the appended file names.

So, do the following steps to get the job done.

1. First, prepare a string of null separated file names and pad with an extra null. The
extra null is the requirement to indicate the end of file names.

2. Next, prepare a HGLOBAL of size equal to the sum of length of string of the file names
and the size of the DROPFILES. Account for NULLs in between and at the end.

The HGLOBAL should be created with these flags: GMEM_ZEROINIT|GMEM_MOVEABLE|GMEM_DDESHARE

3. Lock the HGLOBAL to get a memory pointer. Fill up the first 20 bytes memory with the DROPFILES structure values.

4. Copy the file names to the rest of the memory. Once copying is done, unlock the HGLOBAL.

5. Open the clipboard, empty it and do SetClipboardData with CF_HDROP format and your HGLOBAL.

6. Close the clipboard, but don’t free the HGLOBAL.

7. That’s it. Your job is done.

Note: Please note that I have done this in hurry. There will be better methods to prepare
a multibyte character string from a single byte character string. What I have done is one of the
simple ways to take care of NULLs etc.

8. Now go to Explorer. Open one directory, do right-click. Paste will be enabled. Select
paste. Your files will be copied to that directory.

#include “shlobj.h”
void CMyWnd::OnSetFilesToClipboard()
{
char sFiles[] = “C:\Temp\file1.txt”
“C:\Temp\file2.txt”;
DROPFILES dobj = { 20, { 0, 0 }, 0, 1 };
int nLen = sizeof(sFiles);
int nGblLen = sizeof(dobj) + nLen*2 + 5;//lots of nulls and multibyte_char
HGLOBAL hGbl = GlobalAlloc(GMEM_ZEROINIT|GMEM_MOVEABLE|GMEM_DDESHARE, nGblLen);
char* sData = (char*)::GlobalLock(hGbl);
memcpy( sData, &dobj, 20 );
char* sWStr = sData+20;
for( int i = 0; i < nLen*2; i += 2 )
{
sWStr[i] = sFiles[i/2];
}
::GlobalUnlock(hGbl);

if( OpenClipboard() )
{
EmptyClipboard();
SetClipboardData( CF_HDROP, hGbl );
CloseClipboard();
}
}

Date Last Updated: April 5, 1999

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.