次の方法で共有


共有の場所の決定

次の例では、 WNetGetUniversalName 関数を呼び出して、リダイレクトされたドライブ上の共有の場所を確認する方法を示します。

最初に、コード サンプルは WNetGetUniversalName 関数を呼び出し、 UNIVERSAL_NAME_INFO 情報レベルを指定して、リソースの汎用名前付け規則 (UNC) 名文字列へのポインターを取得します。 次に、このサンプルでは WNetGetUniversalName を 2 回目に呼び出し、 REMOTE_NAME_INFO 情報レベルを指定して、2 つの追加のネットワーク接続文字列を取得します。 呼び出しが成功した場合、サンプルは共有の場所を出力します。

次のコード サンプルをテストするには、次の手順を実行します。

  1. コード サンプルに GetUni.cpp という名前を付けます。

  2. GetUni というコンソール アプリケーションにサンプルを追加します。

  3. ライブラリ Shell32.lib、Mpr.lib、NetApi32.lib をライブラリのコンパイラ リストにリンクします。

  4. コマンド プロンプトから GetUni ディレクトリに移動します。

  5. GetUni.cpp をコンパイルします。

  6. 次のように、ファイルGetUni.exeドライブ文字とコロンを実行します。

    GetUni H:\

#define  STRICT
#include <windows.h>
#include <tchar.h>
#include <stdio.h>

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

#define BUFFSIZE = 1000

void main( int argc, char *argv[] )
{
  DWORD cbBuff = 1000;    // Size of Buffer
  TCHAR szBuff[1000];    // Buffer to receive information
  REMOTE_NAME_INFO  * prni = (REMOTE_NAME_INFO *)   &szBuff;
  UNIVERSAL_NAME_INFO * puni = (UNIVERSAL_NAME_INFO *) &szBuff;
  DWORD res;

  if((argc < 2) | (lstrcmp(argv[1], "/?") == 0))
  {
    printf("Syntax:  GetUni DrivePathAndFilename\n"
         "Example: GetUni U:\\WINNT\\SYSTEM32\\WSOCK32.DLL\n");
    return;
  }
  
  // Call WNetGetUniversalName with the UNIVERSAL_NAME_INFO_LEVEL option
  //
  printf("Call WNetGetUniversalName using UNIVERSAL_NAME_INFO_LEVEL.\n");
  if((res = WNetGetUniversalName((LPTSTR)argv[1],
         UNIVERSAL_NAME_INFO_LEVEL, // The structure is written to this block of memory. 
         (LPVOID) &szBuff, 
         &cbBuff)) != NO_ERROR) 
    //
    // If the call fails, print the error; otherwise, print the location of the share, 
    //  using the pointer to UNIVERSAL_NAME_INFO_LEVEL.
    //
    printf("Error: %ld\n\n", res); 
   
  else
    _tprintf(TEXT("Universal Name: \t%s\n\n"), puni->lpUniversalName); 
    
  //
  // Call WNetGetUniversalName with the REMOTE_NAME_INFO_LEVEL option
  //
  printf("Call WNetGetUniversalName using REMOTE_NAME_INFO_LEVEL.\n");
  if((res = WNetGetUniversalName((LPTSTR)argv[1], 
         REMOTE_NAME_INFO_LEVEL, 
         (LPVOID) &szBuff,    //Structure is written to this block of memory
         &cbBuff)) != NO_ERROR) 
    //
    // If the call fails, print the error; otherwise, print
    //  the location of the share, using 
    //  the pointer to REMOTE_NAME_INFO_LEVEL.
    //
    printf("Error: %ld\n", res); 
  else
    _tprintf(TEXT("Universal Name: \t%s\nConnection Name:\t%s\nRemaining Path: \t%s\n"),
          prni->lpUniversalName, 
          prni->lpConnectionName, 
          prni->lpRemainingPath);
  return;
}