Dosya işlemlerinde, özellikle de File.Copy işleminde genelde alınan bir hatadır. hatanın nedeni dosya yollarının biçiminin hatalı olmasıdır.
string strPath = "C:\Windows";
string strFile = "Test.txt" ;
File.Copy(strPath + "\\" + strFile, "D:\Deneme\Test.txt" true)
şeklindeki kullanım yerine ;
string strPath = "C:\Windows";
string strFile = "Test.txt" ;
string fullPath = Path.Combine(strPath, strFile);
File.Copy(fullPath , "D:\Deneme\Test.txt" true)
şeklinde kullanım sorunu çözecektir.