RT,我想实现一个函数,查询某IP共享出来的资源。比如,192.168.1.2共享了C, D, E,函数:get_shared_info("192.168.1.2", char share[256][1024]);
结果:获取192.168.1.2的共享资源(磁盘共享文件夹),返回为共享资源的个数,共享资源存放在share中。请教各位,如何做?

解决方案 »

  1.   

    看看这里http://download.csdn.net/source/682751
      

  2.   


    NET_API_STATUS NetShareEnum(
      LPWSTR servername,
      DWORD level,
      LPBYTE* bufptr,
      DWORD prefmaxlen,
      LPDWORD entriesread,
      LPDWORD totalentries,
      LPDWORD resume_handle
    );
    MSDN示例.#define UNICODE
    #include <windows.h>
    #include <stdio.h>
    #include <lm.h>void wmain( int argc, TCHAR *lpszArgv[ ])
    {
       PSHARE_INFO_502 BufPtr,p;
       NET_API_STATUS res;
       LPTSTR   lpszServer = NULL;
       DWORD er=0,tr=0,resume=0, i;   switch(argc)
       {
       case 2:
          lpszServer = lpszArgv[1];
          break;
       default:
          printf("Usage: NetShareEnum <servername>\n");
          return;
       }
       //
       // Print a report header.
       //
       printf("Share:              Local Path:                   Uses:   Descriptor:\n");
       printf("---------------------------------------------------------------------\n");
       //
       // Call the NetShareEnum function; specify level 502.
       //
       do // begin do
       {
          res = NetShareEnum (lpszServer, 502, (LPBYTE *) &BufPtr, -1, &er, &tr, &resume);
          //
          // If the call succeeds,
          //
          if(res == ERROR_SUCCESS || res == ERROR_MORE_DATA)
          {
             p=BufPtr;
             //
             // Loop through the entries;
             //  print retrieved data.
             //
             for(i=1;i<=er;i++)
             {
                printf("%-20S%-30S%-8u",p->shi502_netname, p->shi502_path, p->shi502_current_uses);
                //
                // Validate the value of the 
                //  shi502_security_descriptor member.
                //
                if (IsValidSecurityDescriptor(p->shi502_security_descriptor))
                   printf("Yes\n");
                else
                   printf("No\n");
                p++;
             }
             //
             // Free the allocated buffer.
             //
             NetApiBufferFree(BufPtr);
          }
          else 
             printf("Error: %ld\n",res);
       }
       // Continue to call NetShareEnum while 
       //  there are more entries. 
       // 
       while (res==ERROR_MORE_DATA); // end do
       return;
    }