對映網路共享資源為本地硬碟

2021-06-06 18:41:33 字數 898 閱讀 1859

#include "stdafx.h"

#include #include #include #pragma comment(lib, "mpr.lib")

//新增對映

dword addconnection(lpctstr szremotename, lpctstr szlocalname)

; nr.dwtype = resourcetype_any;

nr.lplocalname = (lptstr)szlocalname;

nr.lpremotename = (lptstr)szremotename;//

//// call the wnetaddconnection2 function to assign

// a drive letter to the share.

//dword dwresult = wnetaddconnection2(&nr, null, null, 0);

//// if the call succeeds, inform the user; otherwise,

// print the error.

//if(dwresult != no_error)

switch(dwresult)

} } return dwresult;

}//斷開對映

dword cancelconnection(lpctstr szlocalname)

//else if(dwresult != no_error)

switch(dwresult)

}} else

return dwresult;

}int _tmain(int argc, _tchar* argv)

php訪問網路共享資源和本地檔案

公司禁網,但是我的工作需要對外網,所以只能利用公司的公用電腦。使用自己的電腦遠端操作他 其實可以弄 的,但沒有用這種方法 所以一些檔案都在公用機子上面,然而又由於本人比較懶,不想考來考去,所以採用將要訪問的資料夾,設定為共享,然後訪問用php訪問。ps 關於網路配置在文章下面 簡單測試 如下 fil...

php訪問網路共享資源和本地檔案

php訪問網路共享資源和本地檔案 標籤 php 網路apache 工作測試 reference 2012 07 03 12 42 4963人閱讀 收藏 舉報 php 44 作者同類文章x 公司禁網,但是我的工作需要對外網,所以只能利用公司的公用電腦。使用自己的電腦遠端操作他 其實可以弄 的,但沒有用...

如何把網路共享目錄對映為本地驅動器

要對映乙個網路目錄為本地驅動器,需要呼叫系統 dll的 wnetaddconnection2 函式來進行新增。首先,系統函式的申明如下 using system.runtime.interopservices dllimport mpr.dll entrypoint wnetaddconnectio...