Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
342 views
in Technique[技术] by (71.8m points)

How to use a CMD command in c++?

I want to use this cmd command

ROBOCOPY D:folder1 D:folder2 /S /E

with conditions to copy the contents of folder1 to folder2

if(i == 1)

and,

if(i == 2)

ROBOCOPY D:folder3 D:folder4 /S /E

to copy the contents of folder3 to folder4

what should i do?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

"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".
Or even two more, depending on the interpreting command shell (should work on windows without doing so): "D:\\folder3".
The easier way though, is to use the simpler to write '/' character, that's accepted for specifying windows pathes lately as well.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...