I am trying toi run the below code but it is giving error.

Code:
Dim BG_Logon As String
        OpenFileDialog1.ShowDialog()
        BG_Logon = OpenFileDialog1.FileName
        My.Computer.FileSystem.CopyFile(BG_Logon, "e:\sss\sss.jpg")
Error: The file 'e:\sss\sss.jpg' already exists.

I have checked and there is no such file in E:\sss, no matter wherever I copy this file error remains the same. Any ideas?