第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何檢查網(wǎng)絡(luò)/共享文件夾的穩(wěn)定性?

如何檢查網(wǎng)絡(luò)/共享文件夾的穩(wěn)定性?

C#
米琪卡哇伊 2022-11-21 16:28:27
在工作中,我們有一個共享文件夾,我在其中收集了一些數(shù)據(jù)。在我的電腦上,我必須確保服務(wù)器在數(shù)據(jù)收集期間沒有關(guān)閉。所以,我的方法是,在幾分鐘的時間間隔內(nèi),我將連接并重新連接到我的服務(wù)器幾次(如果失敗,則停止數(shù)據(jù)收集并等待或執(zhí)行下一個任務(wù))連接和重新連接到網(wǎng)絡(luò)驅(qū)動器/共享文件夾的最佳方式是什么?我會做類似的事情public bool checkNet(UNCPath){int connected = 0;bool unstable = true;while(unstable){SubfunctionConnect(UNCPath); //connect to network using cmd 'net use' commandif(directory.exists(UNCPath) {++connected;}else{connected = 0;}}if(connected >= 3) unstable = false; //after 3 in arrow  successful connections then leave loop and proceed further tasksreturn true;}
查看完整描述

1 回答

?
湖上湖

TA貢獻(xiàn)2003條經(jīng)驗 獲得超2個贊

我正在維護(hù)一個與您的要求具有相似功能的項目。


在該功能中,我們使用FileSystemWatcher來監(jiān)控特定 UNC 位置的各種操作。您可以實施OnError將在 UNC 路徑不可用時觸發(fā)的事件。


您可以查看上面的鏈接了解詳細(xì)信息,這里仍然是一個簡短的示例


using (FileSystemWatcher watcher = new FileSystemWatcher(@"\\your unc path"))

{

    // Watch for changes in LastAccess and LastWrite times, and

    // the renaming of files or directories.

    watcher.NotifyFilter = NotifyFilters.LastAccess

                         | NotifyFilters.LastWrite

                         | NotifyFilters.FileName

                         | NotifyFilters.DirectoryName;


    // Only watch text files.

    watcher.Filter = "*.txt";


    watcher.Created += (s, e) => { Console.WriteLine($"Created {e.Name}"); };

    watcher.Deleted += (s, e) => { Console.WriteLine($"Deleted {e.Name}"); };

    watcher.Error += (s, e) => { Console.WriteLine($"Error {e.GetException()}"); };



    // Begin watching.

    watcher.EnableRaisingEvents = true;


    // Wait for the user to quit the program.

    Console.WriteLine("Press 'q' to quit the sample.");

    while (Console.Read() != 'q') ;

}


查看完整回答
反對 回復(fù) 2022-11-21
  • 1 回答
  • 0 關(guān)注
  • 143 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號