Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HowToCopy

Status
Not open for further replies.

XerxesTheMighty

Programmer
Jun 15, 2003
72
US
I trying to write a program that will copy stuff from the CD. So
1. Get drive letter/location of CD
2. Copy files
My main question is: how to copy a file from one location to another?

--------------
"I am a master of Suggestionism and Imperfectionism, bugs and errors are mine!"-this is an original statement by ME:
Xerxes Dynatos
 
#include<windows.h> and use function:
BOOL CopyFile(
LPCTSTR lpExistingFileName,
LPCTSTR lpNewFileName,
BOOL bFailIfExists
);


Ion Filipski
1c.bmp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top