Hi, I have an issue with getting Folder ID in Azure File Storage, for usage of function ListForlderV2 which requires ID of the folder.
Could you please advise how to get ID of the folder for
AzureFileStorage.ListFolderV2(<missing__folder_id>)
I know the path to the folder, but cannot get any metadata about the folder when trying following code snippets, only error messages
Set(folderID,AzureFileStorage.GetFileMetadataByPath("/files").Id);
Set(folderID,AzureFileStorage.GetFileMetadataByPath("/files"));
Set(folderID,AzureFileStorage.GetFileMetadataByPath("/files/"));
Also I've confirmed that folder really exists and is available via this path and also consulted this with documentation for this connector, only place where I could find anything about folder ID is REST API Documentation here: List Directories and Files (FileREST API) - Azure Files | Microsoft Docs in the response body is:
<Directory>
<FileId>file-id</FileId>
<Name>directory-name</Name>
<Properties>
<CreationTime>datetime</CreationTime>
<LastAccessTime>datetime</LastAccessTime>
<LastWriteTime>datetime</LastWriteTime>
<ChangeTime>datetime</ChangeTime>
<Last-Modified>datetime</Last-Modified>
<Etag>etag</Etag>
</Properties>
<Attributes>Archive|Hidden|Offline|ReadOnly</Attributes>
<PermissionKey>4066528134148476695*1</PermissionKey>
</Directory>
Thanks for help

Report
All responses (
Answers (