91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何創建及訪問網絡硬盤

發布時間:2022-03-22 11:02:31 來源:億速云 閱讀:316 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關C#如何創建及訪問網絡硬盤,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

在某些場景下我們需要遠程訪問共享硬盤空間,從而實現方便快捷的訪問遠程文件。比如公司局域網內有一臺電腦存放了大量的文件,其它電腦想要訪問該電腦的文件,就可以通過網絡硬盤方式實現,跟訪問本地硬盤同樣的操作,很方便且快速。通過C#我們可以實現網絡硬盤的自動化管理。

創建一個類WebNetHelper,在類中加入如下成員變量及成員函數,

static public WebNetHelper wnh=null;
private string remoteHost;//遠程主機的共享磁盤,形式如\\1.1.1.1\cc
private string destionDisk;//要訪問的磁盤盤符
private string remoteUserName;//登錄遠程主機的用戶名
private string passWord;//登錄遠程主機的密碼

訪問網絡硬盤,

public bool Connect()
{
    try
    {
        string cmdString = string.Format(@"net use {1}: {0} {3} /user:{2} >NUL",this.RemoteHost,
        this.DestionDisk, this.RemoteUserName,this.PassWord);
        this.WriteStringToComman(cmdString);
        return true;
    }
    catch (Exception e)
    {
        throw e;
    }
}

斷開網絡映射,

public bool Disconnect()
{
    try
    {
        string cmdString=string.Format(@"net use {0}: /delete >NUL",this.DestionDisk);
        this.WriteStringToComman(cmdString);
        return true;
    }
    catch (Exception e)
    {
        throw e;
    }
}

執行CMD命令,

private bool WriteStringToComman(string cmdString)
{
    bool Flag = true;
    Process proc = new Process();
    proc.StartInfo.FileName = "cmd.exe";
    proc.StartInfo.UseShellExecute = false;
    proc.StartInfo.RedirectStandardInput = true;
    proc.StartInfo.RedirectStandardOutput = true;
    proc.StartInfo.RedirectStandardError = true;
    proc.StartInfo.CreateNoWindow = true;
    try
    {
        proc.Start();
        string command = cmdString;
        proc.StandardInput.WriteLine(command);
        command = "exit";
        proc.StandardInput.WriteLine(command);
        while (proc.HasExited == false)
        {
            proc.WaitForExit(1000);
        }
        string errormsg = proc.StandardError.ReadToEnd();
        if (errormsg != "")
            Flag = false;
        proc.StandardError.Close();
        return Flag;
    }
    catch (Exception e)
    {
        throw e;
    }
    finally
    {
        proc.Close();
        proc.Dispose();
    }
}

然后test函數為測試使用的過程。\\1.1.1.1\cc為網絡硬盤地址,K為要映射的盤符,"Noner"為遠程主機的登錄名,"uiosdsau"為遠程主機的密碼。Test函數為讀取網絡硬盤下的ImbaMallLog.txt文件內容的第一行。

/// <summary>
/// 測試函數,測試使用該類
/// </summary>
private void test()
{
    try
    {
        if (!Directory.Exists(@"K:\"))
        {
            WebNetHelper.wnh = new WebNetHelper(@"\\1.1.1.1\cc", "K", "Noner", "uiosdsau");
            WebNetHelper.wnh.Connect();
        }
        StreamReader sr = new StreamReader(@"K:\ImbaMallLog.txt");
        string tt = sr.ReadLine();
        //MessageBox.Show(tt);
        sr.Close();
        sr.Dispose();
        if (WebNetHelper.wnh != null)
        {
            WebNetHelper.wnh.Disconnect();
        }
    }
    catch (Exception e)
    {
        //MessageBox.Show(e.Message);
    }
}

關于“C#如何創建及訪問網絡硬盤”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

陆丰市| 株洲县| 岳普湖县| 进贤县| 南安市| 鄂尔多斯市| 大新县| 湖北省| 林口县| 咸阳市| 吉安市| 伊通| 蕲春县| 依兰县| 井研县| 龙江县| 安义县| 仁寿县| 册亨县| 体育| 外汇| 徐水县| 阿拉善盟| 和龙市| 沂源县| 铜鼓县| 黑山县| 淮阳县| 兰西县| 秦皇岛市| 顺义区| 宁强县| 岳池县| 尤溪县| 文水县| 冷水江市| 乡宁县| 黑水县| 阿拉尔市| 柳江县| 高陵县|