在工作中,我们有一个共享文件夹,我在其中收集了一些数据。在我的电脑上,我必须确保服务器在数据收集期间没有关闭。
所以,我的方法是,在几分钟的时间间隔内,我将连接并重新连接到我的服务器几次(如果失败,则停止数据收集并等待或执行下一个任务)
连接和重新连接到网络驱动器/共享文件夹的最佳方式是什么?我会做类似的事情
public bool checkNet(UNCPath)
{
int connected = 0;
bool unstable = true;
while(unstable)
{
SubfunctionConnect(UNCPath); //connect to network using cmd 'net use' command
if(directory.exists(UNCPath)
{
++connected;
}
else
{
connected = 0;
}
}
if(connected >= 3) unstable = false; //after 3 in arrow successful connections then leave loop and proceed further tasks
return true;
}
湖上湖
相关分类