我在這裏做了什麼錯?將文件從一臺服務器複製到另一臺時,設備未準備就緒
我檢查了變數,他們是他們應該做的是這樣的問題不存在。
我在這裏錯過了什麼嗎?爲什麼我會收到「設備未準備好」的例外情況?
碼 -
if (ddlPublisherServer.Text != ddlSubscriberServer.Text)
{
try
{
if (File.Exists("\\\\" + ddlSubscriberServer.Text + "\\SQLServerBackups\\" + txtSubscriberDatabaseName.Text + ".bak"))
{
File.Delete("\\\\" + ddlSubscriberServer.Text + "\\SQLServerBackups\\" + txtSubscriberDatabaseName.Text + ".bak");
}
File.Copy(@"D:\SQLServerBackups\" + txtSubscriberDatabaseName.Text, "\\\\" + ddlSubscriberServer.Text + "\\SQLServerBackups\\" + txtSubscriberDatabaseName.Text + ".bak");
}
catch (Exception ex)
{
ClientScript.RegisterStartupScript(GetType(), "Error!", "alert('" + ex.Message + "');", true);
Logger.LogError(ex.Source, ex.TargetSite.ToString(), ex.Message);
return;
}
}
我上傳了一張更好的照片,只是一秒鐘。 – Testifier
如何上傳一些* code *代替? –
你可以導航到Windows資源管理器中的文件路徑嗎? –