Click here to Skip to main content
15,881,559 members
Articles / Programming Languages / C# 4.0
Alternative
Tip/Trick

Could not find a part of the path while doing a File Copy

Rate me:
Please Sign up or sign in to vote.
3.89/5 (4 votes)
2 Mar 2012CPOL 26.8K   1   3
If at all possible, never give your code the opportunity to fail. If there's any possibility at all that you can prevent an error condition from being raised, do it. try{ if (!string.IsNullOrEmpty(FileName)) { string newPath = System.IO.Path.Combine(FilePath,...
If at all possible, never give your code the opportunity to fail. If there's any possibility at all that you can prevent an error condition from being raised, do it.

C#
try
{
    if (!string.IsNullOrEmpty(FileName))
    {
        string newPath = System.IO.Path.Combine(FilePath, FileName); 
        if (File.Exists(Path) && Path.ToLower() != newPath.ToLower())
        {
            File.Copy(Path, newPath, true);
        }
    }
}
catch (Exception ex)
{
    // handle the exception as desired
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Paddedwall Software
United States United States
I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.

My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.

Comments and Discussions

 
GeneralMy vote of 1 Pin
bluishJoe52-Aug-12 21:32
bluishJoe52-Aug-12 21:32 
GeneralRe: My vote of 1 Pin
#realJSOP3-Aug-12 3:18
mve#realJSOP3-Aug-12 3:18 
GeneralRe: My vote of 1 Pin
bluishJoe518-Oct-12 4:56
bluishJoe518-Oct-12 4:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.