[Solved] How to use a CMD command in c++?
[ad_1] “what should i do?” You simply do this (using the std::system() function): #include <cstdlib> // … if(i == 1) { std::system(“ROBOCOPY D:/folder1 D:/folder2 /S /E”); } else if(i == 2) { std::system(“ROBOCOPY D:/folder3 D:/folder4 /S /E”); } Note that for string literals like “D:\folder3”, you’ll need to escape ‘\’ characters, with another ‘\’: “D:\\folder3”. … Read more