[Mono-list] File::Copy

Richard Torkar richard.torkar@htu.se
Mon, 29 Mar 2004 21:02:12 +0200


On Mon, 2004-03-29 at 14:48 +0100, yathish s wrote:

> Hi ,
> 
> I'm planning to code the method System.IO.File::Copy.
> If anybody else is doing this please let me know.

Isn't it already implemented?
public static void Copy (string sourceFilename, string destFilename)
public static void Copy (string src, string dest, bool overwrite)

can be found in mcs/class/corlib/System.IO/File.cs

/Richard