copy

Just like std.file.copy, but takes Path, and echoes if scriptlikeTraceCommands is true.

  1. void copy(Path!C from, Path!C to)
  2. void copy(char[] from, Path!C to)
  3. void copy(Path!C from, char[] to)
    void
    copy
    (
    C
    )
    (
    in Path!C from
    ,
    in char[] to
    )
    if (
    isSomeChar!C
    )
  4. void copy(char[] from, char[] to)

Meta