摘要:連線網路磁碟機
範例:要連線到 192.168.0.123 使用者名稱:UserName 使用者密碼:Password
執行Dos視窗(CMD)(註:net指令位於c:\windows\system32\底下)
輸入 net use w: \\192.168.0.123 /user:UserName Password
要中斷連線就輸入
net use w: /delete
也可以用Windows的API去連線/中斷網路磁碟機
[DllImport("mpr.dll", EntryPoint = "WNetAddConnectionA", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)]
public static extern long WNetAddConnection(string lpszNetPath, string lpszPassword, string lpszLocalName);
[DllImport("mpr.dll", EntryPoint = "WNetCancelConnectionA", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)]
public static extern long WNetCancelConnection(string lpszName, long bForce);
============ 以下是簽名檔 ============
一個小小螺絲釘。
第一次建立Blog,希望以後能慢慢充實它。
Howard