CopyFileEx

[DllImport("Kernel32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool CopyFileEx(
   string lpExistingFileName,
   string lpNewFileName,
   LPOVERLAPPED lpProgressRoutine,
   IntPtr lpData,
   ref int pbCancel,
   CopyFileFlags dwCopyFlags
);

Microsoft documentation: Link

Last updated