我使用System.IO.File.Copy從serverA的文件複製到ServerB。這工作正常接受文件exsist我得到一個錯誤「文件已存在」。我嘗試使用file.exsist捕獲它,但沒有任何內容。文件已經存在使用system.io.file.copy
這裏是我的代碼。
'Save files to disk
FileUpload1.SaveAs(Server.MapPath("../pdf/audits/" & FileName))
'Local Server
Dim localPath As String = "\\server01\folder1$\pdf\audits\"
'Remote Server
Dim remotePath As String = "\\server02\folder2$\pdf\audits\"
System.IO.File.Copy(localPath + FileName, remotePath + FileName)
我缺少什麼?
什麼是錯誤您收到? – Tariqulazam
http://msdn.microsoft.com/en-us/library/system.io.file.copy.aspx – jrummell
對不起錯誤是在我的主題行「文件已經存在」 – Gee