I have a file names abc.txt on desktop. I wanna copy it to d:\workfile folder.
If I use the code-- File.Copy(strsourceFilePath,strtargetFolderPath,true);
I am getting a exception that Access is Denied.
If I use Move method ,File.Move(strsourceFilePath,strtargetFolderPath);
am getting the exception Cannot create a file , already exists.
Can anybody help me...?