Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Groovy

Idiom #228 Copy a file

Copy the file at path src to dst.

new File(src).withInputStream { input ->
    new File(dst).withOutputStream {output ->
        output << input
    }
}

Streaming copy
new File(dst).bytes = new File(src).bytes

Note, that this happens in-memory.
with Ada.Directories;
Ada.Directories.Copy_File (Source_Name => Src,
                           Target_Name => Dst);

New implementation...