Anyone know what function will copy contents from one folder to another, I know the source folder and the destination aso I dont have to use the mkdir. Any Ideas?
The system() is a function from the standard C++ run-time library (execute a command, prototype in <cstdlib> header, see RTL help); xcopy is a standard Windows extended copy command (see Win help or type xcopy /? in a console window. What's an example are you need? system("cmd parameters") is an example.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.