UiPathTeam.Sharepoint.Activities CreateFolderの使い方

Sharepoint application scopeを使って、
Sharepoint上にフォルダ作成後、ファイルのアップロードを行うロボを作っています。

Excelで作っておいたマスタに、SharepointのURL情報をロボ実行前に記載しておき、
万が一フォルダがなければ、
フォルダを作成してからファイルアップロードという流れにしたいです。

Sharepointへのアップロード処理はうまくいったのですが、
CreateFolderのアクティビティに関して、設定値がよくわからずExceptionになってしまいます。
設定値について教えていただけますでしょうか?

以下、今の設定値です。

★Sharepoint application scope
(UiPathTeam.Sharepoint.Activities.SharepointApplicationScope)
・Sharepoint Instance Type … Online
・Password/UserName … 変数で指定済み
・URL … “https://〇〇〇.sharepoint.com/sites/◇◇◇” ※SharepointのURLを親フォルダまで指定

★UpLoad File
(UiPathTeam.Sharepoint.Activities.Libraries.UpLoadFile)
・AllowOverwrite … チェックあり
・LocalPath … Cドライブ内の特定ファイルを指定
・RelativeUrl … “/Shared Documents/” & "△△△/☆☆☆ ※親階層以下のフォルダを指定

★Create Folder
(UiPathTeam.Sharepoint.Activities.Libraries.CreateFolder)
UpLoad Fileで記載している、△△△や☆☆☆がなければ作成したいです
・LibraryName … こちらの設定値が知りたいです
→説明だと「The name of the library where the folder is created」となってます
・RelativeUrl … こちらの設定値が知りたいです
→説明だと「The complete url ( relative to the library) of the new folder」となってます

Create Folderの設定値についてアドバイスください。よろしくお願いいたします。

@shiga

こんにちわ!

ドキュメントでは、
LibraryName: the name of the Library in which the folder will be created
RelativeUrl: the url relative to the Library of the new folder. If one folder in the
specified URL doesn’t exist, the activity creates it.
となってます。

試す環境がないですが、例えば、△△△を作成する場合は
RelativeUrl:“Shared Documents”
LibraryName :“△△△”
かな?と思いますが、うまく行かない場合は、下記で作成者への
質問が確実かと思います。私も直接作成者に質問することがあります。

ちなみに、他の質問者からですが△△△がない状態で
RelativeUrlに"Shared Documents/△△△"、LibraryName :“☆☆☆”
を指定すると、例外がスローされるかも知れません。

https://connect.uipath.com/ja/marketplace/components/sharepoint-custom-activities-package/questions

@ftaro さん コメントありがとうございます!
アドバイスいただいた通りに試してみましたが、変わらずExceptionのままでした。
チームメンバーとも会話してみたところ、
フォルダ名が半角英数字じゃないとうまくいかないのでは・・・と新しいアドバイスをいただいたので、引き続き試してみます。
作成者への質問もあわせて検討します。

アドバイスいただきありがとうございました!