Recursive Directory Copying | CodeGuru

Recursive Directory Copying

Using CopyFile and FindFirstFile win32 base API to recursively copy a directory in code. . Environment: Tested on VC6 for 2000 sp3: I always needed something similar to the xcopy command in code. I finally got around to writing something. This code consists of four functions that reproduce the results of using the following xcopy […]

Written By
CodeGuru Staff
CodeGuru Staff
Nov 6, 2002
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Using CopyFile and FindFirstFile win32 base API to recursively copy a directory in code.

.

Environment: Tested on VC6 for 2000 sp3:

I always needed something similar to the xcopy command in code. I finally got around to writing something. This code consists of four functions that reproduce the results of using the following xcopy command:

xcopy /s /e source_directory destination_directory

The win32 CopyFile and FindFirst/NextFile functions are also used. For discerning directories from files the WIN32_FIND_DATA structure are analyzed.

There are a few points to note about the code. Firstly, the FindFirstFile function is used to enumerate through a directories contents (even though it is designed for finding a file if it is given wildcards it can find all files that fit a wildcard—*.* in this example).

tstring tSourceFile, tDestinationFile, tPath = lpszSource;
tPath+=_T(“\*.*”);
HANDLE hFind = ::FindFirstFile(tPath.c_str(),
                               &Fil! eInfo);

Secondly, the WIN32_FIND_DATA structure is analyzed to determine whether the current item is a directory using a mask:

if(FileInfo.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)

The “.” and “..” items exist in all directories and serve the exact purpose they do on the command line. Namely, if you call FindFirstFile with some path ending in “.” it will give you a listing of files in the current directory. This is why the “.” and “..” are ignored in the recursive helper.

Downloads

No longer available.

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.