I am using following code to copy remote file to local. How do you detect failure in the operation, when copying large files.
Is there any better approach to detect failure, apart from handling system.io exception ?
File.Copy(remoteSrcFile, dest);
Is this the best method offered by framework to copy large files whose file size is in gigabyte range ?