我有一個解決方案,抓取兩個文件,並比較它們,看看它們是否相同。 sourceFilePath
和destFilePath
都在我的電腦上,但我希望能夠使用相同的解決方案來獲取文件,如果他們在不同的服務器上。我將能夠通過將sourceServer
和_destServerList
的參數設置爲localhost來測試它們。我如何使解決方案使用相關源服務器中的文件?如何使用本地主機從服務器使用文件?
編輯:我在部署解決方案之前使用localhost進行測試。
這是我目前的解決方案:
public class blarto
{
private Server homeServer;
private string homePath;
private ServerList awayServers;
private string awayPath;
private bool ExecuteCommand()
{
if (File.Exists(awayPath))
{
GetSum(homePath);
GetSum2(awayPath);
if (GetSum != GetSum2)
{
Console.WriteLine("they are different.");
return false;
}
else
{
Console.WriteLine("they are the same.");
return true;
}
}
else
{
Console.WriteLine("The destination file does not exist.");
return false;
}
}
}