CopyFile (kernel32)
Last changed: -203.158.51.233

.
Summary
Copies an existing file to a new file.

C# Signature:

[DllImport("kernel32.dll", SetLastError=true, CharSet=CharSet.Auto)]
static extern bool CopyFile(string lpExistingFileName, string lpNewFileName,
   bool bFailIfExists);

VB.Net Signature:

<DllImport("kernel32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> _

          Friend Shared Function CopyFile( _
                        <[In]()> ByVal lpExistingFileName As String, _
                        <[In]()> ByVal lpNewFileName As String, _
                        <[In]()> ByVal bFailIfExists As Boolean) _
                    As Boolean
        End Function

User-Defined Types:

None.

Notes:

Please add some!.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

File.Copy

Documentation
CopyFile on MSDN site