c#-Microsoft Graph API-フォルダーが存在するかどうかを確認する


10

私はMicrosoft Graph APIを使用しており、次のようなフォルダーを作成しています。

var driveItem = new DriveItem
{
    Name = Customer_Name.Text + Customer_LName.Text,
    Folder = new Folder
    {
    },
    AdditionalData = new Dictionary<string, object>()
    {
        {"@microsoft.graph.conflictBehavior","rename"}
    }
};

var newFolder = await App.GraphClient
  .Me
  .Drive
  .Items["id-of-folder-I-am-putting-this-into"]
  .Children
  .Request()
  .AddAsync(driveItem);

私の質問は、このフォルダーが存在するかどうか、およびフォルダーのIDを取得するかどうかを確認するにはどうすればよいですか?

回答:


4

グラフAPIは、アイテムが存在するかどうかを確認するために利用できる検索機能を提供します。最初に検索を実行してから、何も見つからなかった場合にアイテムを作成するか、@ Matt.Gが提案するようにしてnameAlreadyExists例外を回避するかを選択できます。

        var driveItem = new DriveItem
        {
            Name = Customer_Name.Text + Customer_LName.Text,
            Folder = new Folder
            {
            },
            AdditionalData = new Dictionary<string, object>()
            {
                {"@microsoft.graph.conflictBehavior","fail"}
            }
        };

        try
        {
            driveItem = await graphserviceClient
                .Me
                .Drive.Root.Children
                .Items["id-of-folder-I-am-putting-this-into"]
                .Children
                .Request()
                .AddAsync(driveItem);
        }
        catch (ServiceException exception)
        {
            if (exception.StatusCode == HttpStatusCode.Conflict && exception.Error.Code == "nameAlreadyExists")
            {
                var newFolder = await graphserviceClient
                    .Me
                    .Drive.Root.Children
                    .Items["id-of-folder-I-am-putting-this-into"]
                    .Search(driveItem.Name) // the API lets us run searches https://docs.microsoft.com/en-us/graph/api/driveitem-search?view=graph-rest-1.0&tabs=csharp
                    .Request()
                    .GetAsync();
                // since the search is likely to return more results we should filter it further
                driveItem = newFolder.FirstOrDefault(f => f.Folder != null && f.Name == driveItem.Name); // Just to ensure we're finding a folder, not a file with this name
                Console.WriteLine(driveItem?.Id); // your ID here
            }
            else
            {
                Console.WriteLine("Other ServiceException");
                throw;// handle this
            }
        }

アイテムの検索に使用されるクエリテキスト。値は、ファイル名、メタデータ、ファイルコンテンツなど、いくつかのフィールドで一致する場合があります。

あなたは検索クエリで遊んでfilename=<yourName>ファイルタイプのようなことをしたり、潜在的に調べることができます(私はあなたの特定のケースでは役に立たないと思いますが、完全を期すためにそれを言及します)


1

検索リクエストを発行するコンテナーを。

var existingItems = await graphServiceClient.Me.Drive
                          .Items["id-of-folder-I-am-putting-this-into"]
                          .Search("search")
                          .Request().GetAsync();

その後、反復する必要があります existingItemsコレクション(複数のページを含む可能性があります)を、アイテムが存在するかどうかを判別する必要があります。

アイテムが存在するかどうかを判断する基準を指定しません。名前を意味すると仮定すると、次のことができます。

var exists = existingItems.CurrentPage
               .Any(i => i.Name.Equals(Customer_Name.Text + Customer_LName.Text);

はい、しかしどのようにしてIDを取得するのですか?
user979331

Where()またはFirstOrDefault()または適切な式を使用します。
Paul Schaeflein

1

フォルダー名を持つフォルダーを取得するには:

呼び出しグラフAPI Reference1 Reference2/me/drive/items/{item-id}:/path/to/file

すなわち /drive/items/id-of-folder-I-am-putting-this-into:/{folderName}

  • フォルダが存在する場合は、idを持つdriveItem応答を返します

  • フォルダが存在しない場合は、404(NotFound)を返します

さて、フォルダが既に存在する場合は、フォルダを作成しながら、呼び出しに失敗するために、次のように追加のデータを設定してみてくださいリファレンス

    AdditionalData = new Dictionary<string, object>
    {
        { "@microsoft.graph.conflictBehavior", "fail" }
    }
  • フォルダーが存在する場合、これは409 Conflictを返します

しかし、既存のフォルダのIDをどのように取得しますか?
user979331

1

クエリベースのアプローチは、この点で考えることができます。設計上、DriveItem.nameプロパティはフォルダ内で一意であるため、次のクエリはdriveItem、ドライブアイテムが存在するかどうかを判断するために名前でフィルタリングする方法を示しています。

https://graph.microsoft.com/v1.0/me/drive/items/{parent-item-id}/children?$filter=name eq '{folder-name}'

これは次のようにC#で表すことができます。

var items = await graphClient
            .Me
            .Drive
            .Items[parentFolderId]
            .Children
            .Request()
            .Filter($"name eq '{folderName}'")
            .GetAsync();

提供されたエンドポイントが与えられた場合、フローは次のステップで構成されます。

  • 指定された名前のフォルダがすでに存在するかどうかを確認するリクエストを送信する
  • フォルダーが見つからなかった場合は2つ目を送信します(または既存のフォルダーを返します)

これが更新された例です

//1.ensure drive item already exists (filtering by name) 
var items = await graphClient
            .Me
            .Drive
            .Items[parentFolderId]
            .Children
            .Request()
            .Filter($"name eq '{folderName}'")
            .GetAsync();



if (items.Count > 0) //found existing item (folder facet)
{
     Console.WriteLine(items[0].Id);  //<- gives an existing DriveItem Id (folder facet)  
}
else
{
     //2. create a folder facet
     var driveItem = new DriveItem
     {
         Name = folderName,
         Folder = new Folder
         {
         },
         AdditionalData = new Dictionary<string, object>()
         {
                    {"@microsoft.graph.conflictBehavior","rename"}
         }
     };

     var newFolder = await graphClient
                .Me
                .Drive
                .Items[parentFolderId]
                .Children
                .Request()
                .AddAsync(driveItem);

  }

-1

これを呼び出すと、フォルダーのIDを取得できますhttps://graph.microsoft.com/v1.0/me/drive/root/children。ドライブ内のすべてのアイテムが表示されます。名前または別のプロパティを使用して結果をフィルタリングし、フォルダIDがない場合はそれを取得できます

public static bool isPropertyExist (dynamic d)
{
  try {
       string check = d.folder.childCount;
       return true;
  } catch {
       return false;
  }
}
var newFolder = await {https://graph.microsoft.com/v1.0/me/drive/items/{itemID}}


if (isPropertyExist(newFolder))
{
  //Your code goes here.
}

ドライブ内のアイテムのタイプがフォルダーの場合、folderプロパティを取得します。このプロパティが存在するかどうか、およびアイテムを追加するコードが実行されているかどうかを確認できます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.