给定一个共享路径,比如:\\Computer1\ShareFiles\
我想在程序中将该共享目录映射为本地一个虚拟盘,并且盘符要求是本地原有最大盘符的下一个,如本地原有A: C: D: E:四个,映射之后的盘符就要求为F:然后进行文件复制操作,将F:(即\\Computer1\ShareFiles\)下的所有文件复制到本地C:\temp下,
复制完之后取消映射。先谢谢大家了!~~~

解决方案 »

  1.   

    function WNetAddConnection2W(var lpNetResource: TNetResourceW; lpPassword, lpUserName: PWideChar; 
    dwFlags: DWORD): DWORD; stdcall; To make the call you will need to fill a lpNetResource structure 
    with a minimum set of parameters, shown in the example below. You 
    pass this structure as the first parameter to the call, the password, 
    user name, and a flag that indicates whether this mapping should 
    be persistant every time the machine is logged onto. For more info 
    on the API itself, see Window's Programmers Reference help (find the function in Windows.pas, place your text cursor over the function 
    call, and hit F1 to bring up help). procedure TForm1.Button1Click(Sender: TObject); 
    var 
    NRW: TNetResource; 
    begin 
    with NRW do 
    begin 
    dwType := RESOURCETYPE_ANY; 
    lpLocalName := 'X:'; // map to this driver letter 
    lpRemoteName := '\\MyServer\MyDirectory'; 
    // Must be filled in. If an empty string is used, 
    // it will use the lpRemoteName. 
    lpProvider := ''; 
    end; 
    WNetAddConnection2(NRW, 'MyPassword', 'MyUserName', CONNECT_UPDATE_PROFILE); 
    end; 。 
      

  2.   

    http://expert.csdn.net/Expert/topic/2086/2086100.xml
      

  3.   

    怎样遍历盘符啊?
    还有net use对应的Api是什么呢?
      

  4.   

    net use对应的Api是 WNetAddConnection2