- 1
- 2
- 3
- 4
- 5
- 6
- 7
string input;
string output;
input = "C:\\bla.txt\\"; //"Bla.txt" is the file to copy
output = "C:\\test\\"; //"Test" is the folder to copy to
system("copy input.c_str() output.c_str()")
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+29
string input;
string output;
input = "C:\\bla.txt\\"; //"Bla.txt" is the file to copy
output = "C:\\test\\"; //"Test" is the folder to copy to
system("copy input.c_str() output.c_str()")
http://cboard.cprogramming.com/cplusplus-programming/109047-help-copy-files-cplusplus.html
Lure Of Chaos 10.09.2012 13:42 # +5
absolut 10.09.2012 18:58 # 0
bormand 10.09.2012 19:00 # +5
It means to insert a string or replace a variable with its value.
TarasB 10.09.2012 13:51 # +4
string $output;
$input = "C:\\bla.txt\\"; //"Bla.txt" is the file to copy
$output = "C:\\test\\"; //"Test" is the folder to copy to
system("copy $input.c_str() $output.c_str()")
someone 10.09.2012 15:43 # +6
Steve_Brown 10.09.2012 15:59 # +4