This is my code:
var FinalPath = Path.Combine(DestPath, FinalFile);
File.Copy(TempFile, FinalPath);
Destpath is "c:\Somepath\" and FinalFIle is "somefile.pdf" So FinalPath is: "c:\Somepath\somefile.pdf"
When Copy method is called i receive error (file already exists and throws an unwanted exception wich is not good).
How can i tell something like if(FinalPath.Exists = true)... ignore o continue ?