將磁片磁碟機指派給共用
下列範例示範如何使用 呼叫 WNetAddConnection2 函式,將磁碟機號連接到遠端伺服器共用。 此範例會通知使用者呼叫是否成功。
若要測試下列程式碼範例,請執行下列步驟:
將下列幾行變更為有效的字串:
szUserName[32] = "myUserName", szPassword[32] = "myPassword", szLocalName[32] = "Q:", szRemoteName[MAX_PATH] = "\\\\products2\\relsys";
將檔案新增至名為 AddConn2 的主控台應用程式。
程式庫 MPR。LIB 至程式庫的編譯器清單。
編譯並執行程式AddConn2.EXE。
#include <windows.h>
#include <stdio.h>
#include <winnetwk.h>
#pragma comment(lib, "mpr.lib")
void main()
{
NETRESOURCE nr;
DWORD res;
TCHAR szUserName[32] = "MyUserName",
szPassword[32] = "MyPassword",
szLocalName[32] = "Q:",
szRemoteName[MAX_PATH] = "\\\\products2\\relsys";
//
// Assign values to the NETRESOURCE structure.
//
nr.dwType = RESOURCETYPE_ANY;
nr.lpLocalName = szLocalName;
nr.lpRemoteName = szRemoteName;
nr.lpProvider = NULL;
//
// Call the WNetAddConnection2 function to assign
// a drive letter to the share.
//
res = WNetAddConnection2(&nr, szPassword, szUserName, FALSE);
//
// If the call succeeds, inform the user; otherwise,
// print the error.
//
if(res == NO_ERROR)
printf("Connection added \n", szRemoteName);
else
printf("Error: %ld\n", res);
return;
}