Function copyFile
Copies a file.
Note that attributes and time stamps are currently not retained.
Prototypes
void copyFile( Path from, Path to, bool overwrite ); void copyFile( string from, string to );
Parameters
Name | Description |
---|---|
from | Path of the source file |
to | Path for the destination file |
overwrite | If true, any file existing at the destination path will be overwritten. If this is false, an excpetion will be thrown should a file already exist at the destination path. |
Throws
An Exception if the copy operation fails for some reason.
Authors
Sönke Ludwig
Copyright
© 2012 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.