CopyFile

[DllImport("Kernel32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool CopyFile(
   string lpExistingFileName,
   string lpNewFileName,
   [MarshalAs(UnmanagedType.Bool)] bool bFailIfExists
);

Microsoft documentation: Link

Last updated