1. C++ / Говнокод #11738

    +29

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 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()")

    http://cboard.cprogramming.com/cplusplus-programming/109047-help-copy-files-cplusplus.html

    Запостил: an0nym, 10 Сентября 2012

    Комментарии (6) RSS

    • не знал, что в сипупушечке есть интерполяция строк в двойных кавычках
      Ответить
      • Интерполяция?
        Ответить
        • $s = "Hello, $name"; // интерполяция строки
          http://en.wikipedia.org/wiki/String_interpolation
          It means to insert a string or replace a variable with its value.
          Ответить
    • 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()")
      Ответить
    • Это прямо какой-то фрактальный говнокод. Можно исправить очевидные проблемы в этом неработающем говнокоде, но от этого он всё равно останется говнокодом, пусть и работающим.
      Ответить

    Добавить комментарий