我需要在 powerapps 中应用过滤器以显示 json 文件(名称)作为在 Sharepoint 中文档库的其他列表中的查找

I need to apply a filter in powerapps to display json files (name) as lookup in other list from document library in Sharepoint

我在文档库中存储的文件很少。大多数文件将在文件夹下。

例如:Folder1>A1json
文件夹>F1Json
文件夹 2>A2Json
文件夹>F2Json
文件夹 3>A3Json
文件夹>F3Json

我只需要在 (A1Json/A2Json/A3Json) 等其他列表中显示 json 文件名作为查找。 不需要包含“Files Folder”下的文件。如果任何逻辑过滤器可以解决这个问题,请提供帮助。

尝试了这些方法但没有收到所需的结果 1.Filter(文档, 'Folder path'="共享文档/") Filter(Documents, 'Folder path' = "Shared Documents/" && IsFolder = false).Title.

Filter('Documents',(IsFolder= false && Not("Files/" in 'Full Path')),EndsWith('File name with extension',"json")) .姓名